mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
- code refactoring to generalize attributes based on an OQL expression (friendly name, obsolescence flag, ....). The intermediate class AttributeComputedFieldVoid has been swept in favor of the use of a new method: IsBasedOnOQLExpresssion. - added an introspection API (experimental), allowing an external application to request for information about the capabilities of the framework (first step: list attributes and their main characteristics) SVN:trunk[4720]
94 lines
3.0 KiB
PHP
94 lines
3.0 KiB
PHP
<?php
|
|
// Copyright (C) 2017 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/>
|
|
|
|
/**
|
|
* Usage:
|
|
* require_once(...'introspection.class.inc.php');
|
|
*/
|
|
|
|
require_once('attributedef.class.inc.php');
|
|
|
|
class Introspection
|
|
{
|
|
protected $aAttributeHierarchy = array(); // class => child classes
|
|
protected $aAttributes = array();
|
|
|
|
public function __construct()
|
|
{
|
|
$this->InitAttributes();
|
|
}
|
|
|
|
protected function InitAttributes()
|
|
{
|
|
foreach(get_declared_classes() as $sPHPClass)
|
|
{
|
|
$oRefClass = new ReflectionClass($sPHPClass);
|
|
if ($sPHPClass == 'AttributeDefinition' || $oRefClass->isSubclassOf('AttributeDefinition'))
|
|
{
|
|
if ($oParentClass = $oRefClass->getParentClass())
|
|
{
|
|
$sParentClass = $oParentClass->getName();
|
|
if (!array_key_exists($sParentClass, $this->aAttributeHierarchy))
|
|
{
|
|
$this->aAttributeHierarchy[$sParentClass] = array();
|
|
}
|
|
$this->aAttributeHierarchy[$sParentClass][] = $sPHPClass;
|
|
}
|
|
else
|
|
{
|
|
$sParentClass = null;
|
|
}
|
|
$this->aAttributes[$sPHPClass] = array(
|
|
'parent' => $sParentClass,
|
|
'LoadInObject' => $sPHPClass::LoadInObject(),
|
|
'LoadFromDB' => $sPHPClass::LoadFromDB(),
|
|
'IsBasedOnDBColumns' => $sPHPClass::IsBasedOnDBColumns(),
|
|
'IsBasedOnOQLExpression' => $sPHPClass::IsBasedOnOQLExpression(),
|
|
'IsExternalField' => $sPHPClass::IsExternalField(),
|
|
'IsScalar' => $sPHPClass::IsScalar(),
|
|
'IsLinkset' => $sPHPClass::IsLinkset(),
|
|
'IsHierarchicalKey' => $sPHPClass::IsHierarchicalKey(),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
public function GetAttributes()
|
|
{
|
|
return $this->aAttributes;
|
|
}
|
|
public function GetAttributeHierarchy()
|
|
{
|
|
return $this->aAttributeHierarchy;
|
|
}
|
|
public function EnumAttributeCharacteristics()
|
|
{
|
|
return array(
|
|
'LoadInObject' => 'Is the value stored in the object itself?',
|
|
'LoadFromDB' => 'Is the value read from the DB?',
|
|
'IsBasedOnDBColumns' => 'Is this a value stored within one or several columns?',
|
|
'IsBasedOnOQLExpression' => 'Is this a value computed after other attributes, by the mean of an OQL expression?',
|
|
'IsExternalField' => 'Is this a value stored on a related object (external key)?',
|
|
'IsScalar' => 'Is this a value that makes sense in a SQL/OQL expression?',
|
|
'IsLinkset' => 'Is this a collection (1-N or N-N)?',
|
|
'IsHierarchicalKey' => 'Is this attribute an external key pointing to the host class?',
|
|
);
|
|
}
|
|
}
|
|
|
|
|