coriolis/hurricane/src/isobar/ProxyProperty.cpp

241 lines
6.3 KiB
C++
Raw Normal View History

2008-03-06 10:46:43 -06:00
// -*- C++ -*-
//
// This file is part of the Coriolis Project.
// Copyright (C) Laboratoire LIP6 - Departement ASIM
// Universite Pierre et Marie Curie
//
// Main contributors :
// Christophe Alexandre <Christophe.Alexandre@lip6.fr>
// Sophie Belloeil <Sophie.Belloeil@lip6.fr>
// Hugo Cl<43>ment <Hugo.Clement@lip6.fr>
// Jean-Paul Chaput <Jean-Paul.Chaput@lip6.fr>
// Damien Dupuis <Damien.Dupuis@lip6.fr>
// Christian Masson <Christian.Masson@lip6.fr>
// Marek Sroka <Marek.Sroka@lip6.fr>
//
// The Coriolis Project is free software; you can redistribute it
// and/or modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// The Coriolis Project is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with the Coriolis Project; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA
//
// License-Tag
// Authors-Tag
// ===================================================================
//
// $Id: ProxyProperty.cpp,v 1.13 2007/07/30 16:02:51 jpc Exp $
//
// x-----------------------------------------------------------------x
// | |
// | C O R I O L I S |
// | I s o b a r - Hurricane / Python Interface |
// | |
// | Author : Jean-Paul CHAPUT |
// | E-mail : Jean-Paul.Chaput@asim.lip6.fr |
// | =============================================================== |
// | C++ Module : "./ProxyProperty.cpp" |
// | *************************************************************** |
// | U p d a t e s |
// | |
// x-----------------------------------------------------------------x
#include <iostream>
#include <sstream>
#include "hurricane/isobar/ProxyProperty.h"
2008-03-06 10:46:43 -06:00
#include "hurricane/Error.h"
#include "hurricane/Warning.h"
2008-03-06 10:46:43 -06:00
2008-03-28 04:48:47 -05:00
using namespace Hurricane;
2008-03-06 10:46:43 -06:00
2008-03-28 04:48:47 -05:00
namespace Isobar {
2008-03-06 10:46:43 -06:00
namespace {
using namespace std;
// ---------------------------------------------------------------
// Miscellaneous.
// ---------------------------------------------------------------
// Local Variables.
const char* twiceSetOffset =
"FragmentProperty::SetOffest () :\n\n"
" Attempt to sets the _shadow member offset twice.\n";
}
// x-----------------------------------------------------------------x
// | "::ProxyProperty" Global Variables |
// x-----------------------------------------------------------------x
Name ProxyProperty::_name = "::ProxyProperty";
int ProxyProperty::_offset = -1;
// x-----------------------------------------------------------------x
// | "::ProxyProperty" Class Definitions |
// x-----------------------------------------------------------------x
// -------------------------------------------------------------------
// Constructor : "ProxyProperty::ProxyProperty ()".
ProxyProperty::ProxyProperty ( void* shadow )
: Property()
, _owner(NULL)
, _shadow(shadow)
{ }
// -------------------------------------------------------------------
2008-03-18 04:42:44 -05:00
// Constructor : "ProxyProperty::create ()".
2008-03-06 10:46:43 -06:00
2008-03-17 08:54:33 -05:00
ProxyProperty* ProxyProperty::create ( void* shadow )
2008-03-06 10:46:43 -06:00
{
ProxyProperty* property = new ProxyProperty ( shadow );
if ( property == NULL )
2008-03-18 04:42:44 -05:00
throw Error ( "ProxyProperty::create()" );
2008-03-06 10:46:43 -06:00
return ( property );
}
// -------------------------------------------------------------------
2008-03-17 08:54:33 -05:00
// Destructor : "ProxyProperty::_preDestroy ()".
2008-03-06 10:46:43 -06:00
2008-03-17 08:54:33 -05:00
void ProxyProperty::_preDestroy () {
2008-03-18 04:42:44 -05:00
if ( _owner ) _owner->_onDestroyed ( this );
2008-03-06 10:46:43 -06:00
trace << "ProxyProperty::_owner := " << hex << (void*)_owner << endl;
if ( _offset > 0 ) {
void** shadowMember = ( (void**)( (unsigned long)_shadow + _offset ) );
trace << "ProxyProperty::_shadowMember := " << hex << *shadowMember << endl;
*shadowMember = NULL;
}
}
// -------------------------------------------------------------------
2008-03-17 08:54:33 -05:00
// Method : "ProxyProperty::onCapturedBy ()".
2008-03-06 10:46:43 -06:00
2008-03-17 08:54:33 -05:00
void ProxyProperty::onCapturedBy ( DBo* owner ) {
2008-03-06 10:46:43 -06:00
if ( ( _owner != NULL ) && ( _owner != owner ) )
2008-03-17 08:54:33 -05:00
throw Error ( getString(this).c_str() );
2008-03-06 10:46:43 -06:00
_owner = owner;
}
// -------------------------------------------------------------------
2008-03-17 08:54:33 -05:00
// Method : "ProxyProperty::onReleasedBy ()".
2008-03-06 10:46:43 -06:00
2008-03-17 08:54:33 -05:00
void ProxyProperty::onReleasedBy ( DBo* owner ) {
if ( _owner == owner ) onNotOwned ();
2008-03-06 10:46:43 -06:00
}
// -------------------------------------------------------------------
2008-03-17 08:54:33 -05:00
// Method : "ProxyProperty::onNotOwned ()".
2008-03-06 10:46:43 -06:00
2008-03-17 08:54:33 -05:00
void ProxyProperty::onNotOwned () {
destroy ();
2008-03-06 10:46:43 -06:00
}
// -------------------------------------------------------------------
// Method : "ProxyProperty::SetOffset ()".
2008-03-17 08:54:33 -05:00
void ProxyProperty::SetOffset ( int offset ) {
2008-03-06 10:46:43 -06:00
if ( _offset >= 0 ) throw Error ( twiceSetOffset );
_offset = offset;
}
// -------------------------------------------------------------------
2008-03-17 08:54:33 -05:00
// Method : "ProxyProperty::_getString()".
2008-03-06 10:46:43 -06:00
2008-03-17 08:54:33 -05:00
string ProxyProperty::_getString () const {
2008-03-06 10:46:43 -06:00
ostringstream os;
2008-03-17 08:54:33 -05:00
os << "<" << _getTypeName() << " ";
2008-03-06 10:46:43 -06:00
if ( _owner ) os << hex << (void*)_owner << " ";
else os << "[not owned] ";
os << _shadow << ">";
return ( os.str() );
}
// -------------------------------------------------------------------
2008-03-17 08:54:33 -05:00
// Method : "ProxyProperty::_getRecord()".
2008-03-06 10:46:43 -06:00
2008-03-17 08:54:33 -05:00
Record* ProxyProperty::_getRecord () const
2008-03-06 10:46:43 -06:00
{
2008-03-17 08:54:33 -05:00
Record* record = Property::_getRecord ();
2008-03-06 10:46:43 -06:00
if ( record != NULL ) {
2008-04-13 05:12:19 -05:00
record->add ( getSlot ( "_owner" , _owner ) );
record->add ( getSlot ( "_shadow", _shadow ) );
2008-03-06 10:46:43 -06:00
}
return ( record );
}
} // End of Isobar namespace.