123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292 |
- <?php
- // Copyright (C) 2010-2012 Combodo SARL
- //
- // This file is part of iTop.
- //
- // iTop is free software; you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // iTop 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 Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with iTop. If not, see <http://www.gnu.org/licenses/>
- /**
- * Class dbObject: the root of persistent classes
- *
- * @copyright Copyright (C) 2010-2012 Combodo SARL
- * @license http://opensource.org/licenses/AGPL-3.0
- */
- require_once('metamodel.class.php');
- require_once('deletionplan.class.inc.php');
- /**
- * A persistent object, as defined by the metamodel
- *
- * @package iTopORM
- */
- abstract class DBObject
- {
- private static $m_aMemoryObjectsByClass = array();
- private static $m_aBulkInsertItems = array(); // class => array of ('table' => array of (array of <sql_value>))
- private static $m_aBulkInsertCols = array(); // class => array of ('table' => array of <sql_column>)
- private static $m_bBulkInsert = false;
- private $m_bIsInDB = false; // true IIF the object is mapped to a DB record
- private $m_iKey = null;
- private $m_aCurrValues = array();
- protected $m_aOrigValues = array();
- protected $m_aExtendedData = null;
- private $m_bDirty = false; // Means: "a modification is ongoing"
- // The object may have incorrect external keys, then any attempt of reload must be avoided
- private $m_bCheckStatus = null; // Means: the object has been verified and is consistent with integrity rules
- // if null, then the check has to be performed again to know the status
- protected $m_bSecurityIssue = null;
- protected $m_aCheckIssues = null;
- protected $m_aDeleteIssues = null;
- protected $m_aAsArgs = null; // The current object as a standard argument (cache)
- private $m_bFullyLoaded = false; // Compound objects can be partially loaded
- private $m_aLoadedAtt = array(); // Compound objects can be partially loaded, array of sAttCode
- protected $m_oMasterReplicaSet = null; // Set of SynchroReplica related to this object
- // Use the MetaModel::NewObject to build an object (do we have to force it?)
- public function __construct($aRow = null, $sClassAlias = '', $aAttToLoad = null, $aExtendedDataSpec = null)
- {
- if (!empty($aRow))
- {
- $this->FromRow($aRow, $sClassAlias, $aAttToLoad, $aExtendedDataSpec);
- $this->m_bFullyLoaded = $this->IsFullyLoaded();
- return;
- }
- // Creation of a brand new object
- //
- $this->m_iKey = self::GetNextTempId(get_class($this));
- // set default values
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode=>$oAttDef)
- {
- $this->m_aCurrValues[$sAttCode] = $oAttDef->GetDefaultValue();
- $this->m_aOrigValues[$sAttCode] = null;
- if ($oAttDef->IsExternalField() || ($oAttDef instanceof AttributeFriendlyName))
- {
- // This field has to be read from the DB
- // Leave the flag unset (optimization)
- }
- else
- {
- // No need to trigger a reload for that attribute
- // Let's consider it as being already fully loaded
- $this->m_aLoadedAtt[$sAttCode] = true;
- }
- }
- }
- // Read-only <=> Written once (archive)
- public function RegisterAsDirty()
- {
- // While the object may be written to the DB, it is NOT possible to reload it
- // or at least not possible to reload it the same way
- $this->m_bDirty = true;
- }
- public function IsNew()
- {
- return (!$this->m_bIsInDB);
- }
- // Returns an Id for memory objects
- static protected function GetNextTempId($sClass)
- {
- $sRootClass = MetaModel::GetRootClass($sClass);
- if (!array_key_exists($sRootClass, self::$m_aMemoryObjectsByClass))
- {
- self::$m_aMemoryObjectsByClass[$sRootClass] = 0;
- }
- self::$m_aMemoryObjectsByClass[$sRootClass]++;
- return (- self::$m_aMemoryObjectsByClass[$sRootClass]);
- }
- public function __toString()
- {
- $sRet = '';
- $sClass = get_class($this);
- $sRootClass = MetaModel::GetRootClass($sClass);
- $iPKey = $this->GetKey();
- $sRet .= "<b title=\"$sRootClass\">$sClass</b>::$iPKey<br/>\n";
- $sRet .= "<ul class=\"treeview\">\n";
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode=>$oAttDef)
- {
- $sRet .= "<li>".$oAttDef->GetLabel()." = ".$this->GetAsHtml($sAttCode)."</li>\n";
- }
- $sRet .= "</ul>";
- return $sRet;
- }
-
- // Restore initial values... mmmm, to be discussed
- public function DBRevert()
- {
- $this->Reload();
- }
- protected function IsFullyLoaded()
- {
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode=>$oAttDef)
- {
- if (!$oAttDef->LoadInObject()) continue;
- if (!isset($this->m_aLoadedAtt[$sAttCode]) || !$this->m_aLoadedAtt[$sAttCode])
- {
- return false;
- }
- }
- return true;
- }
- public function Reload()
- {
- assert($this->m_bIsInDB);
- $aRow = MetaModel::MakeSingleRow(get_class($this), $this->m_iKey, false/*, $this->m_bAllowAllData*/);
- if (empty($aRow))
- {
- throw new CoreException("Failed to reload object of class '".get_class($this)."', id = ".$this->m_iKey);
- }
- $this->FromRow($aRow);
- // Process linked set attributes
- //
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode=>$oAttDef)
- {
- if (!$oAttDef->IsLinkSet()) continue;
- // Load the link information
- $sLinkClass = $oAttDef->GetLinkedClass();
- $sExtKeyToMe = $oAttDef->GetExtKeyToMe();
- // The class to target is not the current class, because if this is a derived class,
- // it may differ from the target class, then things start to become confusing
- $oRemoteExtKeyAtt = MetaModel::GetAttributeDef($sLinkClass, $sExtKeyToMe);
- $sMyClass = $oRemoteExtKeyAtt->GetTargetClass();
- $oMyselfSearch = new DBObjectSearch($sMyClass);
- $oMyselfSearch->AddCondition('id', $this->m_iKey, '=');
- $oLinkSearch = new DBObjectSearch($sLinkClass);
- $oLinkSearch->AddCondition_PointingTo($oMyselfSearch, $sExtKeyToMe);
- $oLinks = new DBObjectSet($oLinkSearch);
- $this->m_aCurrValues[$sAttCode] = $oLinks;
- $this->m_aOrigValues[$sAttCode] = clone $this->m_aCurrValues[$sAttCode];
- $this->m_aLoadedAtt[$sAttCode] = true;
- }
- $this->m_bFullyLoaded = true;
- }
- protected function FromRow($aRow, $sClassAlias = '', $aAttToLoad = null, $aExtendedDataSpec = null)
- {
- if (strlen($sClassAlias) == 0)
- {
- // Default to the current class
- $sClassAlias = get_class($this);
- }
- $this->m_iKey = null;
- $this->m_bIsInDB = true;
- $this->m_aCurrValues = array();
- $this->m_aOrigValues = array();
- $this->m_aLoadedAtt = array();
- $this->m_bCheckStatus = true;
- // Get the key
- //
- $sKeyField = $sClassAlias."id";
- if (!array_key_exists($sKeyField, $aRow))
- {
- // #@# Bug ?
- throw new CoreException("Missing key for class '".get_class($this)."'");
- }
- $iPKey = $aRow[$sKeyField];
- if (!self::IsValidPKey($iPKey))
- {
- if (is_null($iPKey))
- {
- throw new CoreException("Missing object id in query result (found null)");
- }
- else
- {
- throw new CoreException("An object id must be an integer value ($iPKey)");
- }
- }
- $this->m_iKey = $iPKey;
- // Build the object from an array of "attCode"=>"value")
- //
- $bFullyLoaded = true; // ... set to false if any attribute is not found
- if (is_null($aAttToLoad) || !array_key_exists($sClassAlias, $aAttToLoad))
- {
- $aAttList = MetaModel::ListAttributeDefs(get_class($this));
- }
- else
- {
- $aAttList = $aAttToLoad[$sClassAlias];
- }
-
- foreach($aAttList as $sAttCode=>$oAttDef)
- {
- // Skip links (could not be loaded by the mean of this query)
- if ($oAttDef->IsLinkSet()) continue;
- if (!$oAttDef->LoadInObject()) continue;
- // Note: we assume that, for a given attribute, if it can be loaded,
- // then one column will be found with an empty suffix, the others have a suffix
- // Take care: the function isset will return false in case the value is null,
- // which is something that could happen on open joins
- $sAttRef = $sClassAlias.$sAttCode;
- if (array_key_exists($sAttRef, $aRow))
- {
- $value = $oAttDef->FromSQLToValue($aRow, $sAttRef);
- $this->m_aCurrValues[$sAttCode] = $value;
- if (is_object($value))
- {
- $this->m_aOrigValues[$sAttCode] = clone $value;
- }
- else
- {
- $this->m_aOrigValues[$sAttCode] = $value;
- }
- $this->m_aLoadedAtt[$sAttCode] = true;
- }
- else
- {
- // This attribute was expected and not found in the query columns
- $bFullyLoaded = false;
- }
- }
-
- // Load extended data
- if ($aExtendedDataSpec != null)
- {
- $aExtendedDataSpec['table'];
- foreach($aExtendedDataSpec['fields'] as $sColumn)
- {
- $sColRef = $sClassAlias.'_extdata_'.$sColumn;
- if (array_key_exists($sColRef, $aRow))
- {
- $this->m_aExtendedData[$sColumn] = $aRow[$sColRef];
- }
- }
- }
- return $bFullyLoaded;
- }
-
- public function Set($sAttCode, $value)
- {
- if ($sAttCode == 'finalclass')
- {
- // Ignore it - this attribute is set upon object creation and that's it
- return;
- }
- $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- if ($this->m_bIsInDB && !$this->m_bFullyLoaded && !$this->m_bDirty)
- {
- // First time Set is called... ensure that the object gets fully loaded
- // Otherwise we would lose the values on a further Reload
- // + consistency does not make sense !
- $this->Reload();
- }
- if ($oAttDef->IsExternalKey())
- {
- if (is_object($value))
- {
- // Setting an external key with a whole object (instead of just an ID)
- // let's initialize also the external fields that depend on it
- // (useful when building objects in memory and not from a query)
- if ( (get_class($value) != $oAttDef->GetTargetClass()) && (!is_subclass_of($value, $oAttDef->GetTargetClass())))
- {
- throw new CoreUnexpectedValue("Trying to set the value of '$sAttCode', to an object of class '".get_class($value)."', whereas it's an ExtKey to '".$oAttDef->GetTargetClass()."'. Ignored");
- }
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sCode => $oDef)
- {
- if (($oDef->IsExternalField() || ($oDef instanceof AttributeFriendlyName)) && ($oDef->GetKeyAttCode() == $sAttCode))
- {
- $this->m_aCurrValues[$sCode] = $value->Get($oDef->GetExtAttCode());
- }
- }
- }
- else if ($this->m_aCurrValues[$sAttCode] != $value)
- {
- // Setting an external key, but no any other information is available...
- // Invalidate the corresponding fields so that they get reloaded in case they are needed (See Get())
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sCode => $oDef)
- {
- if (($oDef->IsExternalField() || ($oDef instanceof AttributeFriendlyName)) && ($oDef->GetKeyAttCode() == $sAttCode))
- {
- $this->m_aCurrValues[$sCode] = $oDef->GetDefaultValue();
- unset($this->m_aLoadedAtt[$sCode]);
- }
- }
- }
- }
- if(!$oAttDef->IsScalar() && !is_object($value))
- {
- throw new CoreUnexpectedValue("scalar not allowed for attribute '$sAttCode', setting default value (empty list)");
- }
- if($oAttDef->IsLinkSet())
- {
- if((get_class($value) != 'DBObjectSet') && !is_subclass_of($value, 'DBObjectSet'))
- {
- throw new CoreUnexpectedValue("expecting a set of persistent objects (found a '".get_class($value)."'), setting default value (empty list)");
- }
- $oObjectSet = $value;
- $sSetClass = $oObjectSet->GetClass();
- $sLinkClass = $oAttDef->GetLinkedClass();
- // not working fine :-( if (!is_subclass_of($sSetClass, $sLinkClass))
- if ($sSetClass != $sLinkClass)
- {
- throw new CoreUnexpectedValue("expecting a set of '$sLinkClass' objects (found a set of '$sSetClass'), setting default value (empty list)");
- }
- }
- $realvalue = $oAttDef->MakeRealValue($value, $this);
- $this->m_aCurrValues[$sAttCode] = $realvalue;
- // The object has changed, reset caches
- $this->m_bCheckStatus = null;
- $this->m_aAsArgs = null;
- // Make sure we do not reload it anymore... before saving it
- $this->RegisterAsDirty();
- }
- public function GetLabel($sAttCode)
- {
- $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- return $oAttDef->GetLabel();
- }
- public function Get($sAttCode)
- {
- if (($iPos = strpos($sAttCode, '->')) === false)
- {
- return $this->GetStrict($sAttCode);
- }
- else
- {
- $sExtKeyAttCode = substr($sAttCode, 0, $iPos);
- $sRemoteAttCode = substr($sAttCode, $iPos + 2);
- if (!MetaModel::IsValidAttCode(get_class($this), $sExtKeyAttCode))
- {
- throw new CoreException("Unknown external key '$sExtKeyAttCode' for the class ".get_class($this));
- }
- $oKeyAttDef = MetaModel::GetAttributeDef(get_class($this), $sExtKeyAttCode);
- $sRemoteClass = $oKeyAttDef->GetTargetClass();
- $oRemoteObj = MetaModel::GetObject($sRemoteClass, $this->GetStrict($sExtKeyAttCode), false);
- if (is_null($oRemoteObj))
- {
- return '';
- }
- else
- {
- return $oRemoteObj->Get($sRemoteAttCode);
- }
- }
- }
- public function GetStrict($sAttCode)
- {
- $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- if (!$oAttDef->LoadInObject())
- {
- $sParentAttCode = $oAttDef->GetParentAttCode();
- $parentValue = $this->GetStrict($sParentAttCode);
- $value = $oAttDef->GetValue($parentValue, $this);
- }
- else
- {
- if (isset($this->m_aLoadedAtt[$sAttCode]))
- {
- // Standard case... we have the information directly
- }
- elseif ($this->m_bIsInDB && !$this->m_bDirty)
- {
- // Lazy load (polymorphism): complete by reloading the entire object
- // #@# non-scalar attributes.... handle that differently?
- $this->Reload();
- }
- elseif ($sAttCode == 'friendlyname')
- {
- // The friendly name is not computed and the object is dirty
- // Todo: implement the computation of the friendly name based on sprintf()
- //
- $this->m_aCurrValues[$sAttCode] = '';
- }
- else
- {
- // Not loaded... is it related to an external key?
- if ($oAttDef->IsExternalField() || ($oAttDef instanceof AttributeFriendlyName))
- {
- // Let's get the object and compute all of the corresponding attributes
- // (i.e not only the requested attribute)
- //
- $sExtKeyAttCode = $oAttDef->GetKeyAttCode();
-
- if (($iRemote = $this->Get($sExtKeyAttCode)) && ($iRemote > 0)) // Objects in memory have negative IDs
- {
- $oExtKeyAttDef = MetaModel::GetAttributeDef(get_class($this), $sExtKeyAttCode);
- $oRemote = MetaModel::GetObject($oExtKeyAttDef->GetTargetClass(), $iRemote);
- }
- else
- {
- $oRemote = null;
- }
-
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sCode => $oDef)
- {
- if (($oDef->IsExternalField() || ($oDef instanceof AttributeFriendlyName)) && ($oDef->GetKeyAttCode() == $sExtKeyAttCode))
- {
- if ($oRemote)
- {
- $this->m_aCurrValues[$sCode] = $oRemote->Get($oDef->GetExtAttCode());
- }
- else
- {
- $this->m_aCurrValues[$sCode] = $oDef->GetDefaultValue();
- }
- $this->m_aLoadedAtt[$sCode] = true;
- }
- }
- }
- }
- $value = $this->m_aCurrValues[$sAttCode];
- }
- if ($value instanceof DBObjectSet)
- {
- $value->Rewind();
- }
- return $value;
- }
- public function GetOriginal($sAttCode)
- {
- if (!array_key_exists($sAttCode, MetaModel::ListAttributeDefs(get_class($this))))
- {
- throw new CoreException("Unknown attribute code '$sAttCode' for the class ".get_class($this));
- }
- return $this->m_aOrigValues[$sAttCode];
- }
- /**
- * Returns data loaded by the mean of a dynamic and explicit JOIN
- */
- public function GetExtendedData()
- {
- return $this->m_aExtendedData;
- }
- /**
- * Updates the value of an external field by (re)loading the object
- * corresponding to the external key and getting the value from it
- * @param string $sAttCode Attribute code of the external field to update
- * @return void
- */
- protected function UpdateExternalField($sAttCode)
- {
- $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- if ($oAttDef->IsExternalField())
- {
- $sTargetClass = $oAttDef->GetTargetClass();
- $objkey = $this->Get($oAttDef->GetKeyAttCode());
- $oObj = MetaModel::GetObject($sTargetClass, $objkey);
- if (is_object($oObj))
- {
- $value = $oObj->Get($oAttDef->GetExtAttCode());
- $this->Set($sAttCode, $value);
- }
- }
- }
-
- public function ComputeValues()
- {
- }
- // Compute scalar attributes that depend on any other type of attribute
- final public function DoComputeValues()
- {
- // TODO - use a flag rather than checking the call stack -> this will certainly accelerate things
- // First check that we are not currently computing the fields
- // (yes, we need to do some things like Set/Get to compute the fields which will in turn trigger the update...)
- foreach (debug_backtrace() as $aCallInfo)
- {
- if (!array_key_exists("class", $aCallInfo)) continue;
- if ($aCallInfo["class"] != get_class($this)) continue;
- if ($aCallInfo["function"] != "ComputeValues") continue;
- return; //skip!
- }
- $this->ComputeValues();
- }
- public function GetAsHTML($sAttCode, $bLocalize = true)
- {
- $sClass = get_class($this);
- $oAtt = MetaModel::GetAttributeDef($sClass, $sAttCode);
- if ($oAtt->IsExternalKey(EXTKEY_ABSOLUTE))
- {
- //return $this->Get($sAttCode.'_friendlyname');
- $sTargetClass = $oAtt->GetTargetClass(EXTKEY_ABSOLUTE);
- $iTargetKey = $this->Get($sAttCode);
- if ($iTargetKey < 0)
- {
- // the key points to an object that exists only in memory... no hyperlink points to it yet
- return '';
- }
- else
- {
- $sLabel = $this->Get($sAttCode.'_friendlyname');
- return $this->MakeHyperLink($sTargetClass, $iTargetKey, $sLabel);
- }
- }
- // That's a standard attribute (might be an ext field or a direct field, etc.)
- return $oAtt->GetAsHTML($this->Get($sAttCode), $this, $bLocalize);
- }
- public function GetEditValue($sAttCode)
- {
- $sClass = get_class($this);
- $oAtt = MetaModel::GetAttributeDef($sClass, $sAttCode);
- if ($oAtt->IsExternalKey())
- {
- $sTargetClass = $oAtt->GetTargetClass();
- if ($this->IsNew())
- {
- // The current object exists only in memory, don't try to query it in the DB !
- // instead let's query for the object pointed by the external key, and get its name
- $targetObjId = $this->Get($sAttCode);
- $oTargetObj = MetaModel::GetObject($sTargetClass, $targetObjId, false); // false => not sure it exists
- if (is_object($oTargetObj))
- {
- $sEditValue = $oTargetObj->GetName();
- }
- else
- {
- $sEditValue = 0;
- }
- }
- else
- {
- $sEditValue = $this->Get($sAttCode.'_friendlyname');
- }
- }
- else
- {
- $sEditValue = $oAtt->GetEditValue($this->Get($sAttCode), $this);
- }
- return $sEditValue;
- }
- public function GetAsXML($sAttCode, $bLocalize = true)
- {
- $oAtt = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- return $oAtt->GetAsXML($this->Get($sAttCode), $this, $bLocalize);
- }
- public function GetAsCSV($sAttCode, $sSeparator = ',', $sTextQualifier = '"', $bLocalize = true)
- {
- $oAtt = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- return $oAtt->GetAsCSV($this->Get($sAttCode), $sSeparator, $sTextQualifier, $this, $bLocalize);
- }
- public function GetOriginalAsHTML($sAttCode, $bLocalize = true)
- {
- $oAtt = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- return $oAtt->GetAsHTML($this->GetOriginal($sAttCode), $this, $bLocalize);
- }
- public function GetOriginalAsXML($sAttCode, $bLocalize = true)
- {
- $oAtt = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- return $oAtt->GetAsXML($this->GetOriginal($sAttCode), $this, $bLocalize);
- }
- public function GetOriginalAsCSV($sAttCode, $sSeparator = ',', $sTextQualifier = '"', $bLocalize = true)
- {
- $oAtt = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- return $oAtt->GetAsCSV($this->GetOriginal($sAttCode), $sSeparator, $sTextQualifier, $this, $bLocalize);
- }
- public static function MakeHyperLink($sObjClass, $sObjKey, $sLabel = '', $sUrlMakerClass = null, $bWithNavigationContext = true)
- {
- if ($sObjKey <= 0) return '<em>'.Dict::S('UI:UndefinedObject').'</em>'; // Objects built in memory have negative IDs
- // Safety net
- //
- if (empty($sLabel))
- {
- // If the object if not issued from a query but constructed programmatically
- // the label may be empty. In this case run a query to get the object's friendly name
- $oTmpObj = MetaModel::GetObject($sObjClass, $sObjKey, false);
- if (is_object($oTmpObj))
- {
- $sLabel = $oTmpObj->GetName();
- }
- else
- {
- // May happen in case the target object is not in the list of allowed values for this attribute
- $sLabel = "<em>$sObjClass::$sObjKey</em>";
- }
- //$sLabel = MetaModel::GetName($sObjClass)." #$sObjKey";
- }
- $sHint = MetaModel::GetName($sObjClass)."::$sObjKey";
- $sUrl = ApplicationContext::MakeObjectUrl($sObjClass, $sObjKey, $sUrlMakerClass, $bWithNavigationContext);
- if (strlen($sUrl) > 0)
- {
- return "<a href=\"$sUrl\" title=\"$sHint\">$sLabel</a>";
- }
- else
- {
- return $sLabel;
- }
- }
- public function GetHyperlink($sUrlMakerClass = null, $bWithNavigationContext = true)
- {
- return self::MakeHyperLink(get_class($this), $this->GetKey(), $this->GetName(), $sUrlMakerClass, $bWithNavigationContext);
- }
-
- public static function ComputeStandardUIPage($sClass)
- {
- static $aUIPagesCache = array(); // Cache to store the php page used to display each class of object
- if (!isset($aUIPagesCache[$sClass]))
- {
- $UIPage = false;
- if (is_callable("$sClass::GetUIPage"))
- {
- $UIPage = eval("return $sClass::GetUIPage();"); // May return false in case of error
- }
- $aUIPagesCache[$sClass] = $UIPage === false ? './UI.php' : $UIPage;
- }
- $sPage = $aUIPagesCache[$sClass];
- return $sPage;
- }
- public static function GetUIPage()
- {
- return 'UI.php';
- }
- // could be in the metamodel ?
- public static function IsValidPKey($value)
- {
- return ((string)$value === (string)(int)$value);
- }
- public function GetKey()
- {
- return $this->m_iKey;
- }
- public function SetKey($iNewKey)
- {
- if (!self::IsValidPKey($iNewKey))
- {
- throw new CoreException("An object id must be an integer value ($iNewKey)");
- }
-
- if ($this->m_bIsInDB && !empty($this->m_iKey) && ($this->m_iKey != $iNewKey))
- {
- throw new CoreException("Changing the key ({$this->m_iKey} to $iNewKey) on an object (class {".get_class($this).") wich already exists in the Database");
- }
- $this->m_iKey = $iNewKey;
- }
- /**
- * Get the icon representing this object
- * @param boolean $bImgTag If true the result is a full IMG tag (or an emtpy string if no icon is defined)
- * @return string Either the full IMG tag ($bImgTag == true) or just the path to the icon file
- */
- public function GetIcon($bImgTag = true)
- {
- return MetaModel::GetClassIcon(get_class($this), $bImgTag);
- }
- /**
- * Gets the name of an object in a safe manner for displaying inside a web page
- * @return string
- */
- public function GetName()
- {
- return htmlentities($this->GetRawName(), ENT_QUOTES, 'UTF-8');
- }
- /**
- * Gets the raw name of an object, this is not safe for displaying inside a web page
- * since the " < > characters are not escaped and the name may contain some XSS script
- * instructions.
- * Use this function only for internal computations or for an output to a non-HTML destination
- * @return string
- */
- public function GetRawName()
- {
- return $this->Get('friendlyname');
- }
- public function GetState()
- {
- $sStateAttCode = MetaModel::GetStateAttributeCode(get_class($this));
- if (empty($sStateAttCode))
- {
- return '';
- }
- else
- {
- return $this->Get($sStateAttCode);
- }
- }
- public function GetStateLabel()
- {
- $sStateAttCode = MetaModel::GetStateAttributeCode(get_class($this));
- if (empty($sStateAttCode))
- {
- return '';
- }
- else
- {
- $sStateValue = $this->Get($sStateAttCode);
- return MetaModel::GetStateLabel(get_class($this), $sStateValue);
- }
- }
- public function GetStateDescription()
- {
- $sStateAttCode = MetaModel::GetStateAttributeCode(get_class($this));
- if (empty($sStateAttCode))
- {
- return '';
- }
- else
- {
- $sStateValue = $this->Get($sStateAttCode);
- return MetaModel::GetStateDescription(get_class($this), $sStateValue);
- }
- }
- /**
- * Overridable - Define attributes read-only from the end-user perspective
- *
- * @return array List of attcodes
- */
- public static function GetReadOnlyAttributes()
- {
- return null;
- }
- /**
- * Overridable - Get predefined objects (could be hardcoded)
- * The predefined objects will be synchronized with the DB at each install/upgrade
- * As soon as a class has predefined objects, then nobody can create nor delete objects
- * @return array An array of id => array of attcode => php value(so-called "real value": integer, string, ormDocument, DBObjectSet, etc.)
- */
- public static function GetPredefinedObjects()
- {
- return null;
- }
- /**
- * Returns the set of flags (OPT_ATT_HIDDEN, OPT_ATT_READONLY, OPT_ATT_MANDATORY...)
- * for the given attribute in the current state of the object
- * @param $sAttCode string $sAttCode The code of the attribute
- * @param $aReasons array To store the reasons why the attribute is read-only (info about the synchro replicas)
- * @param $sTargetState string The target state in which to evalutate the flags, if empty the current state will be used
- * @return integer Flags: the binary combination of the flags applicable to this attribute
- */
- public function GetAttributeFlags($sAttCode, &$aReasons = array(), $sTargetState = '')
- {
- $iFlags = 0; // By default (if no life cycle) no flag at all
- $aReadOnlyAtts = $this->GetReadOnlyAttributes();
- if ($aReadOnlyAtts != null)
- {
- if (in_array($sAttCode, $aReadOnlyAtts))
- {
- return OPT_ATT_READONLY;
- }
- }
- $sStateAttCode = MetaModel::GetStateAttributeCode(get_class($this));
- if (!empty($sStateAttCode))
- {
- if ($sTargetState != '')
- {
- $iFlags = MetaModel::GetAttributeFlags(get_class($this), $sTargetState, $sAttCode);
- }
- else
- {
- $iFlags = MetaModel::GetAttributeFlags(get_class($this), $this->Get($sStateAttCode), $sAttCode);
- }
- }
- $aReasons = array();
- $iSynchroFlags = $this->GetSynchroReplicaFlags($sAttCode, $aReasons);
- return $iFlags | $iSynchroFlags; // Combine both sets of flags
- }
- /**
- * Returns the set of flags (OPT_ATT_HIDDEN, OPT_ATT_READONLY, OPT_ATT_MANDATORY...)
- * for the given attribute for the current state of the object considered as an INITIAL state
- * @param string $sAttCode The code of the attribute
- * @return integer Flags: the binary combination of the flags applicable to this attribute
- */
- public function GetInitialStateAttributeFlags($sAttCode, &$aReasons = array())
- {
- $iFlags = 0;
- $sStateAttCode = MetaModel::GetStateAttributeCode(get_class($this));
- if (!empty($sStateAttCode))
- {
- $iFlags = MetaModel::GetInitialStateAttributeFlags(get_class($this), $this->Get($sStateAttCode), $sAttCode);
- }
- return $iFlags; // No need to care about the synchro flags since we'll be creating a new object anyway
- }
- // check if the given (or current) value is suitable for the attribute
- // return true if successfull
- // return the error desciption otherwise
- public function CheckValue($sAttCode, $value = null)
- {
- if (!is_null($value))
- {
- $toCheck = $value;
- }
- else
- {
- $toCheck = $this->Get($sAttCode);
- }
- $oAtt = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- if (!$oAtt->IsWritable())
- {
- return true;
- }
- elseif ($oAtt->IsNull($toCheck))
- {
- if ($oAtt->IsNullAllowed())
- {
- return true;
- }
- else
- {
- return "Null not allowed";
- }
- }
- elseif ($oAtt->IsExternalKey())
- {
- if (!MetaModel::SkipCheckExtKeys())
- {
- $sTargetClass = $oAtt->GetTargetClass();
- $oTargetObj = MetaModel::GetObject($sTargetClass, $toCheck, false /*must be found*/, true /*allow all data*/);
- if (is_null($oTargetObj))
- {
- return "Target object not found ($sTargetClass::$toCheck)";
- }
- }
- if ($oAtt->IsHierarchicalKey())
- {
- // This check cannot be deactivated since otherwise the user may break things by a CSV import of a bulk modify
- if ($toCheck == $this->GetKey())
- {
- return "An object can not be its own parent in a hierarchy (".$oAtt->Getlabel()." = $toCheck)";
- }
- }
- }
- elseif ($oAtt->IsScalar())
- {
- $aValues = $oAtt->GetAllowedValues($this->ToArgs());
- if (count($aValues) > 0)
- {
- if (!array_key_exists($toCheck, $aValues))
- {
- return "Value not allowed [$toCheck]";
- }
- }
- if (!is_null($iMaxSize = $oAtt->GetMaxSize()))
- {
- $iLen = strlen($toCheck);
- if ($iLen > $iMaxSize)
- {
- return "String too long (found $iLen, limited to $iMaxSize)";
- }
- }
- if (!$oAtt->CheckFormat($toCheck))
- {
- return "Wrong format [$toCheck]";
- }
- }
- return true;
- }
-
- // check attributes together
- public function CheckConsistency()
- {
- return true;
- }
-
- // check integrity rules (before inserting or updating the object)
- // a displayable error is returned
- public function DoCheckToWrite()
- {
- $this->DoComputeValues();
- $this->m_aCheckIssues = array();
- $aChanges = $this->ListChanges();
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode=>$oAttDef)
- {
- $res = $this->CheckValue($sAttCode);
- if ($res !== true)
- {
- // $res contains the error description
- $this->m_aCheckIssues[] = "Unexpected value for attribute '$sAttCode': $res";
- }
- }
- if (count($this->m_aCheckIssues) > 0)
- {
- // No need to check consistency between attributes if any of them has
- // an unexpected value
- return;
- }
- $res = $this->CheckConsistency();
- if ($res !== true)
- {
- // $res contains the error description
- $this->m_aCheckIssues[] = "Consistency rules not followed: $res";
- }
- // Synchronization: are we attempting to modify an attribute for which an external source is master?
- //
- if ($this->m_bIsInDB && $this->InSyncScope() && (count($aChanges) > 0))
- {
- foreach($aChanges as $sAttCode => $value)
- {
- $iFlags = $this->GetSynchroReplicaFlags($sAttCode, $aReasons);
- if ($iFlags & OPT_ATT_SLAVE)
- {
- // Note: $aReasonInfo['name'] could be reported (the task owning the attribute)
- $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- $sAttLabel = $oAttDef->GetLabel();
- foreach($aReasons as $aReasonInfo)
- {
- // Todo: associate the attribute code with the error
- $this->m_aCheckIssues[] = Dict::Format('UI:AttemptingToSetASlaveAttribute_Name', $sAttLabel);
- }
- }
- }
- }
- }
- final public function CheckToWrite()
- {
- if (MetaModel::SkipCheckToWrite())
- {
- return array(true, array());
- }
- if (is_null($this->m_bCheckStatus))
- {
- $oKPI = new ExecutionKPI();
- $this->DoCheckToWrite();
- $oKPI->ComputeStats('CheckToWrite', get_class($this));
- if (count($this->m_aCheckIssues) == 0)
- {
- $this->m_bCheckStatus = true;
- }
- else
- {
- $this->m_bCheckStatus = false;
- }
- }
- return array($this->m_bCheckStatus, $this->m_aCheckIssues, $this->m_bSecurityIssue);
- }
- // check if it is allowed to delete the existing object from the database
- // a displayable error is returned
- protected function DoCheckToDelete(&$oDeletionPlan)
- {
- $this->m_aDeleteIssues = array(); // Ok
- if ($this->InSyncScope())
- {
- $oReplicaSet = $this->GetMasterReplica();
- if ($oReplicaSet->Count() > 0)
- {
- while($aData = $oReplicaSet->FetchAssoc())
- {
- $oDataSource = $aData['datasource'];
- $oReplica = $aData['replica'];
- $oDeletionPlan->AddToDelete($oReplica, DEL_SILENT);
- if ($oDataSource->GetKey() == SynchroExecution::GetCurrentTaskId())
- {
- // The current task has the right to delete the object
- continue;
- }
-
- if ($oReplica->Get('status_dest_creator') != 1)
- {
- // The object is not owned by the task
- continue;
- }
- $sLink = $oDataSource->GetName();
- $sUserDeletePolicy = $oDataSource->Get('user_delete_policy');
- switch($sUserDeletePolicy)
- {
- case 'nobody':
- $this->m_aDeleteIssues[] = Dict::Format('Core:Synchro:TheObjectCannotBeDeletedByUser_Source', $sLink);
- break;
- case 'administrators':
- if (!UserRights::IsAdministrator())
- {
- $this->m_aDeleteIssues[] = Dict::Format('Core:Synchro:TheObjectCannotBeDeletedByUser_Source', $sLink);
- }
- break;
- case 'everybody':
- default:
- // Ok
- break;
- }
- }
- }
- }
- }
- final public function CheckToDelete(&$oDeletionPlan)
- {
- $this->MakeDeletionPlan($oDeletionPlan);
- $oDeletionPlan->ComputeResults();
- return (!$oDeletionPlan->FoundStopper());
- }
- protected function ListChangedValues(array $aProposal)
- {
- $aDelta = array();
- foreach ($aProposal as $sAtt => $proposedValue)
- {
- if (!array_key_exists($sAtt, $this->m_aOrigValues))
- {
- // The value was not set
- $aDelta[$sAtt] = $proposedValue;
- }
- elseif(is_object($proposedValue))
- {
- $oLinkAttDef = MetaModel::GetAttributeDef(get_class($this), $sAtt);
- // The value is an object, the comparison is not strict
- if (!$oLinkAttDef->Equals($proposedValue, $this->m_aOrigValues[$sAtt]))
- {
- $aDelta[$sAtt] = $proposedValue;
- }
- }
- else
- {
- // The value is a scalar, the comparison must be 100% strict
- if($this->m_aOrigValues[$sAtt] !== $proposedValue)
- {
- //echo "$sAtt:<pre>\n";
- //var_dump($this->m_aOrigValues[$sAtt]);
- //var_dump($proposedValue);
- //echo "</pre>\n";
- $aDelta[$sAtt] = $proposedValue;
- }
- }
- }
- return $aDelta;
- }
- // List the attributes that have been changed
- // Returns an array of attname => currentvalue
- public function ListChanges()
- {
- if ($this->m_bIsInDB)
- {
- return $this->ListChangedValues($this->m_aCurrValues);
- }
- else
- {
- return $this->m_aCurrValues;
- }
- }
- // Tells whether or not an object was modified since last read (ie: does it differ from the DB ?)
- public function IsModified()
- {
- $aChanges = $this->ListChanges();
- return (count($aChanges) != 0);
- }
- public function Equals($oSibling)
- {
- if (get_class($oSibling) != get_class($this))
- {
- return false;
- }
- if ($this->GetKey() != $oSibling->GetKey())
- {
- return false;
- }
- if ($this->m_bIsInDB)
- {
- // If one has changed, then consider them as being different
- if ($this->IsModified() || $oSibling->IsModified())
- {
- return false;
- }
- }
- else
- {
- // Todo - implement this case (loop on every attribute)
- //foreach(MetaModel::ListAttributeDefs(get_class($this) as $sAttCode => $oAttDef)
- //{
- //if (!isset($this->m_CurrentValues[$sAttCode])) continue;
- //if (!isset($this->m_CurrentValues[$sAttCode])) continue;
- //if (!$oAttDef->Equals($this->m_CurrentValues[$sAttCode], $oSibling->m_CurrentValues[$sAttCode]))
- //{
- //return false;
- //}
- //}
- return false;
- }
- return true;
- }
- // used both by insert/update
- private function DBWriteLinks()
- {
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode=>$oAttDef)
- {
- if (!$oAttDef->IsLinkSet()) continue;
- $oLinks = $this->Get($sAttCode);
- $oLinks->Rewind();
- while ($oLinkedObject = $oLinks->Fetch())
- {
- $oLinkedObject->Set($oAttDef->GetExtKeyToMe(), $this->m_iKey);
- if ($oLinkedObject->IsModified())
- {
- $oLinkedObject->DBWrite();
- }
- }
- // Delete the objects that were initialy present and disappeared from the list
- // (if any)
- $oOriginalSet = $this->m_aOrigValues[$sAttCode];
- if ($oOriginalSet != null)
- {
- $aOriginalList = $oOriginalSet->ToArray();
- $aNewSet = $oLinks->ToArray();
-
- foreach($aOriginalList as $iId => $oObject)
- {
- if (!array_key_exists($iId, $aNewSet))
- {
- // It disappeared from the list
- $oObject->DBDelete();
- }
- }
- }
- }
- }
- // Note: this is experimental - it was designed to speed up the setup of iTop
- // Known limitations:
- // - does not work with multi-table classes (issue with the unique id to maintain in several tables)
- // - the id of the object is not updated
- static public final function BulkInsertStart()
- {
- self::$m_bBulkInsert = true;
- }
- static public final function BulkInsertFlush()
- {
- if (!self::$m_bBulkInsert) return;
- foreach(self::$m_aBulkInsertCols as $sClass => $aTables)
- {
- foreach ($aTables as $sTable => $sColumns)
- {
- $sValues = implode(', ', self::$m_aBulkInsertItems[$sClass][$sTable]);
- $sInsertSQL = "INSERT INTO `$sTable` ($sColumns) VALUES $sValues";
- $iNewKey = CMDBSource::InsertInto($sInsertSQL);
- }
- }
- // Reset
- self::$m_aBulkInsertItems = array();
- self::$m_aBulkInsertCols = array();
- self::$m_bBulkInsert = false;
- }
- private function DBInsertSingleTable($sTableClass)
- {
- $sTable = MetaModel::DBGetTable($sTableClass);
- // Abstract classes or classes having no specific attribute do not have an associated table
- if ($sTable == '') return;
- $sClass = get_class($this);
- // fields in first array, values in the second
- $aFieldsToWrite = array();
- $aValuesToWrite = array();
-
- if (!empty($this->m_iKey) && ($this->m_iKey >= 0))
- {
- // Add it to the list of fields to write
- $aFieldsToWrite[] = '`'.MetaModel::DBGetKey($sTableClass).'`';
- $aValuesToWrite[] = CMDBSource::Quote($this->m_iKey);
- }
- $aHierarchicalKeys = array();
-
- foreach(MetaModel::ListAttributeDefs($sTableClass) as $sAttCode=>$oAttDef)
- {
- // Skip this attribute if not defined in this table
- if (!MetaModel::IsAttributeOrigin($sTableClass, $sAttCode)) continue;
- $aAttColumns = $oAttDef->GetSQLValues($this->m_aCurrValues[$sAttCode]);
- foreach($aAttColumns as $sColumn => $sValue)
- {
- $aFieldsToWrite[] = "`$sColumn`";
- $aValuesToWrite[] = CMDBSource::Quote($sValue);
- }
- if ($oAttDef->IsHierarchicalKey())
- {
- $aHierarchicalKeys[$sAttCode] = $oAttDef;
- }
- }
- if (count($aValuesToWrite) == 0) return false;
- if (MetaModel::DBIsReadOnly())
- {
- $iNewKey = -1;
- }
- else
- {
- if (self::$m_bBulkInsert)
- {
- if (!isset(self::$m_aBulkInsertCols[$sClass][$sTable]))
- {
- self::$m_aBulkInsertCols[$sClass][$sTable] = implode(', ', $aFieldsToWrite);
- }
- self::$m_aBulkInsertItems[$sClass][$sTable][] = '('.implode (', ', $aValuesToWrite).')';
-
- $iNewKey = 999999; // TODO - compute next id....
- }
- else
- {
- if (count($aHierarchicalKeys) > 0)
- {
- foreach($aHierarchicalKeys as $sAttCode => $oAttDef)
- {
- $aValues = MetaModel::HKInsertChildUnder($this->m_aCurrValues[$sAttCode], $oAttDef, $sTable);
- $aFieldsToWrite[] = '`'.$oAttDef->GetSQLRight().'`';
- $aValuesToWrite[] = $aValues[$oAttDef->GetSQLRight()];
- $aFieldsToWrite[] = '`'.$oAttDef->GetSQLLeft().'`';
- $aValuesToWrite[] = $aValues[$oAttDef->GetSQLLeft()];
- }
- }
- $sInsertSQL = "INSERT INTO `$sTable` (".join(",", $aFieldsToWrite).") VALUES (".join(", ", $aValuesToWrite).")";
- $iNewKey = CMDBSource::InsertInto($sInsertSQL);
- }
- }
- // Note that it is possible to have a key defined here, and the autoincrement expected, this is acceptable in a non root class
- if (empty($this->m_iKey))
- {
- // Take the autonumber
- $this->m_iKey = $iNewKey;
- }
- return $this->m_iKey;
- }
- // Insert of record for the new object into the database
- // Returns the key of the newly created object
- public function DBInsertNoReload()
- {
- if ($this->m_bIsInDB)
- {
- throw new CoreException("The object already exists into the Database, you may want to use the clone function");
- }
- $sClass = get_class($this);
- $sRootClass = MetaModel::GetRootClass($sClass);
- // Ensure the update of the values (we are accessing the data directly)
- $this->DoComputeValues();
- $this->OnInsert();
- if ($this->m_iKey < 0)
- {
- // This was a temporary "memory" key: discard it so that DBInsertSingleTable will not try to use it!
- $this->m_iKey = null;
- }
- // If not automatically computed, then check that the key is given by the caller
- if (!MetaModel::IsAutoIncrementKey($sRootClass))
- {
- if (empty($this->m_iKey))
- {
- throw new CoreWarning("Missing key for the object to write - This class is supposed to have a user defined key, not an autonumber", array('class' => $sRootClass));
- }
- }
- // Ultimate check - ensure DB integrity
- list($bRes, $aIssues) = $this->CheckToWrite();
- if (!$bRes)
- {
- $sIssues = implode(', ', $aIssues);
- throw new CoreException("Object not following integrity rules", array('issues' => $sIssues, 'class' => get_class($this), 'id' => $this->GetKey()));
- }
- // Stop watches
- $sState = $this->GetState();
- if ($sState != '')
- {
- foreach(MetaModel::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
- {
- if ($oAttDef instanceof AttributeStopWatch)
- {
- if (in_array($sState, $oAttDef->GetStates()))
- {
- // Start the stop watch and compute the deadlines
- $oSW = $this->Get($sAttCode);
- $oSW->Start($this, $oAttDef);
- $oSW->ComputeDeadlines($this, $oAttDef);
- $this->Set($sAttCode, $oSW);
- }
- }
- }
- }
- // First query built upon on the root class, because the ID must be created first
- $this->m_iKey = $this->DBInsertSingleTable($sRootClass);
- // Then do the leaf class, if different from the root class
- if ($sClass != $sRootClass)
- {
- $this->DBInsertSingleTable($sClass);
- }
- // Then do the other classes
- foreach(MetaModel::EnumParentClasses($sClass) as $sParentClass)
- {
- if ($sParentClass == $sRootClass) continue;
- $this->DBInsertSingleTable($sParentClass);
- }
- $this->DBWriteLinks();
- $this->m_bIsInDB = true;
- $this->m_bDirty = false;
-
- // Arg cache invalidated (in particular, it needs the object key -could be improved later)
- $this->m_aAsArgs = null;
- $this->AfterInsert();
- // Activate any existing trigger
- $sClass = get_class($this);
- $sClassList = implode("', '", MetaModel::EnumParentClasses($sClass, ENUM_PARENT_CLASSES_ALL));
- $oSet = new DBObjectSet(DBObjectSearch::FromOQL("SELECT TriggerOnObjectCreate AS t WHERE t.target_class IN ('$sClassList')"));
- while ($oTrigger = $oSet->Fetch())
- {
- $oTrigger->DoActivate($this->ToArgs('this'));
- }
- $this->RecordObjCreation();
- return $this->m_iKey;
- }
- public function DBInsert()
- {
- $this->DBInsertNoReload();
- $this->Reload();
- return $this->m_iKey;
- }
-
- public function DBInsertTracked(CMDBChange $oChange)
- {
- CMDBObject::SetCurrentChange($oChange);
- return $this->DBInsert();
- }
- public function DBInsertTrackedNoReload(CMDBChange $oChange)
- {
- CMDBObject::SetCurrentChange($oChange);
- return $this->DBInsertNoReload();
- }
- // Creates a copy of the current object into the database
- // Returns the id of the newly created object
- public function DBClone($iNewKey = null)
- {
- $this->m_bIsInDB = false;
- $this->m_iKey = $iNewKey;
- $ret = $this->DBInsert();
- $this->RecordObjCreation();
- return $ret;
- }
-
- /**
- * This function is automatically called after cloning an object with the "clone" PHP language construct
- * The purpose of this method is to reset the appropriate attributes of the object in
- * order to make sure that the newly cloned object is really distinct from its clone
- */
- public function __clone()
- {
- $this->m_bIsInDB = false;
- $this->m_bDirty = true;
- $this->m_iKey = self::GetNextTempId(get_class($this));
- }
- // Update a record
- public function DBUpdate()
- {
- if (!$this->m_bIsInDB)
- {
- throw new CoreException("DBUpdate: could not update a newly created object, please call DBInsert instead");
- }
- // Stop watches
- $sState = $this->GetState();
- if ($sState != '')
- {
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode => $oAttDef)
- {
- if ($oAttDef instanceof AttributeStopWatch)
- {
- if (in_array($sState, $oAttDef->GetStates()))
- {
- // Compute or recompute the deadlines
- $oSW = $this->Get($sAttCode);
- $oSW->ComputeDeadlines($this, $oAttDef);
- $this->Set($sAttCode, $oSW);
- }
- }
- }
- }
- $this->DoComputeValues();
- $this->OnUpdate();
- $aChanges = $this->ListChanges();
- if (count($aChanges) == 0)
- {
- // Attempting to update an unchanged object
- return;
- }
- // Ultimate check - ensure DB integrity
- list($bRes, $aIssues) = $this->CheckToWrite();
- if (!$bRes)
- {
- $sIssues = implode(', ', $aIssues);
- throw new CoreException("Object not following integrity rules", array('issues' => $sIssues, 'class' => get_class($this), 'id' => $this->GetKey()));
- }
- // Save the original values (will be reset to the new values when the object get written to the DB)
- $aOriginalValues = $this->m_aOrigValues;
- $bHasANewExternalKeyValue = false;
- $aHierarchicalKeys = array();
- foreach($aChanges as $sAttCode => $valuecurr)
- {
- $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- if ($oAttDef->IsExternalKey()) $bHasANewExternalKeyValue = true;
- if (!$oAttDef->IsDirectField()) unset($aChanges[$sAttCode]);
- if ($oAttDef->IsHierarchicalKey())
- {
- $aHierarchicalKeys[$sAttCode] = $oAttDef;
- }
- }
- if (!MetaModel::DBIsReadOnly())
- {
- // Update the left & right indexes for each hierarchical key
- foreach($aHierarchicalKeys as $sAttCode => $oAttDef)
- {
- $sTable = $sTable = MetaModel::DBGetTable(get_class($this), $sAttCode);
- $sSQL = "SELECT `".$oAttDef->GetSQLRight()."` AS `right`, `".$oAttDef->GetSQLLeft()."` AS `left` FROM `$sTable` WHERE id=".$this->GetKey();
- $aRes = CMDBSource::QueryToArray($sSQL);
- $iMyLeft = $aRes[0]['left'];
- $iMyRight = $aRes[0]['right'];
- $iDelta =$iMyRight - $iMyLeft + 1;
- MetaModel::HKTemporaryCutBranch($iMyLeft, $iMyRight, $oAttDef, $sTable);
-
- if ($aChanges[$sAttCode] == 0)
- {
- // No new parent, insert completely at the right of the tree
- $sSQL = "SELECT max(`".$oAttDef->GetSQLRight()."`) AS max FROM `$sTable`";
- $aRes = CMDBSource::QueryToArray($sSQL);
- if (count($aRes) == 0)
- {
- $iNewLeft = 1;
- }
- else
- {
- $iNewLeft = $aRes[0]['max']+1;
- }
- }
- else
- {
- // Insert at the right of the specified parent
- $sSQL = "SELECT `".$oAttDef->GetSQLRight()."` FROM `$sTable` WHERE id=".((int)$aChanges[$sAttCode]);
- $iNewLeft = CMDBSource::QueryToScalar($sSQL);
- }
- MetaModel::HKReplugBranch($iNewLeft, $iNewLeft + $iDelta - 1, $oAttDef, $sTable);
- $aHKChanges = array();
- $aHKChanges[$sAttCode] = $aChanges[$sAttCode];
- $aHKChanges[$oAttDef->GetSQLLeft()] = $iNewLeft;
- $aHKChanges[$oAttDef->GetSQLRight()] = $iNewLeft + $iDelta - 1;
- $aChanges[$sAttCode] = $aHKChanges; // the 3 values will be stored by MakeUpdateQuery below
- }
-
- // Update scalar attributes
- if (count($aChanges) != 0)
- {
- $oFilter = new DBObjectSearch(get_class($this));
- $oFilter->AddCondition('id', $this->m_iKey, '=');
-
- $sSQL = MetaModel::MakeUpdateQuery($oFilter, $aChanges);
- CMDBSource::Query($sSQL);
- }
- }
- $this->DBWriteLinks();
- $this->m_bDirty = false;
- $this->AfterUpdate();
- // Reload to get the external attributes
- if ($bHasANewExternalKeyValue)
- {
- $this->Reload();
- }
- else
- {
- // Reset original values although the object has not been reloaded
- foreach ($this->m_aLoadedAtt as $sAttCode => $bLoaded)
- {
- if ($bLoaded)
- {
- $value = $this->m_aCurrValues[$sAttCode];
- $this->m_aOrigValues[$sAttCode] = is_object($value) ? clone $value : $value;
- }
- }
-
- }
- if (count($aChanges) != 0)
- {
- $this->RecordAttChanges($aChanges, $aOriginalValues);
- }
- return $this->m_iKey;
- }
-
- public function DBUpdateTracked(CMDBChange $oChange)
- {
- CMDBObject::SetCurrentChange($oChange);
- return $this->DBUpdate();
- }
- // Make the current changes persistent - clever wrapper for Insert or Update
- public function DBWrite()
- {
- if ($this->m_bIsInDB)
- {
- return $this->DBUpdate();
- }
- else
- {
- return $this->DBInsert();
- }
- }
- private function DBDeleteSingleTable($sTableClass)
- {
- $sTable = MetaModel::DBGetTable($sTableClass);
- // Abstract classes or classes having no specific attribute do not have an associated table
- if ($sTable == '') return;
- $sPKField = '`'.MetaModel::DBGetKey($sTableClass).'`';
- $sKey = CMDBSource::Quote($this->m_iKey);
- $sDeleteSQL = "DELETE FROM `$sTable` WHERE $sPKField = $sKey";
- CMDBSource::DeleteFrom($sDeleteSQL);
- }
- protected function DBDeleteSingleObject()
- {
- if (!MetaModel::DBIsReadOnly())
- {
- $this->OnDelete();
- $this->RecordObjDeletion($this->m_iKey); // May cause a reload for storing history information
-
- foreach(MetaModel::ListAttributeDefs(get_class($this)) as $sAttCode => $oAttDef)
- {
- if ($oAttDef->IsHierarchicalKey())
- {
- // Update the left & right indexes for each hierarchical key
- $sTable = $sTable = MetaModel::DBGetTable(get_class($this), $sAttCode);
- $sSQL = "SELECT `".$oAttDef->GetSQLRight()."` AS `right`, `".$oAttDef->GetSQLLeft()."` AS `left` FROM `$sTable` WHERE id=".CMDBSource::Quote($this->m_iKey);
- $aRes = CMDBSource::QueryToArray($sSQL);
- $iMyLeft = $aRes[0]['left'];
- $iMyRight = $aRes[0]['right'];
- $iDelta =$iMyRight - $iMyLeft + 1;
- MetaModel::HKTemporaryCutBranch($iMyLeft, $iMyRight, $oAttDef, $sTable);
- // No new parent for now, insert completely at the right of the tree
- $sSQL = "SELECT max(`".$oAttDef->GetSQLRight()."`) AS max FROM `$sTable`";
- $aRes = CMDBSource::QueryToArray($sSQL);
- if (count($aRes) == 0)
- {
- $iNewLeft = 1;
- }
- else
- {
- $iNewLeft = $aRes[0]['max']+1;
- }
- MetaModel::HKReplugBranch($iNewLeft, $iNewLeft + $iDelta - 1, $oAttDef, $sTable);
- }
- }
- foreach(MetaModel::EnumParentClasses(get_class($this), ENUM_PARENT_CLASSES_ALL) as $sParentClass)
- {
- $this->DBDeleteSingleTable($sParentClass);
- }
-
- $this->AfterDelete();
- $this->m_bIsInDB = false;
- $this->m_iKey = null;
- }
- }
- // Delete an object... and guarantee data integrity
- //
- public function DBDelete(&$oDeletionPlan = null)
- {
- if (is_null($oDeletionPlan))
- {
- $oDeletionPlan = new DeletionPlan();
- }
- $this->MakeDeletionPlan($oDeletionPlan);
- $oDeletionPlan->ComputeResults();
- if ($oDeletionPlan->FoundStopper())
- {
- $aIssues = $oDeletionPlan->GetIssues();
- throw new DeleteException('Found issue(s)', array('target_class' => get_class($this), 'target_id' => $this->GetKey(), 'issues' => implode(', ', $aIssues)));
- }
- else
- {
- foreach ($oDeletionPlan->ListDeletes() as $sClass => $aToDelete)
- {
- foreach ($aToDelete as $iId => $aData)
- {
- $oToDelete = $aData['to_delete'];
- // The deletion based on a deletion plan should not be done for each oject if the deletion plan is common (Trac #457)
- // because for each object we would try to update all the preceding ones... that are already deleted
- // A better approach would be to change the API to apply the DBDelete on the deletion plan itself... just once
- // As a temporary fix: delete only the objects that are still to be deleted...
- if ($oToDelete->m_bIsInDB)
- {
- $oToDelete->DBDeleteSingleObject();
- }
- }
- }
- foreach ($oDeletionPlan->ListUpdates() as $sClass => $aToUpdate)
- {
- foreach ($aToUpdate as $iId => $aData)
- {
- $oToUpdate = $aData['to_reset'];
- foreach ($aData['attributes'] as $sRemoteExtKey => $aRemoteAttDef)
- {
- $oToUpdate->Set($sRemoteExtKey, $aData['values'][$sRemoteExtKey]);
- $oToUpdate->DBUpdate();
- }
- }
- }
- }
- return $oDeletionPlan;
- }
- public function DBDeleteTracked(CMDBChange $oChange, $bSkipStrongSecurity = null, &$oDeletionPlan = null)
- {
- CMDBObject::SetCurrentChange($oChange);
- $this->DBDelete($oDeletionPlan);
- }
- public function EnumTransitions()
- {
- $sStateAttCode = MetaModel::GetStateAttributeCode(get_class($this));
- if (empty($sStateAttCode)) return array();
- $sState = $this->Get(MetaModel::GetStateAttributeCode(get_class($this)));
- return MetaModel::EnumTransitions(get_class($this), $sState);
- }
- /**
- * Designed as an action to be called when a stop watch threshold times out
- * or from within the framework
- */
- public function ApplyStimulus($sStimulusCode, $bDoNotWrite = false)
- {
- $sStateAttCode = MetaModel::GetStateAttributeCode(get_class($this));
- if (empty($sStateAttCode)) return false;
- MyHelpers::CheckKeyInArray('object lifecycle stimulus', $sStimulusCode, MetaModel::EnumStimuli(get_class($this)));
- $aStateTransitions = $this->EnumTransitions();
- $aTransitionDef = $aStateTransitions[$sStimulusCode];
- // Change the state before proceeding to the actions, this is necessary because an action might
- // trigger another stimuli (alternative: push the stimuli into a queue)
- $sPreviousState = $this->Get($sStateAttCode);
- $sNewState = $aTransitionDef['target_state'];
- $this->Set($sStateAttCode, $sNewState);
- // $aTransitionDef is an
- // array('target_state'=>..., 'actions'=>array of handlers procs, 'user_restriction'=>TBD
- $bSuccess = true;
- foreach ($aTransitionDef['actions'] as $sActionHandler)
- {
- // std PHP spec
- $aActionCallSpec = array($this, $sActionHandler);
- if (!is_callable($aActionCallSpec))
- {
- throw new CoreException("Unable to call action: ".get_class($this)."::$sActionHandler");
- return;
- }
- $bRet = call_user_func($aActionCallSpec, $sStimulusCode);
- // if one call fails, the whole is considered as failed
- if (!$bRet) $bSuccess = false;
- }
- if ($bSuccess)
- {
- $sClass = get_class($this);
- // Stop watches
- foreach(MetaModel::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
- {
- if ($oAttDef instanceof AttributeStopWatch)
- {
- $oSW = $this->Get($sAttCode);
- if (in_array($sNewState, $oAttDef->GetStates()))
- {
- $oSW->Start($this, $oAttDef);
- }
- else
- {
- $oSW->Stop($this, $oAttDef);
- }
- $this->Set($sAttCode, $oSW);
- }
- }
-
- if (!$bDoNotWrite)
- {
- $this->DBWrite();
- }
- // Change state triggers...
- $sClassList = implode("', '", MetaModel::EnumParentClasses($sClass, ENUM_PARENT_CLASSES_ALL));
- $oSet = new DBObjectSet(DBObjectSearch::FromOQL("SELECT TriggerOnStateLeave AS t WHERE t.target_class IN ('$sClassList') AND t.state='$sPreviousState'"));
- while ($oTrigger = $oSet->Fetch())
- {
- $oTrigger->DoActivate($this->ToArgs('this'));
- }
-
- $oSet = new DBObjectSet(DBObjectSearch::FromOQL("SELECT TriggerOnStateEnter AS t WHERE t.target_class IN ('$sClassList') AND t.state='$sNewState'"));
- while ($oTrigger = $oSet->Fetch())
- {
- $oTrigger->DoActivate($this->ToArgs('this'));
- }
- }
- return $bSuccess;
- }
- /**
- * Designed as an action to be called when a stop watch threshold times out
- */
- public function ResetStopWatch($sAttCode)
- {
- $oAttDef = MetaModel::GetAttributeDef(get_class($this), $sAttCode);
- if (!$oAttDef instanceof AttributeStopWatch)
- {
- throw new CoreException("Invalid stop watch id: '$sAttCode'");
- }
- $oSW = $this->Get($sAttCode);
- $oSW->Reset($this, $oAttDef);
- $this->Set($sAttCode, $oSW);
- }
- // Make standard context arguments
- // Note: Needs to be reviewed because it is currently called once per attribute when an object is written (CheckToWrite / CheckValue)
- // Several options here:
- // 1) cache the result
- // 2) set only the object ref and resolve the values iif needed from contextual templates and queries (easy for the queries, not for the templates)
- public function ToArgs($sArgName = 'this')
- {
- if (is_null($this->m_aAsArgs))
- {
- $oKPI = new ExecutionKPI();
- $aScalarArgs = array();
- $aScalarArgs[$sArgName] = $this->GetKey();
- $aScalarArgs[$sArgName.'->id'] = $this->GetKey();
- $aScalarArgs[$sArgName.'->object()'] = $this;
- $aScalarArgs[$sArgName.'->hyperlink()'] = $this->GetHyperlink('iTopStandardURLMaker', false);
- $aScalarArgs[$sArgName.'->hyperlink(portal)'] = $this->GetHyperlink('PortalURLMaker', false);
- $aScalarArgs[$sArgName.'->name()'] = $this->GetName();
- $sClass = get_class($this);
- foreach(MetaModel::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
- {
- $aScalarArgs[$sArgName.'->'.$sAttCode] = $this->Get($sAttCode);
- if ($oAttDef->IsScalar())
- {
- // #@# Note: This has been proven to be quite slow, this can slow down bulk load
- $sAsHtml = $this->GetAsHtml($sAttCode);
- $aScalarArgs[$sArgName.'->html('.$sAttCode.')'] = $sAsHtml;
- $aScalarArgs[$sArgName.'->label('.$sAttCode.')'] = $this->GetEditValue($sAttCode); // "Nice" display value, but without HTML tags and entities
- }
- // Do something for case logs... quick N' dirty...
- if ($aScalarArgs[$sArgName.'->'.$sAttCode] instanceof ormCaseLog)
- {
- $oCaseLog = $aScalarArgs[$sArgName.'->'.$sAttCode];
- $aScalarArgs[$sArgName.'->'.$sAttCode] = $oCaseLog->GetText();
- $aScalarArgs[$sArgName.'->head('.$sAttCode.')'] = $oCaseLog->GetLatestEntry();
- }
- }
- $this->m_aAsArgs = $aScalarArgs;
- $oKPI->ComputeStats('ToArgs', get_class($this));
- }
- return $this->m_aAsArgs;
- }
- // To be optionaly overloaded
- protected function OnInsert()
- {
- }
-
- // To be optionaly overloaded
- protected function AfterInsert()
- {
- }
- // To be optionaly overloaded
- protected function OnUpdate()
- {
- }
- // To be optionaly overloaded
- protected function AfterUpdate()
- {
- }
- // To be optionaly overloaded
- protected function OnDelete()
- {
- }
- // To be optionaly overloaded
- protected function AfterDelete()
- {
- }
- /**
- * Common to the recording of link set changes (add/remove/modify)
- */
- private function PrepareChangeOpLinkSet($iLinkSetOwnerId, $oLinkSet, $sChangeOpClass, $aOriginalValues = null)
- {
- if ($iLinkSetOwnerId <= 0)
- {
- return null;
- }
- if (!is_subclass_of($oLinkSet->GetHostClass(), 'CMDBObject'))
- {
- // The link set owner class does not keep track of its history
- return null;
- }
- // Determine the linked item class and id
- //
- if ($oLinkSet->IsIndirect())
- {
- // The "item" is on the other end (N-N links)
- $sExtKeyToRemote = $oLinkSet->GetExtKeyToRemote();
- $oExtKeyToRemote = MetaModel::GetAttributeDef(get_class($this), $sExtKeyToRemote);
- $sItemClass = $oExtKeyToRemote->GetTargetClass();
- if ($aOriginalValues)
- {
- // Get the value from the original values
- $iItemId = $aOriginalValues[$sExtKeyToRemote];
- }
- else
- {
- $iItemId = $this->Get($sExtKeyToRemote);
- }
- }
- else
- {
- // I am the "item" (1-N links)
- $sItemClass = get_class($this);
- $iItemId = $this->GetKey();
- }
- // Get the remote object, to determine its exact class
- // Possible optimization: implement a tool in MetaModel, to get the final class of an object (not always querying + query reduced to a select on the root table!
- $oOwner = MetaModel::GetObject($oLinkSet->GetHostClass(), $iLinkSetOwnerId, false);
- if ($oOwner)
- {
- $sLinkSetOwnerClass = get_class($oOwner);
-
- $oMyChangeOp = MetaModel::NewObject($sChangeOpClass);
- $oMyChangeOp->Set("objclass", $sLinkSetOwnerClass);
- $oMyChangeOp->Set("objkey", $iLinkSetOwnerId);
- $oMyChangeOp->Set("attcode", $oLinkSet->GetCode());
- $oMyChangeOp->Set("item_class", $sItemClass);
- $oMyChangeOp->Set("item_id", $iItemId);
- return $oMyChangeOp;
- }
- else
- {
- // Depending on the deletion order, it may happen that the id is already invalid... ignore
- return null;
- }
- }
- /**
- * This object has been created/deleted, record that as a change in link sets pointing to this (if any)
- */
- private function RecordLinkSetListChange($bAdd = true)
- {
- $aForwardChangeTracking = MetaModel::GetTrackForwardExternalKeys(get_class($this));
- foreach(MetaModel::GetTrackForwardExternalKeys(get_class($this)) as $sExtKeyAttCode => $oLinkSet)
- {
- if (($oLinkSet->GetTrackingLevel() & LINKSET_TRACKING_LIST) == 0) continue;
-
- $iLinkSetOwnerId = $this->Get($sExtKeyAttCode);
- $oMyChangeOp = $this->PrepareChangeOpLinkSet($iLinkSetOwnerId, $oLinkSet, 'CMDBChangeOpSetAttributeLinksAddRemove');
- if ($oMyChangeOp)
- {
- if ($bAdd)
- {
- $oMyChangeOp->Set("type", "added");
- }
- else
- {
- $oMyChangeOp->Set("type", "removed");
- }
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- }
- }
- protected function RecordObjCreation()
- {
- $this->RecordLinkSetListChange(true);
- }
- protected function RecordObjDeletion($objkey)
- {
- $this->RecordLinkSetListChange(false);
- }
- protected function RecordAttChanges(array $aValues, array $aOrigValues)
- {
- $aForwardChangeTracking = MetaModel::GetTrackForwardExternalKeys(get_class($this));
- foreach(MetaModel::GetTrackForwardExternalKeys(get_class($this)) as $sExtKeyAttCode => $oLinkSet)
- {
- if (array_key_exists($sExtKeyAttCode, $aValues))
- {
- if (($oLinkSet->GetTrackingLevel() & LINKSET_TRACKING_LIST) == 0) continue;
- // Keep track of link added/removed
- //
- $iLinkSetOwnerNext = $aValues[$sExtKeyAttCode];
- $oMyChangeOp = $this->PrepareChangeOpLinkSet($iLinkSetOwnerNext, $oLinkSet, 'CMDBChangeOpSetAttributeLinksAddRemove');
- if ($oMyChangeOp)
- {
- $oMyChangeOp->Set("type", "added");
- $oMyChangeOp->DBInsertNoReload();
- }
- $iLinkSetOwnerPrevious = $aOrigValues[$sExtKeyAttCode];
- $oMyChangeOp = $this->PrepareChangeOpLinkSet($iLinkSetOwnerPrevious, $oLinkSet, 'CMDBChangeOpSetAttributeLinksAddRemove', $aOrigValues);
- if ($oMyChangeOp)
- {
- $oMyChangeOp->Set("type", "removed");
- $oMyChangeOp->DBInsertNoReload();
- }
- }
- else
- {
- // Keep track of link changes
- //
- if (($oLinkSet->GetTrackingLevel() & LINKSET_TRACKING_DETAILS) == 0) continue;
-
- $iLinkSetOwnerId = $this->Get($sExtKeyAttCode);
- $oMyChangeOp = $this->PrepareChangeOpLinkSet($iLinkSetOwnerId, $oLinkSet, 'CMDBChangeOpSetAttributeLinksTune');
- if ($oMyChangeOp)
- {
- $oMyChangeOp->Set("link_id", $this->GetKey());
- $iId = $oMyChangeOp->DBInsertNoReload();
- }
- }
- }
- }
- // Return an empty set for the parent of all
- public static function GetRelationQueries($sRelCode)
- {
- return array();
- }
-
- public function GetRelatedObjects($sRelCode, $iMaxDepth = 99, &$aResults = array())
- {
- foreach (MetaModel::EnumRelationQueries(get_class($this), $sRelCode) as $sDummy => $aQueryInfo)
- {
- MetaModel::DbgTrace("object=".$this->GetKey().", depth=$iMaxDepth, rel=".$aQueryInfo["sQuery"]);
- $sQuery = $aQueryInfo["sQuery"];
- $bPropagate = $aQueryInfo["bPropagate"];
- $iDistance = $aQueryInfo["iDistance"];
- $iDepth = $bPropagate ? $iMaxDepth - 1 : 0;
- $oFlt = DBObjectSearch::FromOQL($sQuery);
- $oObjSet = new DBObjectSet($oFlt, array(), $this->ToArgs());
- while ($oObj = $oObjSet->Fetch())
- {
- $sRootClass = MetaModel::GetRootClass(get_class($oObj));
- $sObjKey = $oObj->GetKey();
- if (array_key_exists($sRootClass, $aResults))
- {
- if (array_key_exists($sObjKey, $aResults[$sRootClass]))
- {
- continue; // already visited, skip
- }
- }
- $aResults[$sRootClass][$sObjKey] = $oObj;
- if ($iDepth > 0)
- {
- $oObj->GetRelatedObjects($sRelCode, $iDepth, $aResults);
- }
- }
- }
- return $aResults;
- }
- public function GetReferencingObjects($bAllowAllData = false)
- {
- $aDependentObjects = array();
- $aRererencingMe = MetaModel::EnumReferencingClasses(get_class($this));
- foreach($aRererencingMe as $sRemoteClass => $aExtKeys)
- {
- foreach($aExtKeys as $sExtKeyAttCode => $oExtKeyAttDef)
- {
- // skip if this external key is behind an external field
- if (!$oExtKeyAttDef->IsExternalKey(EXTKEY_ABSOLUTE)) continue;
- $oSearch = new DBObjectSearch($sRemoteClass);
- $oSearch->AddCondition($sExtKeyAttCode, $this->GetKey(), '=');
- if ($bAllowAllData)
- {
- $oSearch->AllowAllData();
- }
- $oSet = new CMDBObjectSet($oSearch);
- if ($oSet->Count() > 0)
- {
- $aDependentObjects[$sRemoteClass][$sExtKeyAttCode] = array(
- 'attribute' => $oExtKeyAttDef,
- 'objects' => $oSet,
- );
- }
- }
- }
- return $aDependentObjects;
- }
- private function MakeDeletionPlan(&$oDeletionPlan, $aVisited = array(), $iDeleteOption = null)
- {
- $sClass = get_class($this);
- $iThisId = $this->GetKey();
- $iDeleteOption = $oDeletionPlan->AddToDelete($this, $iDeleteOption);
- if (array_key_exists($sClass, $aVisited))
- {
- if (in_array($iThisId, $aVisited[$sClass]))
- {
- return;
- }
- }
- $aVisited[$sClass] = $iThisId;
- if ($iDeleteOption == DEL_MANUAL)
- {
- // Stop the recursion here
- return;
- }
- // Check the node itself
- $this->DoCheckToDelete($oDeletionPlan);
- $oDeletionPlan->SetDeletionIssues($this, $this->m_aDeleteIssues, $this->m_bSecurityIssue);
-
- $aDependentObjects = $this->GetReferencingObjects(true /* allow all data */);
- foreach ($aDependentObjects as $sRemoteClass => $aPotentialDeletes)
- {
- foreach ($aPotentialDeletes as $sRemoteExtKey => $aData)
- {
- $oAttDef = $aData['attribute'];
- $iDeletePropagationOption = $oAttDef->GetDeletionPropagationOption();
- $oDepSet = $aData['objects'];
- $oDepSet->Rewind();
- while ($oDependentObj = $oDepSet->fetch())
- {
- $iId = $oDependentObj->GetKey();
- if ($oAttDef->IsNullAllowed())
- {
- // Optional external key, list to reset
- if (($iDeletePropagationOption == DEL_MOVEUP) && ($oAttDef->IsHierarchicalKey()))
- {
- // Move the child up one level i.e. set the same parent as the current object
- $iParentId = $this->Get($oAttDef->GetCode());
- $oDeletionPlan->AddToUpdate($oDependentObj, $oAttDef, $iParentId);
- }
- else
- {
- $oDeletionPlan->AddToUpdate($oDependentObj, $oAttDef);
- }
- }
- else
- {
- // Mandatory external key, list to delete
- $oDependentObj->MakeDeletionPlan($oDeletionPlan, $aVisited, $iDeletePropagationOption);
- }
- }
- }
- }
- }
- /**
- * Get all the synchro replica related to this object
- * @param none
- * @return DBObjectSet Set with two columns: R=SynchroReplica S=SynchroDataSource
- */
- public function GetMasterReplica()
- {
- if ($this->m_oMasterReplicaSet == null)
- {
- //$aParentClasses = MetaModel::EnumParentClasses(get_class($this), ENUM_PARENT_CLASSES_ALL);
- //$sClassesList = "'".implode("','", $aParentClasses)."'";
- $sOQL = "SELECT replica,datasource FROM SynchroReplica AS replica JOIN SynchroDataSource AS datasource ON replica.sync_source_id=datasource.id WHERE replica.dest_class = :dest_class AND replica.dest_id = :dest_id";
- $oReplicaSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL), array() /* order by*/, array('dest_class' => get_class($this), 'dest_id' => $this->GetKey()));
- $this->m_oMasterReplicaSet = $oReplicaSet;
- }
- else
- {
- $this->m_oMasterReplicaSet->Rewind();
- }
- return $this->m_oMasterReplicaSet;
- }
-
- public function GetSynchroReplicaFlags($sAttCode, &$aReason)
- {
- $iFlags = OPT_ATT_NORMAL;
- $oSet = $this->GetMasterReplica();
- while($aData = $oSet->FetchAssoc())
- {
- if ($aData['datasource']->GetKey() == SynchroExecution::GetCurrentTaskId())
- {
- // Ignore the current task (check to write => ok)
- continue;
- }
- // Assumption: $aData['datasource'] will not be null because the data source id is always set...
- $oReplica = $aData['replica'];
- $oSource = $aData['datasource'];
- $oAttrSet = $oSource->Get('attribute_list');
- while($oSyncAttr = $oAttrSet->Fetch())
- {
- if (($oSyncAttr->Get('attcode') == $sAttCode) && ($oSyncAttr->Get('update') == 1) && ($oSyncAttr->Get('update_policy') == 'master_locked'))
- {
- $iFlags |= OPT_ATT_SLAVE;
- $sUrl = $oSource->GetApplicationUrl($this, $oReplica);
- $aReason[] = array('name' => $oSource->GetName(), 'description' => $oSource->Get('description'), 'url_application' => $sUrl);
- }
- }
- }
- return $iFlags;
- }
- public function InSyncScope()
- {
- return true;
- // TODO - FINALIZE THIS OPTIMIZATION
- //
- // Optimization: cache the list of Data Sources and classes candidates for synchro
- //
- static $aSynchroClasses = null;
- if (is_null($aSynchroClasses))
- {
- $aSynchroClasses = array();
- $sOQL = "SELECT SynchroDataSource AS datasource";
- $oSourceSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL), array() /* order by*/, array());
- while($oSource = $oSourceSet->Fetch())
- {
- $sTarget = $oSource->Get('scope_class');
- $aSynchroClasses[] = $oSource;
- }
- }
- // to be continued...
- }
- }
- ?>
|