1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405 |
- <?php
- // Copyright (C) 2011 Combodo SARL
- //
- /**
- * ModelFactory: in-memory manipulation of the XML MetaModel
- *
- * @author Erwan Taloc <erwan.taloc@combodo.com>
- * @author Romain Quetiez <romain.quetiez@combodo.com>
- * @author Denis Flaven <denis.flaven@combodo.com>
- * @license Combodo Private
- */
- require_once(APPROOT.'setup/moduleinstaller.class.inc.php');
- /**
- * ModelFactoryItem: an item managed by the ModuleFactory
- * @package ModelFactory
- */
- abstract class MFItem
- {
- public function __construct($sName, $sValue)
- {
- parent::__construct($sName, $sValue);
- }
-
- /**
- * List the source files for this item
- */
- public function ListSources()
- {
-
- }
- /**
- * List the rights/restrictions for this item
- */
- public function ListRights()
- {
-
- }
- }
- /**
- * ModelFactoryModule: the representation of a Module (i.e. element that can be selected during the setup)
- * @package ModelFactory
- */
- class MFModule extends MFItem
- {
- protected $sId;
- protected $sName;
- protected $sVersion;
- protected $sRootDir;
- protected $sLabel;
- protected $aDataModels;
-
- public function __construct($sId, $sRootDir, $sLabel)
- {
- $this->sId = $sId;
-
- list($this->sName, $this->sVersion) = ModuleDiscovery::GetModuleName($sId);
- if (strlen($this->sVersion) == 0)
- {
- $this->sVersion = '1.0.0';
- }
- $this->sRootDir = $sRootDir;
- $this->sLabel = $sLabel;
- $this->aDataModels = array();
-
- // Scan the module's root directory to find the datamodel(*).xml files
- if ($hDir = opendir($sRootDir))
- {
- // This is the correct way to loop over the directory. (according to the documentation)
- while (($sFile = readdir($hDir)) !== false)
- {
- if (preg_match('/^datamodel(.*)\.xml$/i', $sFile, $aMatches))
- {
- $this->aDataModels[] = $this->sRootDir.'/'.$aMatches[0];
- }
- }
- closedir($hDir);
- }
- }
-
-
- public function GetId()
- {
- return $this->sId;
- }
-
- public function GetName()
- {
- return $this->sName;
- }
- public function GetVersion()
- {
- return $this->sVersion;
- }
- public function GetLabel()
- {
- return $this->sLabel;
- }
-
- public function GetRootDir()
- {
- return $this->sRootDir;
- }
- public function GetModuleDir()
- {
- return basename($this->sRootDir);
- }
- public function GetDataModelFiles()
- {
- return $this->aDataModels;
- }
-
- /**
- * List all classes in this module
- */
- public function ListClasses()
- {
- return array();
- }
- }
- class MFWorkspace extends MFModule
- {
- public function __construct($sRootDir)
- {
- $this->sId = 'itop-workspace';
-
- $this->sName = 'workspace';
- $this->sVersion = '1.0';
- $this->sRootDir = $sRootDir;
- $this->sLabel = 'Workspace';
- $this->aDataModels = array();
- $this->aDataModels[] = $this->GetWorkspacePath();
- }
- public function GetWorkspacePath()
- {
- return $this->sRootDir.'/workspace.xml';
- }
-
- public function GetName()
- {
- return ''; // The workspace itself has no name so that objects created inside it retain their original module's name
- }
- }
- /**
- * ModelFactoryClass: the representation of a Class (i.e. a PHP class)
- * @package ModelFactory
- */
- class MFClass extends MFItem
- {
- /**
- * List all fields of this class
- */
- public function ListFields()
- {
- return array();
- }
-
- /**
- * List all methods of this class
- */
- public function ListMethods()
- {
- return array();
- }
-
- /**
- * Whether or not the class has a lifecycle
- * @return bool
- */
- public function HasLifeCycle()
- {
- return true; //TODO implement
- }
-
- /**
- * Returns the code of the attribute used to store the lifecycle state
- * @return string
- */
- public function GetLifeCycleAttCode()
- {
- if ($this->HasLifeCycle())
- {
-
- }
- return '';
- }
-
- /**
- * List all states of this class
- */
- public function ListStates()
- {
- return array();
- }
- /**
- * List all relations of this class
- */
- public function ListRelations()
- {
- return array();
- }
- /**
- * List all transitions of this class
- */
- public function ListTransitions()
- {
- return array();
- }
- }
- /**
- * ModelFactoryField: the representation of a Field (i.e. a property of a class)
- * @package ModelFactory
- */
- class MFField extends MFItem
- {
- }
- /**
- * ModelFactoryMethod: the representation of a Method (i.e. a method of a class)
- * @package ModelFactory
- */
- class MFMethod extends MFItem
- {
- }
- /**
- * ModelFactoryState: the representation of a state in the life cycle of the class
- * @package ModelFactory
- */
- class MFState extends MFItem
- {
- }
- /**
- * ModelFactoryRelation: the representation of a n:n relationship between two classes
- * @package ModelFactory
- */
- class MFRelation extends MFItem
- {
- }
- /**
- * ModelFactoryTransition: the representation of a transition between two states in the life cycle of the class
- * @package ModelFactory
- */
- class MFTransition extends MFItem
- {
- }
- /**
- * ModelFactory: the class that manages the in-memory representation of the XML MetaModel
- * @package ModelFactory
- */
- class ModelFactory
- {
- protected $sRootDir;
- protected $oDOMDocument;
- protected $oClasses;
- static protected $aLoadedClasses;
- static protected $aWellKnownParents = array('DBObject', 'CMDBObject','cmdbAbstractObject');
- static protected $aLoadedModules;
-
-
- public function __construct($sRootDir)
- {
- $this->sRootDir = $sRootDir;
- $this->oDOMDocument = new DOMDocument('1.0', 'UTF-8');
- $this->oClasses = $this->oDOMDocument->CreateElement('classes');
- $this->oDOMDocument->AppendChild($this->oClasses);
- self::$aLoadedClasses = array();
- self::$aLoadedModules = array();
- }
-
- public function Dump($oNode = null)
- {
- if (is_null($oNode))
- {
- $oNode = $this->oClasses;
- }
- echo htmlentities($this->oDOMDocument->saveXML($oNode));
- }
- /**
- * Loads the definitions corresponding to the given Module
- * @param MFModule $oModule
- */
- public function LoadModule(MFModule $oModule)
- {
- $aDataModels = $oModule->GetDataModelFiles();
- $sModuleName = $oModule->GetName();
- $aClasses = array();
- self::$aLoadedModules[] = $oModule;
- foreach($aDataModels as $sXmlFile)
- {
- $oDocument = new DOMDocument('1.0', 'UTF-8');
- $oDocument->load($sXmlFile);
- $oXPath = new DOMXPath($oDocument);
- $oNodeList = $oXPath->query('//*');
- foreach($oNodeList as $oNode)
- {
- $oNode->SetAttribute('_source', $sXmlFile);
- }
- $oXPath = new DOMXPath($oDocument);
- $oNodeList = $oXPath->query('//classes/class');
- foreach($oNodeList as $oNode)
- {
- if ($oNode->hasAttribute('parent'))
- {
- $sParentClass = $oNode->GetAttribute('parent');
- }
- else
- {
- $sParentClass = '';
- }
- $sClassName = $oNode->GetAttribute('name');
- $aClasses[$sClassName] = array('name' => $sClassName, 'parent' => $sParentClass, 'node' => $oNode);
- }
- }
-
- $index = 1;
- do
- {
- $bNothingLoaded = true;
- foreach($aClasses as $sClassName => $aClassData)
- {
- $sOperation = $aClassData['node']->getAttribute('_operation');
- switch($sOperation)
- {
- case 'added':
- case '':
- if (in_array($aClassData['parent'], self::$aWellKnownParents))
- {
- $this->AddClass($aClassData['node'], $sModuleName);
- unset($aClasses[$sClassName]);
- $bNothingLoaded = false;
- }
- else if ($this->ClassNameExists($aClassData['parent']))
- {
- $this->AddClass($aClassData['node'], $sModuleName);
- unset($aClasses[$sClassName]);
- $bNothingLoaded = false;
- }
- break;
-
- case 'removed':
- unset($aClasses[$sClassName]);
- $this->RemoveClass($sClassName);
- break;
-
- case 'modified':
- unset($aClasses[$sClassName]);
- $this->AlterClass($sClassName, $aClassData['node']);
- break;
- }
- }
- $index++;
- }
- while((count($aClasses)>0) && !$bNothingLoaded);
- // The remaining classes have no known parent, let's add them at the root
- foreach($aClasses as $sClassName => $aClassData)
- {
- $sOperation = $aClassData['node']->getAttribute('_operation');
- switch($sOperation)
- {
- case 'added':
- case '':
- // Add the class as a new root class
- $this->AddClass($aClassData['node'], $sModuleName);
- $oNewNode = $this->oDOMDocument->ImportNode($aClassData['node']);
- break;
-
- case 'removed':
- $this->RemoveClass($sClassName);
- break;
-
- case 'modified':
- //@@TODO Handle the modification of a class here
- $this->AlterClass($sClassName, $aClassData['node']);
- break;
- }
- }
- }
-
- function GetLoadedModules($bExcludeWorkspace = true)
- {
- if ($bExcludeWorkspace)
- {
- $aModules = array();
- foreach(self::$aLoadedModules as $oModule)
- {
- if (!$oModule instanceof MFWorkspace)
- {
- $aModules[] = $oModule;
- }
- }
- }
- else
- {
- $aModules = self::$aLoadedModules;
- }
- return $aModules;
- }
-
-
- function GetModule($sModuleName)
- {
- foreach(self::$aLoadedModules as $oModule)
- {
- if ($oModule->GetName() == $sModuleName) return $oModule;
- }
- return null;
- }
-
-
- /**
- * Check if the class specified by the given node already exists in the loaded DOM
- * @param DOMNode $oClassNode The node corresponding to the class to load
- * @throws Exception
- * @return bool True if the class exists, false otherwise
- */
- protected function ClassExists(DOMNode $oClassNode)
- {
- if ($oClassNode->hasAttribute('name'))
- {
- $sClassName = $oClassNode->GetAttribute('name');
- }
- else
- {
- throw new Exception('ModelFactory::AddClass: Cannot add a class with no name');
- }
-
- return (array_key_exists($sClassName, self::$aLoadedClasses));
- }
-
- /**
- * Check if the class specified by the given name already exists in the loaded DOM
- * @param string $sClassName The node corresponding to the class to load
- * @throws Exception
- * @return bool True if the class exists, false otherwise
- */
- protected function ClassNameExists($sClassName)
- {
- return (array_key_exists($sClassName, self::$aLoadedClasses));
- }
- /**
- * Add the given class to the DOM
- * @param DOMNode $oClassNode
- * @param string $sModuleName The name of the module in which this class is declared
- * @throws Exception
- */
- public function AddClass(DOMNode $oClassNode, $sModuleName)
- {
- if ($oClassNode->hasAttribute('name'))
- {
- $sClassName = $oClassNode->GetAttribute('name');
- }
- else
- {
- throw new Exception('ModelFactory::AddClass: Cannot add a class with no name');
- }
- if ($this->ClassExists($oClassNode))
- {
- throw new Exception("ModelFactory::AddClass: Cannot add the already existing class $sClassName");
- }
-
- $sParentClass = '';
- if ($oClassNode->hasAttribute('parent'))
- {
- $sParentClass = $oClassNode->GetAttribute('parent');
- }
-
- //echo "Adding class: $sClassName, parent: $sParentClass<br/>";
- if (!in_array($sParentClass, self::$aWellKnownParents) && $this->ClassNameExists($sParentClass))
- {
- // The class is a subclass of a class already loaded, add it under
- self::$aLoadedClasses[$sClassName] = $this->oDOMDocument->ImportNode($oClassNode, true /* bDeep */);
- self::$aLoadedClasses[$sClassName]->SetAttribute('_operation', 'added');
- if ($sModuleName != '')
- {
- self::$aLoadedClasses[$sClassName]->SetAttribute('_created_in', $sModuleName);
- }
- self::$aLoadedClasses[$sParentClass]->AppendChild(self::$aLoadedClasses[$sClassName]);
- $bNothingLoaded = false;
- }
- else if (in_array($sParentClass, self::$aWellKnownParents))
- {
- // Add the class as a new root class
- self::$aLoadedClasses[$sClassName] = $this->oDOMDocument->ImportNode($oClassNode, true /* bDeep */);
- self::$aLoadedClasses[$sClassName]->SetAttribute('_operation', 'added');
- if ($sModuleName != '')
- {
- self::$aLoadedClasses[$sClassName]->SetAttribute('_created_in', $sModuleName);
- }
- $this->oClasses->AppendChild(self::$aLoadedClasses[$sClassName]);
- }
- else
- {
- throw new Exception("ModelFactory::AddClass: Cannot add the class $sClassName, unknown parent class: $sParentClass");
- }
- }
-
- /**
- * Remove a class from the DOM
- * @param string $sClass
- * @throws Exception
- */
- public function RemoveClass($sClass)
- {
- if (!$this->ClassNameExists($sClass))
- {
- throw new Exception("ModelFactory::RemoveClass: Cannot remove the non existing class $sClass");
- }
- $oClassNode = self::$aLoadedClasses[$sClass];
- if ($oClassNode->getAttribute('_operation') == 'added')
- {
- $oClassNode->parentNode->RemoveChild($oClassNode);
- unset(self::$aLoadedClasses[$sClass]);
- }
- else
- {
- self::$aLoadedClasses[$sClass]->SetAttribute('_operation', 'removed');
- //TODO: also mark as removed the child classes
- }
-
- }
- public function AlterClass($sClassName, DOMNode $oClassNode)
- {
- $sOriginalName = $sClassName;
- if ($this->ClassNameExists($sClassName))
- {
- $oDestNode = self::$aLoadedClasses[$sClassName];
- }
- else
- {
- $sOriginalName = $oClassNode->getAttribute('_original_name');
- if ($this->ClassNameExists($sOriginalName))
- {
- // Class was renamed !
- $oDestNode = self::$aLoadedClasses[$sOriginalName];
- }
- else
- {
- throw new Exception("ModelFactory::AddClass: Cannot alter the non-existing class $sClassName / $sOriginalName");
- }
- }
- $this->_priv_AlterNode($oDestNode, $oClassNode);
- $sClassName = $oDestNode->getAttribute('name');
- if ($sOriginalName != $sClassName)
- {
- unset(self::$aLoadedClasses[$sOriginalName]);
- self::$aLoadedClasses[$sClassName] = $oDestNode;
- }
- $this->_priv_SetFlag($oDestNode, 'modified');
- }
-
- protected function _priv_AlterNode(DOMNode $oNode, DOMNode $oDeltaNode)
- {
- foreach ($oDeltaNode->attributes as $sName => $oAttrNode)
- {
- $sCurrentValue = $oNode->getAttribute($sName);
- $sNewValue = $oAttrNode->value;
- $oNode->setAttribute($sName, $oAttrNode->value);
- }
-
- $aSrcChildNodes = $oNode->childNodes;
- foreach($oDeltaNode->childNodes as $index => $oChildNode)
- {
- if (!$oChildNode instanceof DOMElement)
- {
- // Text or CData nodes are treated by position
- $sOperation = $oChildNode->parentNode->getAttribute('_operation');
- switch($sOperation)
- {
- case 'removed':
- // ???
- break;
-
- case 'modified':
- case 'replaced':
- case 'added':
- $oNewNode = $this->oDOMDocument->importNode($oChildNode);
- $oSrcChildNode = $aSrcChildNodes->item($index);
- if ($oSrcChildNode)
- {
- $oNode->replaceChild($oNewNode, $oSrcChildNode);
- }
- else
- {
- $oNode->appendChild($oNewNode);
- }
-
- break;
-
- case '':
- // Do nothing
- }
- }
- else
- {
- $sOperation = $oChildNode->getAttribute('_operation');
- $sPath = $oChildNode->tagName;
- $sName = $oChildNode->getAttribute('name');
- if ($sName != '')
- {
- $sPath .= "[@name='$sName']";
- }
- switch($sOperation)
- {
- case 'removed':
- $oToRemove = $this->_priv_GetNodes($sPath, $oNode)->item(0);
- if ($oToRemove != null)
- {
- $this->_priv_SetFlag($oToRemove, 'removed');
- }
- break;
-
- case 'modified':
- $oToModify = $this->_priv_GetNodes($sPath, $oNode)->item(0);
- if ($oToModify != null)
- {
- $this->_priv_AlterNode($oToModify, $oChildNode);
- }
- else
- {
- throw new Exception("Cannot modify the non-existing node '$sPath' in '".$oNode->getNodePath()."'");
- }
- break;
-
- case 'replaced':
- $oNewNode = $this->oDOMDocument->importNode($oChildNode, true); // Import the node and its child nodes
- $oToModify = $this->_priv_GetNodes($sPath, $oNode)->item(0);
- $oNode->replaceChild($oNewNode, $oToModify);
- break;
-
- case 'added':
- $oNewNode = $this->oDOMDocument->importNode($oChildNode);
- $oNode->appendChild($oNewNode);
- $this->_priv_SetFlag($oNewNode, 'added');
- break;
-
- case '':
- // Do nothing
- }
- }
- }
- }
-
- public function GetClassXMLTemplate($sName, $sIcon)
- {
- return
- <<<EOF
- <?xml version="1.0" encoding="utf-8"?>
- <class name="$sName" parent="" db_table="" category="" abstract="" key_type="autoincrement" db_key_field="id" db_final_class_field="finalclass">
- <properties>
- <comment/>
- <naming format=""><attributes/></naming>
- <reconciliation><attributes/></reconciliation>
- <display_template/>
- <icon>$sIcon</icon>
- </properties>
- <fields/>
- <methods/>
- <presentation>
- <details><items/></details>
- <search><items/></search>
- <list><items/></list>
- </presentation>
- </class>
- EOF
- ;
- }
- /**
- * List all classes from the DOM, for a given module
- * @param string $sModuleNale
- * @param bool $bFlattenLayers
- * @throws Exception
- */
- public function ListClasses($sModuleName, $bFlattenLayers = true)
- {
- $sXPath = "//class[@_created_in='$sModuleName']";
- if ($bFlattenLayers)
- {
- $sXPath = "//class[@_created_in='$sModuleName' and @_operation!='removed']";
- }
- return $this->_priv_GetNodes($sXPath);
- }
-
- /**
- * List all classes from the DOM, for a given module
- * @param string $sModuleNale
- * @param bool $bFlattenLayers
- * @throws Exception
- */
- public function ListAllClasses($bFlattenLayers = true)
- {
- $sXPath = "//class";
- if ($bFlattenLayers)
- {
- $sXPath = "//class[@_operation!='removed']";
- }
- return $this->_priv_GetNodes($sXPath);
- }
-
- public function GetClass($sClassName, $bFlattenLayers = true)
- {
- if (!$this->ClassNameExists($sClassName))
- {
- return null;
- }
- $oClassNode = self::$aLoadedClasses[$sClassName];
- if ($bFlattenLayers)
- {
- $sOperation = $oClassNode->getAttribute('_operation');
- if ($sOperation == 'removed')
- {
- $oClassNode = null;
- }
- }
- return $oClassNode;
- }
-
- public function GetChildClasses($oClassNode, $bFlattenLayers = true)
- {
- $sXPath = "class";
- if ($bFlattenLayers)
- {
- $sXPath = "class[(@_operation!='removed')]";
- }
- return $this->_priv_GetNodes($sXPath, $oClassNode);
- }
-
-
- public function GetField($sClassName, $sAttCode, $bFlattenLayers = true)
- {
- if (!$this->ClassNameExists($sClassName))
- {
- return null;
- }
- $oClassNode = self::$aLoadedClasses[$sClassName];
- if ($bFlattenLayers)
- {
- $sOperation = $oClassNode->getAttribute('_operation');
- if ($sOperation == 'removed')
- {
- $oClassNode = null;
- }
- }
- $sXPath = "fields/field[@name='$sAttCode']";
- if ($bFlattenLayers)
- {
- $sXPath = "fields/field[(@name='$sAttCode' and (not(@_operation) or @_operation!='removed'))]";
- }
- $oFieldNode = $this->_priv_GetNodes($sXPath, $oClassNode)->item(0);
- if (($oFieldNode == null) && ($oClassNode->getAttribute('parent') != ''))
- {
- return $this->GetField($oClassNode->getAttribute('parent'), $sAttCode, $bFlattenLayers);
- }
- return $oFieldNode;
- }
-
- /**
- * List all classes from the DOM
- * @param bool $bFlattenLayers
- * @throws Exception
- */
- public function ListFields(DOMNode $oClassNode, $bFlattenLayers = true)
- {
- $sXPath = "fields/field";
- if ($bFlattenLayers)
- {
- $sXPath = "fields/field[not(@_operation) or @_operation!='removed']";
- }
- return $this->_priv_GetNodes($sXPath, $oClassNode);
- }
-
- public function AddField(DOMNode $oClassNode, $sFieldCode, $sFieldType, $sSQL, $defaultValue, $bIsNullAllowed, $aExtraParams)
- {
- $oNewField = $this->oDOMDocument->createElement('field');
- $oNewField->setAttribute('name', $sFieldCode);
- $this->_priv_AlterField($oNewField, $sFieldType, $sSQL, $defaultValue, $bIsNullAllowed, $aExtraParams);
- $oFields = $oClassNode->getElementsByTagName('fields')->item(0);
- $oFields->AppendChild($oNewField);
- $this->_priv_SetFlag($oNewField, 'added');
- }
-
- public function RemoveField(DOMNode $oClassNode, $sFieldCode)
- {
- $sXPath = "fields/field[@name='$sFieldCode']";
- $oFieldNodes = $this->_priv_GetNodes($sXPath, $oClassNode);
- if (is_object($oFieldNodes) && (is_object($oFieldNodes->item(0))))
- {
- $oFieldNode = $oFieldNodes->item(0);
- $sOpCode = $oFieldNode->getAttribute('_operation');
- if ($oFieldNode->getAttribute('_operation') == 'added')
- {
- $oFieldNode->parentNode->removeChild($oFieldNode);
- }
- else
- {
- $this->_priv_SetFlag($oFieldNode, 'removed');
- }
- }
- }
-
- public function AlterField(DOMNode $oClassNode, $sFieldCode, $sFieldType, $sSQL, $defaultValue, $bIsNullAllowed, $aExtraParams)
- {
- $sXPath = "fields/field[@name='$sFieldCode']";
- $oFieldNodes = $this->_priv_GetNodes($sXPath, $oClassNode);
- if (is_object($oFieldNodes) && (is_object($oFieldNodes->item(0))))
- {
- $oFieldNode = $oFieldNodes->item(0);
- //@@TODO: if the field was 'added' => then let it as 'added'
- $sOpCode = $oFieldNode->getAttribute('_operation');
- switch($sOpCode)
- {
- case 'added':
- case 'modified':
- // added or modified, let it as it is
- break;
-
- default:
- $this->_priv_SetFlag($oFieldNodes->item(0), 'modified');
- }
- $this->_priv_AlterField($oFieldNodes->item(0), $sFieldType, $sSQL, $defaultValue, $bIsNullAllowed, $aExtraParams);
- }
- }
- protected function _priv_AlterField(DOMNode $oFieldNode, $sFieldType, $sSQL, $defaultValue, $bIsNullAllowed, $aExtraParams)
- {
- switch($sFieldType)
- {
- case 'Blob':
- case 'Boolean':
- case 'CaseLog':
- case 'Deadline':
- case 'Duration':
- case 'EmailAddress':
- case 'EncryptedString':
- case 'HTML':
- case 'IPAddress':
- case 'LongText':
- case 'OQL':
- case 'OneWayPassword':
- case 'Password':
- case 'Percentage':
- case 'String':
- case 'Text':
- case 'Text':
- case 'TemplateHTML':
- case 'TemplateString':
- case 'TemplateText':
- case 'URL':
- case 'Date':
- case 'DateTime':
- case 'Decimal':
- case 'Integer':
- break;
-
- case 'ExternalKey':
- $this->_priv_AddFieldAttribute($oFieldNode, 'target_class', $aExtraParams);
- // Fall through
- case 'HierarchicalKey':
- $this->_priv_AddFieldAttribute($oFieldNode, 'on_target_delete', $aExtraParams);
- $this->_priv_AddFieldAttribute($oFieldNode, 'filter', $aExtraParams);
- break;
- case 'ExternalField':
- $this->_priv_AddFieldAttribute($oFieldNode, 'extkey_attcode', $aExtraParams);
- $this->_priv_AddFieldAttribute($oFieldNode, 'target_attcode', $aExtraParams);
- break;
-
- case 'Enum':
- $this->_priv_SetFieldValues($oFieldNode, $aExtraParams);
- break;
-
- case 'LinkedSetIndirect':
- $this->_priv_AddFieldAttribute($oFieldNode, 'ext_key_to_remote', $aExtraParams);
- // Fall through
- case 'LinkedSet':
- $this->_priv_AddFieldAttribute($oFieldNode, 'linked_class', $aExtraParams);
- $this->_priv_AddFieldAttribute($oFieldNode, 'ext_key_to_me', $aExtraParams);
- $this->_priv_AddFieldAttribute($oFieldNode, 'count_min', $aExtraParams);
- $this->_priv_AddFieldAttribute($oFieldNode, 'count_max', $aExtraParams);
- break;
-
- default:
- throw(new Exception('Unsupported type of field: '.$sFieldType));
- }
- $this->_priv_SetFieldDependencies($oFieldNode, $aExtraParams);
- $oFieldNode->setAttribute('type', $sFieldType);
- $oFieldNode->setAttribute('sql', $sSQL);
- $oFieldNode->setAttribute('default_value', $defaultValue);
- $oFieldNode->setAttribute('is_null_alllowed', $bIsNullAllowed ? 'true' : 'false');
- }
-
- protected function _priv_AddFieldAttribute(DOMNode $oFieldNode, $sAttributeCode, $aExtraParams, $bMandatory = false)
- {
- $value = array_key_exists($sAttributeCode, $aExtraParams) ? $aExtraParams[$sAttributeCode] : '';
- if (($value == '') && (!$bMandatory)) return;
- $oFieldNode->setAttribute($sAttributeCode, $value);
- }
-
- protected function _priv_SetFieldDependencies($oFieldNode, $aExtraParams)
- {
- $aDeps = array_key_exists('dependencies', $aExtraParams) ? $aExtraParams['dependencies'] : '';
- $oDependencies = $oFieldNode->getElementsByTagName('dependencies')->item(0);
- // No dependencies before, and no dependencies to add, exit
- if (($oDependencies == null) && ($aDeps == '')) return;
-
- // Remove the previous dependencies
- $oFieldNode->removeChild($oDependencies);
- // If no dependencies, exit
- if ($aDeps == '') return;
- // Build the new list of dependencies
- $oDependencies = $this->oDOMDocument->createElement('dependencies');
- foreach($aDeps as $sAttCode)
- {
- $oDep = $this->oDOMDocument->createElement('attribute');
- $oDep->setAttribute('name', $sAttCode);
- $oDependencies->addChild($oDep);
- }
- $oFieldNode->addChild($oDependencies);
- }
-
- protected function _priv_SetFieldValues($oFieldNode, $aExtraParams)
- {
- $aVals = array_key_exists('values', $aExtraParams) ? $aExtraParams['values'] : '';
- $oValues = $oFieldNode->getElementsByTagName('values')->item(0);
- // No dependencies before, and no dependencies to add, exit
- if (($oValues == null) && ($aVals == '')) return;
-
- // Remove the previous dependencies
- $oFieldNode->removeChild($oValues);
- // If no dependencies, exit
- if ($aVals == '') return;
- // Build the new list of dependencies
- $oValues = $this->oDOMDocument->createElement('values');
- foreach($aVals as $sValue)
- {
- $oVal = $this->oDOMDocument->createElement('value', $sValue);
- $oValues->appendChild($oVal);
- }
- $oFieldNode->appendChild($oValues);
- }
- public function SetPresentation(DOMNode $oClassNode, $sPresentationCode, $aPresentation)
- {
- $oPresentation = $oClassNode->getElementsByTagName('presentation')->item(0);
- if (!is_object($oPresentation))
- {
- $oPresentation = $this->oDOMDocument->createElement('presentation');
- $oClassNode->appendChild($oPresentation);
- }
- $oZlist = $oPresentation->getElementsByTagName($sPresentationCode)->item(0);
- if (is_object($oZlist))
- {
- // Remove the previous Zlist
- $oPresentation->removeChild($oZlist);
- }
- // Create the ZList anew
- $oZlist = $this->oDOMDocument->createElement($sPresentationCode);
- $oPresentation->appendChild($oZlist);
- $this->AddZListItem($oZlist, $aPresentation);
- $this->_priv_SetFlag($oZlist, 'replaced');
- }
- protected function AddZListItem($oXMLNode, $value)
- {
- if (is_array($value))
- {
- $oXmlItems = $this->oDOMDocument->CreateElement('items');
- $oXMLNode->appendChild($oXmlItems);
-
- foreach($value as $key => $item)
- {
- $oXmlItem = $this->oDOMDocument->CreateElement('item');
- $oXmlItems->appendChild($oXmlItem);
-
- if (is_string($key))
- {
- $oXmlItem->SetAttribute('key', $key);
- }
- $this->AddZListItem($oXmlItem, $item);
- }
- }
- else
- {
- $oXmlText = $this->oDOMDocument->CreateTextNode((string) $value);
- $oXMLNode->appendChild($oXmlText);
- }
- }
-
- public function _priv_SetFlag($oNode, $sFlagValue)
- {
- $sPreviousFlag = $oNode->getAttribute('_operation');
- if ($sPreviousFlag == 'added')
- {
- // Do nothing ??
- }
- else
- {
- $oNode->setAttribute('_operation', $sFlagValue);
- }
- if ($oNode->tagName != 'class')
- {
- $this->_priv_SetFlag($oNode->parentNode, 'modified');
- }
- }
- /**
- * List all transitions from a given state
- * @param DOMNode $oStateNode The state
- * @param bool $bFlattenLayers
- * @throws Exception
- */
- public function ListTransitions(DOMNode $oStateNode, $bFlattenLayers = true)
- {
- $sXPath = "transitions/transition";
- if ($bFlattenLayers)
- {
- //$sXPath = "transitions/transition[@_operation!='removed']";
- }
- return $this->_priv_GetNodes($sXPath, $oStateNode);
- }
-
- /**
- * List all states of a given class
- * @param DOMNode $oClassNode The class
- * @param bool $bFlattenLayers
- * @throws Exception
- */
- public function ListStates(DOMNode $oClassNode, $bFlattenLayers = true)
- {
- $sXPath = "lifecycle/states/state";
- if ($bFlattenLayers)
- {
- //$sXPath = "lifecycle/states/state[@_operation!='removed']";
- }
- return $this->_priv_GetNodes($sXPath, $oClassNode);
- }
-
- /**
- * List Zlists from the DOM for a given class
- * @param bool $bFlattenLayers
- * @throws Exception
- */
- public function ListZLists(DOMNode $oClassNode, $bFlattenLayers = true)
- {
- // Not yet implemented !!!
- return array();
- }
-
- public function ApplyChanges()
- {
- $oNodes = $this->ListChanges();
- foreach($oNodes as $oClassNode)
- {
- $sOperation = $oClassNode->GetAttribute('_operation');
- switch($sOperation)
- {
- case 'added':
- case 'modified':
- // marked as added or modified, just reset the flag
- $oClassNode->setAttribute('_operation', '');
- break;
-
- case 'removed':
- // marked as deleted, let's remove the node from the tree
- $oParent = $oClassNode->parentNode;
- $sClass = $oClassNode->GetAttribute('name');
- echo "Calling removeChild...<br/>";
- $oParent->removeChild($oClassNode);
- unset(self::$aLoadedClasses[$sClass]);
- break;
- }
- }
- }
-
- public function ListChanges()
- {
- $sXPath = "//*[@_operation!='']";
- return $this->_priv_GetNodes($sXPath);
- }
-
- /**
- * Get the text/XML version of the delta
- */
- public function GetDelta()
- {
- $oDelta = new DOMDocument('1.0', 'UTF-8');
- $oRootNode = $oDelta->createElement('classes');
- $oDelta->appendChild($oRootNode);
-
- $this->_priv_ImportModifiedChildren($oDelta, $oRootNode, $this->oDOMDocument->firstChild);
- //file_put_contents($sXMLDestPath, $oDelta->saveXML());
- return $oDelta->saveXML();
- }
-
-
- protected function _priv_ImportModifiedChildren(DOMDocument $oDoc, DOMNode $oDestNode, DOMNode $oNode)
- {
- static $iDepth = 0;
- $iDepth++;
- foreach($oNode->childNodes as $oChildNode)
- {
- $sNodeName = $oChildNode->nodeName;
- $sNodeValue = $oChildNode->nodeValue;
- if (!$oChildNode instanceof DOMElement)
- {
- $sName = '$$';
- $sOperation = $oChildNode->parentNode->getAttribute('_operation');
- }
- else
- {
- $sName = $oChildNode->getAttribute('name');;
- $sOperation = $oChildNode->getAttribute('_operation');
- }
-
- echo str_repeat('+', $iDepth)." $sNodeName [$sName], operation: $sOperation\n";
-
- switch($sOperation)
- {
- case 'removed':
- $oDeletedNode = $oDoc->importNode($oChildNode->cloneNode(false)); // Copies all the node's attributes, but NOT the child nodes
- $oDeletedNode->removeAttribute('_source');
- if ($oDeletedNode->tagName == 'class')
- {
- // classes are always located under the root node
- $oDoc->firstChild->appendChild($oDeletedNode);
- }
- else
- {
- $oDestNode->appendChild($oDeletedNode);
- }
- echo "<p>".str_repeat('+', $iDepth).$oChildNode->getAttribute('name')." was removed...</p>";
- break;
- case 'added':
- echo "<p>".str_repeat('+', $iDepth).$oChildNode->tagName.':'.$oChildNode->getAttribute('name')." was created...</p>";
- $oModifiedNode = $oDoc->importNode($oChildNode, true); // Copies all the node's attributes, and the child nodes as well
- if ($oChildNode instanceof DOMElement)
- {
- $oModifiedNode->removeAttribute('_source');
- if ($oModifiedNode->tagName == 'class')
- {
- echo "<p>".str_repeat('+', $iDepth).$oChildNode->tagName.':'.$oChildNode->getAttribute('name')." inserting under 'classes'...</p>";
- // classes are always located under the root node
- $oDoc->firstChild->appendChild($oModifiedNode);
-
- // Process any subclasses: move them under the root of the document
- $oSubclasses = $oModifiedNode->GetElementsByTagName('class');
- $aSubClasses = array();
- foreach($oSubclasses as $oSubclassNode)
- {
- $aSubClasses[] = $oSubclassNode;
- }
- for($index = count($aSubClasses)-1; $index >= 0; $index--)
- {
- $aSubClasses[$index]->parentNode->removeChild($aSubClasses[$index]);
- $oDoc->firstChild->appendChild($aSubClasses[$index]);
- }
- }
- else
- {
- echo "<p>".str_repeat('+', $iDepth).$oChildNode->tagName.':'.$oChildNode->getAttribute('name')." inserting in the hierarchy...</p>";
- $oDestNode->appendChild($oModifiedNode);
- }
- }
- else
- {
- $oDestNode->appendChild($oModifiedNode);
- }
- break;
-
- case 'replaced':
- echo "<p>".str_repeat('+', $iDepth).$oChildNode->tagName.':'.$oChildNode->getAttribute('name')." was replaced...</p>";
- $oModifiedNode = $oDoc->importNode($oChildNode, true); // Copies all the node's attributes, and the child nodes as well
- if ($oChildNode instanceof DOMElement)
- {
- $oModifiedNode->removeAttribute('_source');
- }
- $oDestNode->appendChild($oModifiedNode);
- break;
-
- case 'modified':
- echo "<p>".str_repeat('+', $iDepth).$oChildNode->tagName.':'.$oChildNode->getAttribute('name')." was modified...</p>";
- if ($oChildNode instanceof DOMElement)
- {
- echo str_repeat('+', $iDepth)." Copying (NON recursively) the modified node\n";
- $oModifiedNode = $oDoc->importNode($oChildNode, false); // Copies all the node's attributes, but NOT the child nodes
- $oModifiedNode->removeAttribute('_source');
- $this->_priv_ImportModifiedChildren($oDoc, $oModifiedNode, $oChildNode);
- if ($oModifiedNode->tagName == 'class')
- {
- // classes are always located under the root node
- $oDoc->firstChild->appendChild($oModifiedNode);
- }
- else
- {
- $oDestNode->appendChild($oModifiedNode);
- }
- }
- else
- {
- echo str_repeat('+', $iDepth)." Copying (recursively) the modified node\n";
- $oModifiedNode = $oDoc->importNode($oChildNode, true); // Copies all the node's attributes, and the child nodes
- $oDestNode->appendChild($oModifiedNode);
- }
- break;
-
- default:
- // No change: do nothing
- echo "<p>".str_repeat('+', $iDepth).$oChildNode->tagName.':'.$oChildNode->getAttribute('name')." was NOT modified...</p>";
- $oModifiedNode = $oDoc->importNode($oChildNode, true); // Importing the node for future recusrsion if needed
- if ($oChildNode->tagName == 'class')
- {
- echo "<p>".str_repeat('+', $iDepth)."Checking if a subclass of ".$oChildNode->getAttribute('name')." was modified...</p>";
- // classes are always located under the root node
- $this->_priv_ImportModifiedChildren($oDoc, $oModifiedNode, $oChildNode);
- }
- }
- }
- $iDepth--;
- }
- /**
- * Searches on disk in the root directory for module description files
- * and returns an array of MFModules
- * @return array Array of MFModules
- */
- public function FindModules($sSubDirectory = '')
- {
- $aAvailableModules = ModuleDiscovery::GetAvailableModules($this->sRootDir, $sSubDirectory);
- $aResult = array();
- foreach($aAvailableModules as $sId => $aModule)
- {
- $aResult[] = new MFModule($sId, $aModule['root_dir'], $aModule['label']);
- }
- return $aResult;
- }
-
- /**
- * Produce the PHP files corresponding to the data model
- * @param $bTestOnly bool
- * @return array Array of errors, empty if no error
- */
- public function Compile($bTestOnly)
- {
- return array();
- }
-
- /**
- * Extracts some nodes from the DOM
- * @param string $sXPath A XPath expression
- * @return DOMNodeList
- */
- public function _priv_GetNodes($sXPath, $oContextNode = null)
- {
- $oXPath = new DOMXPath($this->oDOMDocument);
-
- if (is_null($oContextNode))
- {
- return $oXPath->query($sXPath);
- }
- else
- {
- return $oXPath->query($sXPath, $oContextNode);
- }
- }
-
- /**
- * Insert a new node in the DOM
- * @param DOMNode $oNode
- * @param DOMNode $oParentNode
- */
- public function _priv_AddNode(DOMNode $oNode, DOMNode $oParentNode)
- {
- }
-
- /**
- * Remove a node from the DOM
- * @param DOMNode $oNode
- * @param DOMNode $oParentNode
- */
- public function _priv_RemoveNode(DOMNode $oNode)
- {
- }
-
- /**
- * Add or modify an attribute of a node
- * @param DOMNode $oNode
- * @param string $sAttributeName
- * @param mixed $atttribueValue
- */
- public function _priv_SetNodeAttribute(DOMNode $oNode, $sAttributeName, $atttribueValue)
- {
- }
-
- /**
- * Helper to browse the DOM -could be factorized in ModelFactory
- * Returns the node directly under the given node, and that is supposed to be always present and unique
- */
- protected function GetUniqueElement($oDOMNode, $sTagName, $bMustExist = true)
- {
- $oNode = null;
- foreach($oDOMNode->childNodes as $oChildNode)
- {
- if ($oChildNode->nodeName == $sTagName)
- {
- $oNode = $oChildNode;
- break;
- }
- }
- if ($bMustExist && is_null($oNode))
- {
- throw new DOMFormatException('Missing unique tag: '.$sTagName);
- }
- return $oNode;
- }
-
- /**
- * Helper to browse the DOM -could be factorized in ModelFactory
- * Returns the node directly under the given node, or null is missing
- */
- protected function GetOptionalElement($oDOMNode, $sTagName)
- {
- return $this->GetUniqueElement($oDOMNode, $sTagName, false);
- }
-
-
- /**
- * Helper to browse the DOM -could be factorized in ModelFactory
- * Returns the TEXT of the given node (possibly from several subnodes)
- */
- protected function GetNodeText($oNode)
- {
- $sText = '';
- foreach($oNode->childNodes as $oChildNode)
- {
- if ($oChildNode instanceof DOMCharacterData) // Base class of DOMText and DOMCdataSection
- {
- $sText .= $oChildNode->wholeText;
- }
- }
- return $sText;
- }
-
- /**
- * Helper to browse the DOM -could be factorized in ModelFactory
- * Assumes the given node to be either a text or
- * <items>
- * <item [key]="..."]>value<item>
- * <item [key]="..."]>value<item>
- * </items>
- * where value can be the either a text or an array of items... recursively
- * Returns a PHP array
- */
- public function GetNodeAsArrayOfItems($oNode)
- {
- $oItems = $this->GetOptionalElement($oNode, 'items');
- if ($oItems)
- {
- $res = array();
- foreach($oItems->childNodes as $oItem)
- {
- // When an attribute is missing
- if ($oItem->hasAttribute('key'))
- {
- $key = $oItem->getAttribute('key');
- $res[$key] = $this->GetNodeAsArrayOfItems($oItem);
- }
- else
- {
- $res[] = $this->GetNodeAsArrayOfItems($oItem);
- }
- }
- }
- else
- {
- $res = $this->GetNodeText($oNode);
- }
- return $res;
- }
-
- }
|