metamodel.class.php 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. /**
  17. * Metamodel
  18. *
  19. * @author Erwan Taloc <erwan.taloc@combodo.com>
  20. * @author Romain Quetiez <romain.quetiez@combodo.com>
  21. * @author Denis Flaven <denis.flaven@combodo.com>
  22. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  23. */
  24. // #@# todo: change into class const (see Doctrine)
  25. // Doctrine example
  26. // class toto
  27. // {
  28. // /**
  29. // * VERSION
  30. // */
  31. // const VERSION = '1.0.0';
  32. // }
  33. /**
  34. * add some description here...
  35. *
  36. * @package iTopORM
  37. */
  38. define('ENUM_CHILD_CLASSES_EXCLUDETOP', 1);
  39. /**
  40. * add some description here...
  41. *
  42. * @package iTopORM
  43. */
  44. define('ENUM_CHILD_CLASSES_ALL', 2);
  45. /**
  46. * Specifies that this attribute is hidden in that state
  47. *
  48. * @package iTopORM
  49. */
  50. define('OPT_ATT_HIDDEN', 1);
  51. /**
  52. * Specifies that this attribute is not editable in that state
  53. *
  54. * @package iTopORM
  55. */
  56. define('OPT_ATT_READONLY', 2);
  57. /**
  58. * Specifieds that the attribute must be set (different than default value?) when arriving into that state
  59. *
  60. * @package iTopORM
  61. */
  62. define('OPT_ATT_MANDATORY', 4);
  63. /**
  64. * Specifies that the attribute must change when arriving into that state
  65. *
  66. * @package iTopORM
  67. */
  68. define('OPT_ATT_MUSTCHANGE', 8);
  69. /**
  70. * Specifies that the attribute must be proposed when arriving into that state
  71. *
  72. * @package iTopORM
  73. */
  74. define('OPT_ATT_MUSTPROMPT', 16);
  75. /**
  76. * (API) The objects definitions as well as their mapping to the database
  77. *
  78. * @package iTopORM
  79. */
  80. abstract class MetaModel
  81. {
  82. ///////////////////////////////////////////////////////////////////////////
  83. //
  84. // STATIC Members
  85. //
  86. ///////////////////////////////////////////////////////////////////////////
  87. // Purpose: workaround the following limitation = PHP5 does not allow to know the class (derived from the current one)
  88. // from which a static function is called (__CLASS__ and self are interpreted during parsing)
  89. private static function GetCallersPHPClass($sExpectedFunctionName = null)
  90. {
  91. //var_dump(debug_backtrace());
  92. $aBacktrace = debug_backtrace();
  93. // $aBacktrace[0] is where we are
  94. // $aBacktrace[1] is the caller of GetCallersPHPClass
  95. // $aBacktrace[1] is the info we want
  96. if (!empty($sExpectedFunctionName))
  97. {
  98. assert('$aBacktrace[2]["function"] == $sExpectedFunctionName');
  99. }
  100. return $aBacktrace[2]["class"];
  101. }
  102. // Static init -why and how it works
  103. //
  104. // We found the following limitations:
  105. //- it is not possible to define non scalar constants
  106. //- it is not possible to declare a static variable as '= new myclass()'
  107. // Then we had do propose this model, in which a derived (non abstract)
  108. // class should implement Init(), to call InheritAttributes or AddAttribute.
  109. private static function _check_subclass($sClass)
  110. {
  111. // See also IsValidClass()... ???? #@#
  112. // class is mandatory
  113. // (it is not possible to guess it when called as myderived::...)
  114. if (!array_key_exists($sClass, self::$m_aClassParams))
  115. {
  116. throw new CoreException("Unknown class '$sClass', expected a value in {".implode(', ', array_keys(self::$m_aClassParams))."}");
  117. }
  118. }
  119. public static function static_var_dump()
  120. {
  121. var_dump(get_class_vars(__CLASS__));
  122. }
  123. private static $m_bDebugQuery = false;
  124. private static $m_iStackDepthRef = 0;
  125. public static function StartDebugQuery()
  126. {
  127. $aBacktrace = debug_backtrace();
  128. self::$m_iStackDepthRef = count($aBacktrace);
  129. self::$m_bDebugQuery = true;
  130. }
  131. public static function StopDebugQuery()
  132. {
  133. self::$m_bDebugQuery = false;
  134. }
  135. public static function DbgTrace($value)
  136. {
  137. if (!self::$m_bDebugQuery) return;
  138. $aBacktrace = debug_backtrace();
  139. $iCallStackPos = count($aBacktrace) - self::$m_bDebugQuery;
  140. $sIndent = "";
  141. for ($i = 0 ; $i < $iCallStackPos ; $i++)
  142. {
  143. $sIndent .= " .-=^=-. ";
  144. }
  145. $aCallers = array();
  146. foreach($aBacktrace as $aStackInfo)
  147. {
  148. $aCallers[] = $aStackInfo["function"];
  149. }
  150. $sCallers = "Callstack: ".implode(', ', $aCallers);
  151. $sFunction = "<b title=\"$sCallers\">".$aBacktrace[1]["function"]."</b>";
  152. if (is_string($value))
  153. {
  154. echo "$sIndent$sFunction: $value<br/>\n";
  155. }
  156. else if (is_object($value))
  157. {
  158. echo "$sIndent$sFunction:\n<pre>\n";
  159. print_r($value);
  160. echo "</pre>\n";
  161. }
  162. else
  163. {
  164. echo "$sIndent$sFunction: $value<br/>\n";
  165. }
  166. }
  167. private static $m_bTraceQueries = true;
  168. private static $m_aQueriesLog = array();
  169. private static $m_bLogIssue = false;
  170. private static $m_bLogNotification = false;
  171. private static $m_bLogWebService = false;
  172. public static function IsLogEnabledIssue()
  173. {
  174. return self::$m_bLogIssue;
  175. }
  176. public static function IsLogEnabledNotification()
  177. {
  178. return self::$m_bLogNotification;
  179. }
  180. public static function IsLogEnabledWebService()
  181. {
  182. return self::$m_bLogWebService;
  183. }
  184. private static $m_sDBName = "";
  185. private static $m_sTablePrefix = ""; // table prefix for the current application instance (allow several applications on the same DB)
  186. private static $m_Category2Class = array();
  187. private static $m_aRootClasses = array(); // array of "classname" => "rootclass"
  188. private static $m_aParentClasses = array(); // array of ("classname" => array of "parentclass")
  189. private static $m_aChildClasses = array(); // array of ("classname" => array of "childclass")
  190. private static $m_aClassParams = array(); // array of ("classname" => array of class information)
  191. static public function GetParentPersistentClass($sRefClass)
  192. {
  193. $sClass = get_parent_class($sRefClass);
  194. if (!$sClass) return '';
  195. if ($sClass == 'DBObject') return ''; // Warning: __CLASS__ is lower case in my version of PHP
  196. // Note: the UI/business model may implement pure PHP classes (intermediate layers)
  197. if (array_key_exists($sClass, self::$m_aClassParams))
  198. {
  199. return $sClass;
  200. }
  201. return self::GetParentPersistentClass($sClass);
  202. }
  203. final static public function GetName($sClass)
  204. {
  205. self::_check_subclass($sClass);
  206. $sStringCode = 'Class:'.$sClass;
  207. return Dict::S($sStringCode, $sClass);
  208. }
  209. final static public function GetName_Obsolete($sClass)
  210. {
  211. // Written for compatibility with a data model written prior to version 0.9.1
  212. self::_check_subclass($sClass);
  213. if (array_key_exists('name', self::$m_aClassParams[$sClass]))
  214. {
  215. return self::$m_aClassParams[$sClass]['name'];
  216. }
  217. else
  218. {
  219. return self::GetName($sClass);
  220. }
  221. }
  222. final static public function GetCategory($sClass)
  223. {
  224. self::_check_subclass($sClass);
  225. return self::$m_aClassParams[$sClass]["category"];
  226. }
  227. final static public function HasCategory($sClass, $sCategory)
  228. {
  229. self::_check_subclass($sClass);
  230. return (strpos(self::$m_aClassParams[$sClass]["category"], $sCategory) !== false);
  231. }
  232. final static public function GetClassDescription($sClass)
  233. {
  234. self::_check_subclass($sClass);
  235. $sStringCode = 'Class:'.$sClass.'+';
  236. return Dict::S($sStringCode, '');
  237. }
  238. final static public function GetClassDescription_Obsolete($sClass)
  239. {
  240. // Written for compatibility with a data model written prior to version 0.9.1
  241. self::_check_subclass($sClass);
  242. if (array_key_exists('description', self::$m_aClassParams[$sClass]))
  243. {
  244. return self::$m_aClassParams[$sClass]['description'];
  245. }
  246. else
  247. {
  248. return self::GetClassDescription($sClass);
  249. }
  250. }
  251. final static public function IsAutoIncrementKey($sClass)
  252. {
  253. self::_check_subclass($sClass);
  254. return (self::$m_aClassParams[$sClass]["key_type"] == "autoincrement");
  255. }
  256. final static public function GetKeyLabel($sClass)
  257. {
  258. self::_check_subclass($sClass);
  259. return self::$m_aClassParams[$sClass]["key_label"];
  260. }
  261. final static public function GetNameAttributeCode($sClass)
  262. {
  263. self::_check_subclass($sClass);
  264. return self::$m_aClassParams[$sClass]["name_attcode"];
  265. }
  266. final static public function GetStateAttributeCode($sClass)
  267. {
  268. self::_check_subclass($sClass);
  269. return self::$m_aClassParams[$sClass]["state_attcode"];
  270. }
  271. final static public function GetDefaultState($sClass)
  272. {
  273. $sDefaultState = '';
  274. $sStateAttrCode = self::GetStateAttributeCode($sClass);
  275. if (!empty($sStateAttrCode))
  276. {
  277. $oStateAttrDef = self::GetAttributeDef($sClass, $sStateAttrCode);
  278. $sDefaultState = $oStateAttrDef->GetDefaultValue();
  279. }
  280. return $sDefaultState;
  281. }
  282. final static public function GetReconcKeys($sClass)
  283. {
  284. self::_check_subclass($sClass);
  285. return self::$m_aClassParams[$sClass]["reconc_keys"];
  286. }
  287. final static public function GetDisplayTemplate($sClass)
  288. {
  289. self::_check_subclass($sClass);
  290. return self::$m_aClassParams[$sClass]["display_template"];
  291. }
  292. final static public function GetAttributeOrigin($sClass, $sAttCode)
  293. {
  294. self::_check_subclass($sClass);
  295. return self::$m_aAttribOrigins[$sClass][$sAttCode];
  296. }
  297. final static public function GetPrequisiteAttributes($sClass, $sAttCode)
  298. {
  299. self::_check_subclass($sClass);
  300. $oAtt = self::GetAttributeDef($sClass, $sAttCode);
  301. // Temporary implementation: later, we might be able to compute
  302. // the dependencies, based on the attributes definition
  303. // (allowed values and default values)
  304. if ($oAtt->IsWritable())
  305. {
  306. return $oAtt->GetPrerequisiteAttributes();
  307. }
  308. else
  309. {
  310. return array();
  311. }
  312. }
  313. /**
  314. * Find all attributes that depend on the specified one (reverse of GetPrequisiteAttributes)
  315. * @param string $sClass Name of the class
  316. * @param string $sAttCode Code of the attributes
  317. * @return Array List of attribute codes that depend on the given attribute, empty array if none.
  318. */
  319. final static public function GetDependentAttributes($sClass, $sAttCode)
  320. {
  321. $aResults = array();
  322. self::_check_subclass($sClass);
  323. foreach (self::ListAttributeDefs($sClass) as $sDependentAttCode=>$void)
  324. {
  325. $aPrerequisites = self::GetPrequisiteAttributes($sClass, $sDependentAttCode);
  326. if (in_array($sAttCode, $aPrerequisites))
  327. {
  328. $aResults[] = $sDependentAttCode;
  329. }
  330. }
  331. return $aResults;
  332. }
  333. // #@# restore to private ?
  334. final static public function DBGetTable($sClass, $sAttCode = null)
  335. {
  336. self::_check_subclass($sClass);
  337. if (empty($sAttCode) || ($sAttCode == "id"))
  338. {
  339. $sTableRaw = self::$m_aClassParams[$sClass]["db_table"];
  340. if (empty($sTableRaw))
  341. {
  342. // return an empty string whenever the table is undefined, meaning that there is no table associated to this 'abstract' class
  343. return '';
  344. }
  345. else
  346. {
  347. return self::$m_sTablePrefix.$sTableRaw;
  348. }
  349. }
  350. // This attribute has been inherited (compound objects)
  351. return self::DBGetTable(self::$m_aAttribOrigins[$sClass][$sAttCode]);
  352. }
  353. final static protected function DBEnumTables()
  354. {
  355. // This API do not rely on our capability to query the DB and retrieve
  356. // the list of existing tables
  357. // Rather, it uses the list of expected tables, corresponding to the data model
  358. $aTables = array();
  359. foreach (self::GetClasses() as $sClass)
  360. {
  361. if (!self::HasTable($sClass)) continue;
  362. $sTable = self::DBGetTable($sClass);
  363. // Could be completed later with all the classes that are using a given table
  364. if (!array_key_exists($sTable, $aTables))
  365. {
  366. $aTables[$sTable] = array();
  367. }
  368. $aTables[$sTable][] = $sClass;
  369. }
  370. return $aTables;
  371. }
  372. final static public function DBGetKey($sClass)
  373. {
  374. self::_check_subclass($sClass);
  375. return self::$m_aClassParams[$sClass]["db_key_field"];
  376. }
  377. final static public function DBGetClassField($sClass)
  378. {
  379. self::_check_subclass($sClass);
  380. return self::$m_aClassParams[$sClass]["db_finalclass_field"];
  381. }
  382. final static public function IsStandaloneClass($sClass)
  383. {
  384. self::_check_subclass($sClass);
  385. if (count(self::$m_aChildClasses[$sClass]) == 0)
  386. {
  387. if (count(self::$m_aParentClasses[$sClass]) == 0)
  388. {
  389. return true;
  390. }
  391. }
  392. return false;
  393. }
  394. final static public function IsParentClass($sParentClass, $sChildClass)
  395. {
  396. self::_check_subclass($sChildClass);
  397. self::_check_subclass($sParentClass);
  398. if (in_array($sParentClass, self::$m_aParentClasses[$sChildClass])) return true;
  399. if ($sChildClass == $sParentClass) return true;
  400. return false;
  401. }
  402. final static public function IsSameFamilyBranch($sClassA, $sClassB)
  403. {
  404. self::_check_subclass($sClassA);
  405. self::_check_subclass($sClassB);
  406. if (in_array($sClassA, self::$m_aParentClasses[$sClassB])) return true;
  407. if (in_array($sClassB, self::$m_aParentClasses[$sClassA])) return true;
  408. if ($sClassA == $sClassB) return true;
  409. return false;
  410. }
  411. final static public function IsSameFamily($sClassA, $sClassB)
  412. {
  413. self::_check_subclass($sClassA);
  414. self::_check_subclass($sClassB);
  415. return (self::GetRootClass($sClassA) == self::GetRootClass($sClassB));
  416. }
  417. // Attributes of a given class may contain attributes defined in a parent class
  418. // - Some attributes are a copy of the definition
  419. // - Some attributes correspond to the upper class table definition (compound objects)
  420. // (see also filters definition)
  421. private static $m_aAttribDefs = array(); // array of ("classname" => array of attributes)
  422. private static $m_aAttribOrigins = array(); // array of ("classname" => array of ("attcode"=>"sourceclass"))
  423. private static $m_aExtKeyFriends = array(); // array of ("classname" => array of ("indirect ext key attcode"=> array of ("relative ext field")))
  424. final static public function ListAttributeDefs($sClass)
  425. {
  426. self::_check_subclass($sClass);
  427. return self::$m_aAttribDefs[$sClass];
  428. }
  429. final public static function GetAttributesList($sClass)
  430. {
  431. self::_check_subclass($sClass);
  432. return array_keys(self::$m_aAttribDefs[$sClass]);
  433. }
  434. final public static function GetFiltersList($sClass)
  435. {
  436. self::_check_subclass($sClass);
  437. return array_keys(self::$m_aFilterDefs[$sClass]);
  438. }
  439. final public static function GetKeysList($sClass)
  440. {
  441. self::_check_subclass($sClass);
  442. $aExtKeys = array();
  443. foreach(self::$m_aAttribDefs[$sClass] as $sAttCode => $oAttDef)
  444. {
  445. if ($oAttDef->IsExternalKey())
  446. {
  447. $aExtKeys[] = $sAttCode;
  448. }
  449. }
  450. return $aExtKeys;
  451. }
  452. final static public function IsValidKeyAttCode($sClass, $sAttCode)
  453. {
  454. if (!array_key_exists($sClass, self::$m_aAttribDefs)) return false;
  455. if (!array_key_exists($sAttCode, self::$m_aAttribDefs[$sClass])) return false;
  456. return (self::$m_aAttribDefs[$sClass][$sAttCode]->IsExternalKey());
  457. }
  458. final static public function IsValidAttCode($sClass, $sAttCode)
  459. {
  460. if (!array_key_exists($sClass, self::$m_aAttribDefs)) return false;
  461. return (array_key_exists($sAttCode, self::$m_aAttribDefs[$sClass]));
  462. }
  463. final static public function IsAttributeOrigin($sClass, $sAttCode)
  464. {
  465. return (self::$m_aAttribOrigins[$sClass][$sAttCode] == $sClass);
  466. }
  467. final static public function IsValidFilterCode($sClass, $sFilterCode)
  468. {
  469. if (!array_key_exists($sClass, self::$m_aFilterDefs)) return false;
  470. return (array_key_exists($sFilterCode, self::$m_aFilterDefs[$sClass]));
  471. }
  472. public static function IsValidClass($sClass)
  473. {
  474. return (array_key_exists($sClass, self::$m_aAttribDefs));
  475. }
  476. public static function IsValidObject($oObject)
  477. {
  478. if (!is_object($oObject)) return false;
  479. return (self::IsValidClass(get_class($oObject)));
  480. }
  481. public static function IsReconcKey($sClass, $sAttCode)
  482. {
  483. return (in_array($sAttCode, self::GetReconcKeys($sClass)));
  484. }
  485. final static public function GetAttributeDef($sClass, $sAttCode)
  486. {
  487. self::_check_subclass($sClass);
  488. return self::$m_aAttribDefs[$sClass][$sAttCode];
  489. }
  490. final static public function GetExternalKeys($sClass)
  491. {
  492. $aExtKeys = array();
  493. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAtt)
  494. {
  495. if ($oAtt->IsExternalKey())
  496. {
  497. $aExtKeys[$sAttCode] = $oAtt;
  498. }
  499. }
  500. return $aExtKeys;
  501. }
  502. final static public function GetLinkedSets($sClass)
  503. {
  504. $aLinkedSets = array();
  505. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAtt)
  506. {
  507. if (is_subclass_of($oAtt, 'AttributeLinkedSet'))
  508. {
  509. $aLinkedSets[$sAttCode] = $oAtt;
  510. }
  511. }
  512. return $aLinkedSets;
  513. }
  514. final static public function GetExternalFields($sClass, $sKeyAttCode)
  515. {
  516. $aExtFields = array();
  517. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAtt)
  518. {
  519. if ($oAtt->IsExternalField() && ($oAtt->GetKeyAttCode() == $sKeyAttCode))
  520. {
  521. $aExtFields[] = $oAtt;
  522. }
  523. }
  524. return $aExtFields;
  525. }
  526. final static public function GetExtKeyFriends($sClass, $sExtKeyAttCode)
  527. {
  528. if (array_key_exists($sExtKeyAttCode, self::$m_aExtKeyFriends[$sClass]))
  529. {
  530. return self::$m_aExtKeyFriends[$sClass][$sExtKeyAttCode];
  531. }
  532. else
  533. {
  534. return array();
  535. }
  536. }
  537. public static function GetLabel($sClass, $sAttCode)
  538. {
  539. $oAttDef = self::GetAttributeDef($sClass, $sAttCode);
  540. if ($oAttDef) return $oAttDef->GetLabel();
  541. return "";
  542. }
  543. public static function GetDescription($sClass, $sAttCode)
  544. {
  545. $oAttDef = self::GetAttributeDef($sClass, $sAttCode);
  546. if ($oAttDef) return $oAttDef->GetDescription();
  547. return "";
  548. }
  549. // Filters of a given class may contain filters defined in a parent class
  550. // - Some filters are a copy of the definition
  551. // - Some filters correspond to the upper class table definition (compound objects)
  552. // (see also attributes definition)
  553. private static $m_aFilterDefs = array(); // array of ("classname" => array filterdef)
  554. private static $m_aFilterOrigins = array(); // array of ("classname" => array of ("attcode"=>"sourceclass"))
  555. public static function GetClassFilterDefs($sClass)
  556. {
  557. self::_check_subclass($sClass);
  558. return self::$m_aFilterDefs[$sClass];
  559. }
  560. final static public function GetClassFilterDef($sClass, $sFilterCode)
  561. {
  562. self::_check_subclass($sClass);
  563. return self::$m_aFilterDefs[$sClass][$sFilterCode];
  564. }
  565. public static function GetFilterLabel($sClass, $sFilterCode)
  566. {
  567. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  568. if ($oFilter) return $oFilter->GetLabel();
  569. return "";
  570. }
  571. public static function GetFilterDescription($sClass, $sFilterCode)
  572. {
  573. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  574. if ($oFilter) return $oFilter->GetDescription();
  575. return "";
  576. }
  577. // returns an array of opcode=>oplabel (e.g. "differs from")
  578. public static function GetFilterOperators($sClass, $sFilterCode)
  579. {
  580. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  581. if ($oFilter) return $oFilter->GetOperators();
  582. return array();
  583. }
  584. // returns an opcode
  585. public static function GetFilterLooseOperator($sClass, $sFilterCode)
  586. {
  587. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  588. if ($oFilter) return $oFilter->GetLooseOperator();
  589. return array();
  590. }
  591. public static function GetFilterOpDescription($sClass, $sFilterCode, $sOpCode)
  592. {
  593. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  594. if ($oFilter) return $oFilter->GetOpDescription($sOpCode);
  595. return "";
  596. }
  597. public static function GetFilterHTMLInput($sFilterCode)
  598. {
  599. return "<INPUT name=\"$sFilterCode\">";
  600. }
  601. // Lists of attributes/search filters
  602. //
  603. private static $m_aListInfos = array(); // array of ("listcode" => various info on the list, common to every classes)
  604. private static $m_aListData = array(); // array of ("classname" => array of "listcode" => list)
  605. // list may be an array of attcode / fltcode
  606. // list may be an array of "groupname" => (array of attcode / fltcode)
  607. public static function EnumZLists()
  608. {
  609. return array_keys(self::$m_aListInfos);
  610. }
  611. final static public function GetZListInfo($sListCode)
  612. {
  613. return self::$m_aListInfos[$sListCode];
  614. }
  615. public static function GetZListItems($sClass, $sListCode)
  616. {
  617. if (array_key_exists($sClass, self::$m_aListData))
  618. {
  619. if (array_key_exists($sListCode, self::$m_aListData[$sClass]))
  620. {
  621. return self::$m_aListData[$sClass][$sListCode];
  622. }
  623. }
  624. $sParentClass = self::GetParentPersistentClass($sClass);
  625. if (empty($sParentClass)) return array(); // nothing for the mother of all classes
  626. // Dig recursively
  627. return self::GetZListItems($sParentClass, $sListCode);
  628. }
  629. public static function IsAttributeInZList($sClass, $sListCode, $sAttCodeOrFltCode, $sGroup = null)
  630. {
  631. $aZList = self::GetZListItems($sClass, $sListCode);
  632. if (!$sGroup)
  633. {
  634. return (in_array($sAttCodeOrFltCode, $aZList));
  635. }
  636. return (in_array($sAttCodeOrFltCode, $aZList[$sGroup]));
  637. }
  638. //
  639. // Relations
  640. //
  641. private static $m_aRelationInfos = array(); // array of ("relcode" => various info on the list, common to every classes)
  642. public static function EnumRelations()
  643. {
  644. return array_keys(self::$m_aRelationInfos);
  645. }
  646. public static function EnumRelationProperties($sRelCode)
  647. {
  648. MyHelpers::CheckKeyInArray('relation code', $sRelCode, self::$m_aRelationInfos);
  649. return self::$m_aRelationInfos[$sRelCode];
  650. }
  651. final static public function GetRelationProperty($sRelCode, $sProperty)
  652. {
  653. MyHelpers::CheckKeyInArray('relation code', $sRelCode, self::$m_aRelationInfos);
  654. MyHelpers::CheckKeyInArray('relation property', $sProperty, self::$m_aRelationInfos[$sRelCode]);
  655. return self::$m_aRelationInfos[$sRelCode][$sProperty];
  656. }
  657. public static function EnumRelationQueries($sClass, $sRelCode)
  658. {
  659. MyHelpers::CheckKeyInArray('relation code', $sRelCode, self::$m_aRelationInfos);
  660. return call_user_func_array(array($sClass, 'GetRelationQueries'), array($sRelCode));
  661. }
  662. //
  663. // Object lifecycle model
  664. //
  665. private static $m_aStates = array(); // array of ("classname" => array of "statecode"=>array('label'=>..., 'description'=>..., attribute_inherit=> attribute_list=>...))
  666. private static $m_aStimuli = array(); // array of ("classname" => array of ("stimuluscode"=>array('label'=>..., 'description'=>...)))
  667. private static $m_aTransitions = array(); // array of ("classname" => array of ("statcode_from"=>array of ("stimuluscode" => array('target_state'=>..., 'actions'=>array of handlers procs, 'user_restriction'=>TBD)))
  668. public static function EnumStates($sClass)
  669. {
  670. if (array_key_exists($sClass, self::$m_aStates))
  671. {
  672. return self::$m_aStates[$sClass];
  673. }
  674. else
  675. {
  676. return array();
  677. }
  678. }
  679. public static function EnumStimuli($sClass)
  680. {
  681. if (array_key_exists($sClass, self::$m_aStimuli))
  682. {
  683. return self::$m_aStimuli[$sClass];
  684. }
  685. else
  686. {
  687. return array();
  688. }
  689. }
  690. public static function GetStateLabel($sClass, $sStateValue)
  691. {
  692. $sStateAttrCode = self::GetStateAttributeCode($sClass);
  693. return Dict::S("Class:$sClass/Attribute:$sStateAttrCode/Value:$sStateValue", $sStateValue);
  694. // I've decided the current implementation, because I need
  695. // to get the description as well -GetAllowedValues does not render the description,
  696. // so far...
  697. // Could have been implemented the following way (not tested
  698. // $oStateAttrDef = self::GetAttributeDef($sClass, $sStateAttrCode);
  699. // $aAllowedValues = $oStateAttrDef->GetAllowedValues();
  700. // return $aAllowedValues[$sStateValue];
  701. }
  702. public static function GetStateDescription($sClass, $sStateValue)
  703. {
  704. $sStateAttrCode = self::GetStateAttributeCode($sClass);
  705. return Dict::S("Class:$sClass/Attribute:$sStateAttrCode/Value:$sStateValue+", '');
  706. }
  707. public static function EnumTransitions($sClass, $sStateCode)
  708. {
  709. if (array_key_exists($sClass, self::$m_aTransitions))
  710. {
  711. if (array_key_exists($sStateCode, self::$m_aTransitions[$sClass]))
  712. {
  713. return self::$m_aTransitions[$sClass][$sStateCode];
  714. }
  715. }
  716. return array();
  717. }
  718. public static function GetAttributeFlags($sClass, $sState, $sAttCode)
  719. {
  720. $iFlags = 0; // By default (if no life cycle) no flag at all
  721. $sStateAttCode = self::GetStateAttributeCode($sClass);
  722. if (!empty($sStateAttCode))
  723. {
  724. $aStates = MetaModel::EnumStates($sClass);
  725. if (!array_key_exists($sState, $aStates))
  726. {
  727. throw new CoreException("Invalid state '$sState' for class '$sClass', expecting a value in {".implode(', ', array_keys($aStates))."}");
  728. }
  729. $aCurrentState = $aStates[$sState];
  730. if ( (array_key_exists('attribute_list', $aCurrentState)) && (array_key_exists($sAttCode, $aCurrentState['attribute_list'])) )
  731. {
  732. $iFlags = $aCurrentState['attribute_list'][$sAttCode];
  733. }
  734. }
  735. return $iFlags;
  736. }
  737. //
  738. // Allowed values
  739. //
  740. public static function GetAllowedValues_att($sClass, $sAttCode, $aArgs = array(), $sBeginsWith = '')
  741. {
  742. $oAttDef = self::GetAttributeDef($sClass, $sAttCode);
  743. return $oAttDef->GetAllowedValues($aArgs, $sBeginsWith);
  744. }
  745. public static function GetAllowedValues_flt($sClass, $sFltCode, $aArgs = array(), $sBeginsWith = '')
  746. {
  747. $oFltDef = self::GetClassFilterDef($sClass, $sFltCode);
  748. return $oFltDef->GetAllowedValues($aArgs, $sBeginsWith);
  749. }
  750. //
  751. // Businezz model declaration verbs (should be static)
  752. //
  753. public static function RegisterZList($sListCode, $aListInfo)
  754. {
  755. // Check mandatory params
  756. $aMandatParams = array(
  757. "description" => "detailed (though one line) description of the list",
  758. "type" => "attributes | filters",
  759. );
  760. foreach($aMandatParams as $sParamName=>$sParamDesc)
  761. {
  762. if (!array_key_exists($sParamName, $aListInfo))
  763. {
  764. throw new CoreException("Declaration of list $sListCode - missing parameter $sParamName");
  765. }
  766. }
  767. self::$m_aListInfos[$sListCode] = $aListInfo;
  768. }
  769. public static function RegisterRelation($sRelCode, $aRelationInfo)
  770. {
  771. // Check mandatory params
  772. $aMandatParams = array(
  773. "description" => "detailed (though one line) description of the list",
  774. "verb_down" => "e.g.: 'impacts'",
  775. "verb_up" => "e.g.: 'is impacted by'",
  776. );
  777. foreach($aMandatParams as $sParamName=>$sParamDesc)
  778. {
  779. if (!array_key_exists($sParamName, $aRelationInfo))
  780. {
  781. throw new CoreException("Declaration of relation $sRelCode - missing parameter $sParamName");
  782. }
  783. }
  784. self::$m_aRelationInfos[$sRelCode] = $aRelationInfo;
  785. }
  786. // Must be called once and only once...
  787. public static function InitClasses($sTablePrefix)
  788. {
  789. if (count(self::GetClasses()) > 0)
  790. {
  791. throw new CoreException("InitClasses should not be called more than once -skipped");
  792. return;
  793. }
  794. self::$m_sTablePrefix = $sTablePrefix;
  795. foreach(get_declared_classes() as $sPHPClass) {
  796. if (is_subclass_of($sPHPClass, 'DBObject'))
  797. {
  798. if (method_exists($sPHPClass, 'Init'))
  799. {
  800. call_user_func(array($sPHPClass, 'Init'));
  801. }
  802. }
  803. }
  804. foreach (self::GetClasses() as $sClass)
  805. {
  806. self::$m_aExtKeyFriends[$sClass] = array();
  807. foreach (self::$m_aAttribDefs[$sClass] as $sAttCode => $oAttDef)
  808. {
  809. // Compute the filter codes
  810. //
  811. foreach ($oAttDef->GetFilterDefinitions() as $sFilterCode => $oFilterDef)
  812. {
  813. self::$m_aFilterDefs[$sClass][$sFilterCode] = $oFilterDef;
  814. }
  815. if ($oAttDef->IsExternalField())
  816. {
  817. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  818. $oKeyDef = self::GetAttributeDef($sClass, $sKeyAttCode);
  819. self::$m_aFilterOrigins[$sClass][$sFilterCode] = $oKeyDef->GetTargetClass();
  820. }
  821. else
  822. {
  823. self::$m_aFilterOrigins[$sClass][$sFilterCode] = self::$m_aAttribOrigins[$sClass][$sAttCode];
  824. }
  825. // Compute the fields that will be used to display a pointer to another object
  826. //
  827. if ($oAttDef->IsExternalKey(EXTKEY_ABSOLUTE))
  828. {
  829. // oAttDef is either
  830. // - an external KEY / FIELD (direct),
  831. // - an external field pointing to an external KEY / FIELD
  832. // - an external field pointing to an external field pointing to....
  833. // Get the real external key attribute
  834. // It will be our reference to determine the other ext fields related to the same ext key
  835. $oFinalKeyAttDef = $oAttDef->GetKeyAttDef(EXTKEY_ABSOLUTE);
  836. self::$m_aExtKeyFriends[$sClass][$sAttCode] = array();
  837. foreach (self::GetExternalFields($sClass, $oAttDef->GetKeyAttCode($sAttCode)) as $oExtField)
  838. {
  839. // skip : those extfields will be processed as external keys
  840. if ($oExtField->IsExternalKey(EXTKEY_ABSOLUTE)) continue;
  841. // Note: I could not compare the objects by the mean of '==='
  842. // because they are copied for the inheritance, and the internal references are NOT updated
  843. if ($oExtField->GetKeyAttDef(EXTKEY_ABSOLUTE) == $oFinalKeyAttDef)
  844. {
  845. self::$m_aExtKeyFriends[$sClass][$sAttCode][$oExtField->GetCode()] = $oExtField;
  846. }
  847. }
  848. }
  849. }
  850. // Add a 'id' filter
  851. //
  852. if (array_key_exists('id', self::$m_aAttribDefs[$sClass]))
  853. {
  854. throw new CoreException("Class $sClass, 'id' is a reserved keyword, it cannot be used as an attribute code");
  855. }
  856. if (array_key_exists('id', self::$m_aFilterDefs[$sClass]))
  857. {
  858. throw new CoreException("Class $sClass, 'id' is a reserved keyword, it cannot be used as a filter code");
  859. }
  860. $oFilter = new FilterPrivateKey('id', array('id_field' => self::DBGetKey($sClass)));
  861. self::$m_aFilterDefs[$sClass]['id'] = $oFilter;
  862. self::$m_aFilterOrigins[$sClass]['id'] = $sClass;
  863. // Define defaults values for the standard ZLists
  864. //
  865. //foreach (self::$m_aListInfos as $sListCode => $aListConfig)
  866. //{
  867. // if (!isset(self::$m_aListData[$sClass][$sListCode]))
  868. // {
  869. // $aAllAttributes = array_keys(self::$m_aAttribDefs[$sClass]);
  870. // self::$m_aListData[$sClass][$sListCode] = $aAllAttributes;
  871. // //echo "<p>$sClass: $sListCode (".count($aAllAttributes)." attributes)</p>\n";
  872. // }
  873. //}
  874. }
  875. // Add a 'class' attribute/filter to the root classes and their children
  876. //
  877. foreach(self::EnumRootClasses() as $sRootClass)
  878. {
  879. if (self::IsStandaloneClass($sRootClass)) continue;
  880. $sDbFinalClassField = self::DBGetClassField($sRootClass);
  881. if (strlen($sDbFinalClassField) == 0)
  882. {
  883. $sDbFinalClassField = 'finalclass';
  884. self::$m_aClassParams[$sClass]["db_finalclass_field"] = 'finalclass';
  885. }
  886. $oClassAtt = new AttributeFinalClass('finalclass', array(
  887. "sql"=>$sDbFinalClassField,
  888. "default_value"=>$sRootClass,
  889. "is_null_allowed"=>false,
  890. "depends_on"=>array()
  891. ));
  892. $oClassAtt->SetHostClass($sRootClass);
  893. self::$m_aAttribDefs[$sRootClass]['finalclass'] = $oClassAtt;
  894. self::$m_aAttribOrigins[$sRootClass]['finalclass'] = $sRootClass;
  895. $oClassFlt = new FilterFromAttribute($oClassAtt);
  896. self::$m_aFilterDefs[$sRootClass]['finalclass'] = $oClassFlt;
  897. self::$m_aFilterOrigins[$sRootClass]['finalclass'] = $sRootClass;
  898. foreach(self::EnumChildClasses($sRootClass, ENUM_CHILD_CLASSES_EXCLUDETOP) as $sChildClass)
  899. {
  900. if (array_key_exists('finalclass', self::$m_aAttribDefs[$sChildClass]))
  901. {
  902. throw new CoreException("Class $sChildClass, 'finalclass' is a reserved keyword, it cannot be used as an attribute code");
  903. }
  904. if (array_key_exists('finalclass', self::$m_aFilterDefs[$sChildClass]))
  905. {
  906. throw new CoreException("Class $sChildClass, 'finalclass' is a reserved keyword, it cannot be used as a filter code");
  907. }
  908. $oCloned = clone $oClassAtt;
  909. $oCloned->SetFixedValue($sChildClass);
  910. self::$m_aAttribDefs[$sChildClass]['finalclass'] = $oCloned;
  911. self::$m_aAttribOrigins[$sChildClass]['finalclass'] = $sRootClass;
  912. $oClassFlt = new FilterFromAttribute($oClassAtt);
  913. self::$m_aFilterDefs[$sChildClass]['finalclass'] = $oClassFlt;
  914. self::$m_aFilterOrigins[$sChildClass]['finalclass'] = self::GetRootClass($sChildClass);
  915. }
  916. }
  917. }
  918. // To be overriden, must be called for any object class (optimization)
  919. public static function Init()
  920. {
  921. // In fact it is an ABSTRACT function, but this is not compatible with the fact that it is STATIC (error in E_STRICT interpretation)
  922. }
  923. // To be overloaded by biz model declarations
  924. public static function GetRelationQueries($sRelCode)
  925. {
  926. // In fact it is an ABSTRACT function, but this is not compatible with the fact that it is STATIC (error in E_STRICT interpretation)
  927. return array();
  928. }
  929. public static function Init_Params($aParams)
  930. {
  931. // Check mandatory params
  932. $aMandatParams = array(
  933. "category" => "group classes by modules defining their visibility in the UI",
  934. "key_type" => "autoincrement | string",
  935. "key_label" => "if set, then display the key as an attribute",
  936. "name_attcode" => "define wich attribute is the class name, may be an inherited attribute",
  937. "state_attcode" => "define wich attribute is representing the state (object lifecycle)",
  938. "reconc_keys" => "define the attributes that will 'almost uniquely' identify an object in batch processes",
  939. "db_table" => "database table",
  940. "db_key_field" => "database field which is the key",
  941. "db_finalclass_field" => "database field wich is the reference to the actual class of the object, considering that this will be a compound class",
  942. );
  943. $sClass = self::GetCallersPHPClass("Init");
  944. foreach($aMandatParams as $sParamName=>$sParamDesc)
  945. {
  946. if (!array_key_exists($sParamName, $aParams))
  947. {
  948. throw new CoreException("Declaration of class $sClass - missing parameter $sParamName");
  949. }
  950. }
  951. $aCategories = explode(',', $aParams['category']);
  952. foreach ($aCategories as $sCategory)
  953. {
  954. self::$m_Category2Class[$sCategory][] = $sClass;
  955. }
  956. self::$m_Category2Class[''][] = $sClass; // all categories, include this one
  957. self::$m_aRootClasses[$sClass] = $sClass; // first, let consider that I am the root... updated on inheritance
  958. self::$m_aParentClasses[$sClass] = array();
  959. self::$m_aChildClasses[$sClass] = array();
  960. self::$m_aClassParams[$sClass]= $aParams;
  961. self::$m_aAttribDefs[$sClass] = array();
  962. self::$m_aAttribOrigins[$sClass] = array();
  963. self::$m_aExtKeyFriends[$sClass] = array();
  964. self::$m_aFilterDefs[$sClass] = array();
  965. self::$m_aFilterOrigins[$sClass] = array();
  966. }
  967. protected static function object_array_mergeclone($aSource1, $aSource2)
  968. {
  969. $aRes = array();
  970. foreach ($aSource1 as $key=>$object)
  971. {
  972. $aRes[$key] = clone $object;
  973. }
  974. foreach ($aSource2 as $key=>$object)
  975. {
  976. $aRes[$key] = clone $object;
  977. }
  978. return $aRes;
  979. }
  980. public static function Init_InheritAttributes($sSourceClass = null)
  981. {
  982. $sTargetClass = self::GetCallersPHPClass("Init");
  983. if (empty($sSourceClass))
  984. {
  985. // Default: inherit from parent class
  986. $sSourceClass = self::GetParentPersistentClass($sTargetClass);
  987. if (empty($sSourceClass)) return; // no attributes for the mother of all classes
  988. }
  989. if (isset(self::$m_aAttribDefs[$sSourceClass]))
  990. {
  991. if (!isset(self::$m_aAttribDefs[$sTargetClass]))
  992. {
  993. self::$m_aAttribDefs[$sTargetClass] = array();
  994. self::$m_aAttribOrigins[$sTargetClass] = array();
  995. }
  996. self::$m_aAttribDefs[$sTargetClass] = self::object_array_mergeclone(self::$m_aAttribDefs[$sTargetClass], self::$m_aAttribDefs[$sSourceClass]);
  997. self::$m_aAttribOrigins[$sTargetClass] = array_merge(self::$m_aAttribOrigins[$sTargetClass], self::$m_aAttribOrigins[$sSourceClass]);
  998. }
  999. // Build root class information
  1000. if (array_key_exists($sSourceClass, self::$m_aRootClasses))
  1001. {
  1002. // Inherit...
  1003. self::$m_aRootClasses[$sTargetClass] = self::$m_aRootClasses[$sSourceClass];
  1004. }
  1005. else
  1006. {
  1007. // This class will be the root class
  1008. self::$m_aRootClasses[$sSourceClass] = $sSourceClass;
  1009. self::$m_aRootClasses[$sTargetClass] = $sSourceClass;
  1010. }
  1011. self::$m_aParentClasses[$sTargetClass] += self::$m_aParentClasses[$sSourceClass];
  1012. self::$m_aParentClasses[$sTargetClass][] = $sSourceClass;
  1013. // I am the child of each and every parent...
  1014. foreach(self::$m_aParentClasses[$sTargetClass] as $sAncestorClass)
  1015. {
  1016. self::$m_aChildClasses[$sAncestorClass][] = $sTargetClass;
  1017. }
  1018. }
  1019. public static function Init_OverloadAttributeParams($sAttCode, $aParams)
  1020. {
  1021. $sTargetClass = self::GetCallersPHPClass("Init");
  1022. if (!self::IsValidAttCode($sTargetClass, $sAttCode))
  1023. {
  1024. throw new CoreException("Could not overload '$sAttCode', expecting a code from {".implode(", ", self::GetAttributesList($sTargetClass))."}");
  1025. }
  1026. self::$m_aAttribDefs[$sTargetClass][$sAttCode]->OverloadParams($aParams);
  1027. }
  1028. public static function Init_AddAttribute(AttributeDefinition $oAtt)
  1029. {
  1030. $sTargetClass = self::GetCallersPHPClass("Init");
  1031. self::$m_aAttribDefs[$sTargetClass][$oAtt->GetCode()] = $oAtt;
  1032. self::$m_aAttribOrigins[$sTargetClass][$oAtt->GetCode()] = $sTargetClass;
  1033. // Note: it looks redundant to put targetclass there, but a mix occurs when inheritance is used
  1034. // Specific case of external fields:
  1035. // I wanted to simplify the syntax of the declaration of objects in the biz model
  1036. // Therefore, the reference to the host class is set there
  1037. $oAtt->SetHostClass($sTargetClass);
  1038. }
  1039. public static function Init_SetZListItems($sListCode, $aItems)
  1040. {
  1041. MyHelpers::CheckKeyInArray('list code', $sListCode, self::$m_aListInfos);
  1042. $sTargetClass = self::GetCallersPHPClass("Init");
  1043. self::$m_aListData[$sTargetClass][$sListCode] = $aItems;
  1044. }
  1045. public static function Init_DefineState($sStateCode, $aStateDef)
  1046. {
  1047. $sTargetClass = self::GetCallersPHPClass("Init");
  1048. if (is_null($aStateDef['attribute_list'])) $aStateDef['attribute_list'] = array();
  1049. $sParentState = $aStateDef['attribute_inherit'];
  1050. if (!empty($sParentState))
  1051. {
  1052. // Inherit from the given state (must be defined !)
  1053. $aToInherit = self::$m_aStates[$sTargetClass][$sParentState];
  1054. // The inherited configuration could be overriden
  1055. $aStateDef['attribute_list'] = array_merge($aToInherit, $aStateDef['attribute_list']);
  1056. }
  1057. self::$m_aStates[$sTargetClass][$sStateCode] = $aStateDef;
  1058. // by default, create an empty set of transitions associated to that state
  1059. self::$m_aTransitions[$sTargetClass][$sStateCode] = array();
  1060. }
  1061. public static function Init_DefineStimulus($oStimulus)
  1062. {
  1063. $sTargetClass = self::GetCallersPHPClass("Init");
  1064. self::$m_aStimuli[$sTargetClass][$oStimulus->GetCode()] = $oStimulus;
  1065. // I wanted to simplify the syntax of the declaration of objects in the biz model
  1066. // Therefore, the reference to the host class is set there
  1067. $oStimulus->SetHostClass($sTargetClass);
  1068. }
  1069. public static function Init_DefineTransition($sStateCode, $sStimulusCode, $aTransitionDef)
  1070. {
  1071. $sTargetClass = self::GetCallersPHPClass("Init");
  1072. if (is_null($aTransitionDef['actions'])) $aTransitionDef['actions'] = array();
  1073. self::$m_aTransitions[$sTargetClass][$sStateCode][$sStimulusCode] = $aTransitionDef;
  1074. }
  1075. public static function Init_InheritLifecycle($sSourceClass = '')
  1076. {
  1077. $sTargetClass = self::GetCallersPHPClass("Init");
  1078. if (empty($sSourceClass))
  1079. {
  1080. // Default: inherit from parent class
  1081. $sSourceClass = self::GetParentPersistentClass($sTargetClass);
  1082. if (empty($sSourceClass)) return; // no attributes for the mother of all classes
  1083. }
  1084. self::$m_aClassParams[$sTargetClass]["state_attcode"] = self::$m_aClassParams[$sSourceClass]["state_attcode"];
  1085. self::$m_aStates[$sTargetClass] = clone self::$m_aStates[$sSourceClass];
  1086. self::$m_aStimuli[$sTargetClass] = clone self::$m_aStimuli[$sSourceClass];
  1087. self::$m_aTransitions[$sTargetClass] = clone self::$m_aTransitions[$sSourceClass];
  1088. }
  1089. //
  1090. // Static API
  1091. //
  1092. public static function GetRootClass($sClass = null)
  1093. {
  1094. self::_check_subclass($sClass);
  1095. return self::$m_aRootClasses[$sClass];
  1096. }
  1097. public static function IsRootClass($sClass)
  1098. {
  1099. self::_check_subclass($sClass);
  1100. return (self::GetRootClass($sClass) == $sClass);
  1101. }
  1102. public static function EnumRootClasses()
  1103. {
  1104. return array_unique(self::$m_aRootClasses);
  1105. }
  1106. public static function EnumParentClasses($sClass)
  1107. {
  1108. self::_check_subclass($sClass);
  1109. return self::$m_aParentClasses[$sClass];
  1110. }
  1111. public static function EnumChildClasses($sClass, $iOption = ENUM_CHILD_CLASSES_EXCLUDETOP)
  1112. {
  1113. self::_check_subclass($sClass);
  1114. $aRes = self::$m_aChildClasses[$sClass];
  1115. if ($iOption != ENUM_CHILD_CLASSES_EXCLUDETOP)
  1116. {
  1117. // Add it to the list
  1118. $aRes[] = $sClass;
  1119. }
  1120. return $aRes;
  1121. }
  1122. public static function EnumCategories()
  1123. {
  1124. return array_keys(self::$m_Category2Class);
  1125. }
  1126. // Note: use EnumChildClasses to take the compound objects into account
  1127. public static function GetSubclasses($sClass)
  1128. {
  1129. self::_check_subclass($sClass);
  1130. $aSubClasses = array();
  1131. foreach(get_declared_classes() as $sSubClass) {
  1132. if (is_subclass_of($sSubClass, $sClass))
  1133. {
  1134. $aSubClasses[] = $sSubClass;
  1135. }
  1136. }
  1137. return $aSubClasses;
  1138. }
  1139. public static function GetClasses($sCategory = '')
  1140. {
  1141. if (array_key_exists($sCategory, self::$m_Category2Class))
  1142. {
  1143. return self::$m_Category2Class[$sCategory];
  1144. }
  1145. if (count(self::$m_Category2Class) > 0)
  1146. {
  1147. throw new CoreException("unkown class category '$sCategory', expecting a value in {".implode(', ', array_keys(self::$m_Category2Class))."}");
  1148. }
  1149. return array();
  1150. }
  1151. public static function HasTable($sClass)
  1152. {
  1153. if (strlen(self::DBGetTable($sClass)) == 0) return false;
  1154. return true;
  1155. }
  1156. public static function IsAbstract($sClass)
  1157. {
  1158. $oReflection = new ReflectionClass($sClass);
  1159. return $oReflection->isAbstract();
  1160. }
  1161. protected static $m_aQueryStructCache = array();
  1162. protected static function PrepareQueryArguments($aArgs)
  1163. {
  1164. // Translate any object into scalars
  1165. //
  1166. $aScalarArgs = array();
  1167. foreach($aArgs as $sArgName => $value)
  1168. {
  1169. if (self::IsValidObject($value))
  1170. {
  1171. $aScalarArgs = array_merge($aScalarArgs, $value->ToArgs($sArgName));
  1172. }
  1173. else
  1174. {
  1175. $aScalarArgs[$sArgName] = (string) $value;
  1176. }
  1177. }
  1178. // Add standard contextual arguments
  1179. //
  1180. $aScalarArgs['current_contact_id'] = UserRights::GetContactId();
  1181. return $aScalarArgs;
  1182. }
  1183. public static function MakeSelectQuery(DBObjectSearch $oFilter, $aOrderBy = array(), $aArgs = array())
  1184. {
  1185. // Query caching
  1186. //
  1187. $bQueryCacheEnabled = true;
  1188. $aParams = array();
  1189. $sOqlQuery = $oFilter->ToOql($aParams); // Render with arguments in clear
  1190. if ($bQueryCacheEnabled)
  1191. {
  1192. if (array_key_exists($sOqlQuery, self::$m_aQueryStructCache))
  1193. {
  1194. // hit!
  1195. $oSelect = clone self::$m_aQueryStructCache[$sOqlQuery];
  1196. }
  1197. }
  1198. if (!isset($oSelect))
  1199. {
  1200. $aTranslation = array();
  1201. $aClassAliases = array();
  1202. $aTableAliases = array();
  1203. $oConditionTree = $oFilter->GetCriteria();
  1204. $oSelect = self::MakeQuery($oFilter->GetSelectedClasses(), $oConditionTree, $aClassAliases, $aTableAliases, $aTranslation, $oFilter);
  1205. self::$m_aQueryStructCache[$sOqlQuery] = clone $oSelect;
  1206. }
  1207. // Check the order by specification, and prefix with the class alias
  1208. //
  1209. $aOrderSpec = array();
  1210. foreach ($aOrderBy as $sFieldAlias => $bAscending)
  1211. {
  1212. MyHelpers::CheckValueInArray('field name in ORDER BY spec', $sFieldAlias, self::GetAttributesList($oFilter->GetFirstJoinedClass()));
  1213. if (!is_bool($bAscending))
  1214. {
  1215. throw new CoreException("Wrong direction in ORDER BY spec, found '$bAscending' and expecting a boolean value");
  1216. }
  1217. $aOrderSpec[$oFilter->GetFirstJoinedClassAlias().$sFieldAlias] = $bAscending;
  1218. }
  1219. // By default, force the name attribute to be the ordering key
  1220. //
  1221. if (empty($aOrderSpec))
  1222. {
  1223. foreach ($oFilter->GetSelectedClasses() as $sSelectedAlias => $sSelectedClass)
  1224. {
  1225. $sNameAttCode = self::GetNameAttributeCode($sSelectedClass);
  1226. if (!empty($sNameAttCode))
  1227. {
  1228. // By default, simply order on the "name" attribute, ascending
  1229. $aOrderSpec[$sSelectedAlias.$sNameAttCode] = true;
  1230. }
  1231. }
  1232. }
  1233. // Go
  1234. //
  1235. $aScalarArgs = array_merge(self::PrepareQueryArguments($aArgs), $oFilter->GetInternalParams());
  1236. try
  1237. {
  1238. $sRes = $oSelect->RenderSelect($aOrderSpec, $aScalarArgs);
  1239. }
  1240. catch (MissingQueryArgument $e)
  1241. {
  1242. // Add some information...
  1243. $e->addInfo('OQL', $sOqlQuery);
  1244. throw $e;
  1245. }
  1246. if (self::$m_bTraceQueries)
  1247. {
  1248. $aParams = array();
  1249. if (!array_key_exists($sOqlQuery, self::$m_aQueriesLog))
  1250. {
  1251. self::$m_aQueriesLog[$sOqlQuery] = array(
  1252. 'sql' => array(),
  1253. 'count' => 0,
  1254. );
  1255. }
  1256. self::$m_aQueriesLog[$sOqlQuery]['count']++;
  1257. self::$m_aQueriesLog[$sOqlQuery]['sql'][] = $sRes;
  1258. }
  1259. return $sRes;
  1260. }
  1261. public static function ShowQueryTrace()
  1262. {
  1263. $iTotal = 0;
  1264. foreach (self::$m_aQueriesLog as $sOql => $aQueryData)
  1265. {
  1266. echo "<h2>$sOql</h2>\n";
  1267. $iTotal += $aQueryData['count'];
  1268. echo '<p>'.$aQueryData['count'].'</p>';
  1269. echo '<p>Example: '.$aQueryData['sql'][0].'</p>';
  1270. }
  1271. echo "<h2>Total</h2>\n";
  1272. echo "<p>Count of executed queries: $iTotal</p>";
  1273. echo "<p>Count of built queries: ".count(self::$m_aQueriesLog)."</p>";
  1274. }
  1275. public static function MakeDeleteQuery(DBObjectSearch $oFilter, $aArgs = array())
  1276. {
  1277. $aTranslation = array();
  1278. $aClassAliases = array();
  1279. $aTableAliases = array();
  1280. $oConditionTree = $oFilter->GetCriteria();
  1281. $oSelect = self::MakeQuery($oFilter->GetSelectedClasses(), $oConditionTree, $aClassAliases, $aTableAliases, $aTranslation, $oFilter);
  1282. $aScalarArgs = array_merge(self::PrepareQueryArguments($aArgs), $oFilter->GetInternalParams());
  1283. return $oSelect->RenderDelete($aScalarArgs);
  1284. }
  1285. public static function MakeUpdateQuery(DBObjectSearch $oFilter, $aValues, $aArgs = array())
  1286. {
  1287. // $aValues is an array of $sAttCode => $value
  1288. $aTranslation = array();
  1289. $aClassAliases = array();
  1290. $aTableAliases = array();
  1291. $oConditionTree = $oFilter->GetCriteria();
  1292. $oSelect = self::MakeQuery($oFilter->GetSelectedClasses(), $oConditionTree, $aClassAliases, $aTableAliases, $aTranslation, $oFilter, array(), $aValues);
  1293. $aScalarArgs = array_merge(self::PrepareQueryArguments($aArgs), $oFilter->GetInternalParams());
  1294. return $oSelect->RenderUpdate($aScalarArgs);
  1295. }
  1296. private static function MakeQuery($aSelectedClasses, &$oConditionTree, &$aClassAliases, &$aTableAliases, &$aTranslation, DBObjectSearch $oFilter, $aExpectedAtts = array(), $aValues = array())
  1297. {
  1298. // Note: query class might be different than the class of the filter
  1299. // -> this occurs when we are linking our class to an external class (referenced by, or pointing to)
  1300. // $aExpectedAtts is an array of sAttCode=>array of columns
  1301. $sClass = $oFilter->GetFirstJoinedClass();
  1302. $sClassAlias = $oFilter->GetFirstJoinedClassAlias();
  1303. $bIsOnQueriedClass = array_key_exists($sClassAlias, $aSelectedClasses);
  1304. if ($bIsOnQueriedClass)
  1305. {
  1306. $aClassAliases = array_merge($aClassAliases, $oFilter->GetJoinedClasses());
  1307. }
  1308. self::DbgTrace("Entering: ".$oFilter->ToOQL().", ".($bIsOnQueriedClass ? "MAIN" : "SECONDARY").", expectedatts=".count($aExpectedAtts).": ".implode(",", array_keys($aExpectedAtts)));
  1309. $sRootClass = self::GetRootClass($sClass);
  1310. $sKeyField = self::DBGetKey($sClass);
  1311. if ($bIsOnQueriedClass)
  1312. {
  1313. // default to the whole list of attributes + the very std id/finalclass
  1314. $aExpectedAtts['id'][] = $sClassAlias.'id';
  1315. foreach (self::GetAttributesList($sClass) as $sAttCode)
  1316. {
  1317. $aExpectedAtts[$sAttCode][] = $sClassAlias.$sAttCode; // alias == class and attcode
  1318. }
  1319. }
  1320. // Compute a clear view of external keys, and external attributes
  1321. // Build the list of external keys:
  1322. // -> ext keys required by a closed join ???
  1323. // -> ext keys mentionned in a 'pointing to' condition
  1324. // -> ext keys required for an external field
  1325. //
  1326. $aExtKeys = array(); // array of sTableClass => array of (sAttCode (keys) => array of (sAttCode (fields)=> oAttDef))
  1327. //
  1328. // Optimization: could be computed once for all (cached)
  1329. // Could be done in MakeQuerySingleTable ???
  1330. //
  1331. if ($bIsOnQueriedClass)
  1332. {
  1333. // Get all Ext keys for the queried class (??)
  1334. foreach(self::GetKeysList($sClass) as $sKeyAttCode)
  1335. {
  1336. $sKeyTableClass = self::$m_aAttribOrigins[$sClass][$sKeyAttCode];
  1337. $aExtKeys[$sKeyTableClass][$sKeyAttCode] = array();
  1338. }
  1339. }
  1340. // Get all Ext keys used by the filter
  1341. foreach ($oFilter->GetCriteria_PointingTo() as $sKeyAttCode => $trash)
  1342. {
  1343. $sKeyTableClass = self::$m_aAttribOrigins[$sClass][$sKeyAttCode];
  1344. $aExtKeys[$sKeyTableClass][$sKeyAttCode] = array();
  1345. }
  1346. // Add the ext fields used in the select (eventually adds an external key)
  1347. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  1348. {
  1349. if ($oAttDef->IsExternalField())
  1350. {
  1351. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  1352. if (array_key_exists($sAttCode, $aExpectedAtts) || $oConditionTree->RequiresField($sClassAlias, $sAttCode))
  1353. {
  1354. // Add the external attribute
  1355. $sKeyTableClass = self::$m_aAttribOrigins[$sClass][$sKeyAttCode];
  1356. $aExtKeys[$sKeyTableClass][$sKeyAttCode][$sAttCode] = $oAttDef;
  1357. }
  1358. }
  1359. }
  1360. // First query built upon on the leaf (ie current) class
  1361. //
  1362. self::DbgTrace("Main (=leaf) class, call MakeQuerySingleTable()");
  1363. if (self::HasTable($sClass))
  1364. {
  1365. $oSelectBase = self::MakeQuerySingleTable($aSelectedClasses, $oConditionTree, $aClassAliases, $aTableAliases, $aTranslation, $oFilter, $sClass, $aExpectedAtts, $aExtKeys, $aValues);
  1366. }
  1367. else
  1368. {
  1369. $oSelectBase = null;
  1370. // As the join will not filter on the expected classes, we have to specify it explicitely
  1371. $sExpectedClasses = implode("', '", self::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL));
  1372. $oFinalClassRestriction = Expression::FromOQL("`$sClassAlias`.finalclass IN ('$sExpectedClasses')");
  1373. $oConditionTree = $oConditionTree->LogAnd($oFinalClassRestriction);
  1374. }
  1375. // Then we join the queries of the eventual parent classes (compound model)
  1376. foreach(self::EnumParentClasses($sClass) as $sParentClass)
  1377. {
  1378. if (self::DBGetTable($sParentClass) == "") continue;
  1379. self::DbgTrace("Parent class: $sParentClass... let's call MakeQuerySingleTable()");
  1380. $oSelectParentTable = self::MakeQuerySingleTable($aSelectedClasses, $oConditionTree, $aClassAliases, $aTableAliases, $aTranslation, $oFilter, $sParentClass, $aExpectedAtts, $aExtKeys, $aValues);
  1381. if (is_null($oSelectBase))
  1382. {
  1383. $oSelectBase = $oSelectParentTable;
  1384. }
  1385. else
  1386. {
  1387. $oSelectBase->AddInnerJoin($oSelectParentTable, $sKeyField, self::DBGetKey($sParentClass));
  1388. }
  1389. }
  1390. // Filter on objects referencing me
  1391. foreach ($oFilter->GetCriteria_ReferencedBy() as $sForeignClass => $aKeysAndFilters)
  1392. {
  1393. foreach ($aKeysAndFilters as $sForeignKeyAttCode => $oForeignFilter)
  1394. {
  1395. $oForeignKeyAttDef = self::GetAttributeDef($sForeignClass, $sForeignKeyAttCode);
  1396. // We don't want any attribute from the foreign class, just filter on an inner join
  1397. $aExpAtts = array();
  1398. self::DbgTrace("Referenced by foreign key: $sForeignKeyAttCode... let's call MakeQuery()");
  1399. //self::DbgTrace($oForeignFilter);
  1400. //self::DbgTrace($oForeignFilter->ToOQL());
  1401. //self::DbgTrace($oSelectForeign);
  1402. //self::DbgTrace($oSelectForeign->RenderSelect(array()));
  1403. $oSelectForeign = self::MakeQuery($aSelectedClasses, $oConditionTree, $aClassAliases, $aTableAliases, $aTranslation, $oForeignFilter, $aExpAtts);
  1404. $sForeignClassAlias = $oForeignFilter->GetFirstJoinedClassAlias();
  1405. $sForeignKeyTable = $aTranslation[$sForeignClassAlias][$sForeignKeyAttCode][0];
  1406. $sForeignKeyColumn = $aTranslation[$sForeignClassAlias][$sForeignKeyAttCode][1];
  1407. $oSelectBase->AddInnerJoin($oSelectForeign, $sKeyField, $sForeignKeyColumn, $sForeignKeyTable);
  1408. }
  1409. }
  1410. // Filter on related objects
  1411. //
  1412. foreach ($oFilter->GetCriteria_RelatedTo() as $aCritInfo)
  1413. {
  1414. $oSubFilter = $aCritInfo['flt'];
  1415. $sRelCode = $aCritInfo['relcode'];
  1416. $iMaxDepth = $aCritInfo['maxdepth'];
  1417. // Get the starting point objects
  1418. $oStartSet = new CMDBObjectSet($oSubFilter);
  1419. // Get the objects related to those objects... recursively...
  1420. $aRelatedObjs = $oStartSet->GetRelatedObjects($sRelCode, $iMaxDepth);
  1421. $aRestriction = array_key_exists($sRootClass, $aRelatedObjs) ? $aRelatedObjs[$sRootClass] : array();
  1422. // #@# todo - related objects and expressions...
  1423. // Create condition
  1424. if (count($aRestriction) > 0)
  1425. {
  1426. $oSelectBase->AddCondition($sKeyField.' IN ('.implode(', ', CMDBSource::Quote(array_keys($aRestriction), true)).')');
  1427. }
  1428. else
  1429. {
  1430. // Quick N'dirty -> generate an empty set
  1431. $oSelectBase->AddCondition('false');
  1432. }
  1433. }
  1434. // Translate the conditions... and go
  1435. //
  1436. if ($bIsOnQueriedClass)
  1437. {
  1438. $oConditionTranslated = $oConditionTree->Translate($aTranslation);
  1439. $oSelectBase->SetCondition($oConditionTranslated);
  1440. }
  1441. // That's all... cross fingers and we'll get some working query
  1442. //MyHelpers::var_dump_html($oSelectBase, true);
  1443. //MyHelpers::var_dump_html($oSelectBase->RenderSelect(), true);
  1444. if (self::$m_bDebugQuery) $oSelectBase->DisplayHtml();
  1445. return $oSelectBase;
  1446. }
  1447. protected static function MakeQuerySingleTable($aSelectedClasses, &$oConditionTree, &$aClassAliases, &$aTableAliases, &$aTranslation, $oFilter, $sTableClass, $aExpectedAtts, $aExtKeys, $aValues)
  1448. {
  1449. // $aExpectedAtts is an array of sAttCode=>sAlias
  1450. // $aExtKeys is an array of sTableClass => array of (sAttCode (keys) => array of sAttCode (fields))
  1451. // Prepare the query for a single table (compound objects)
  1452. // Ignores the items (attributes/filters) that are not on the target table
  1453. // Perform an (inner or left) join for every external key (and specify the expected fields)
  1454. //
  1455. // Returns an SQLQuery
  1456. //
  1457. $sTargetClass = $oFilter->GetFirstJoinedClass();
  1458. $sTargetAlias = $oFilter->GetFirstJoinedClassAlias();
  1459. $sTable = self::DBGetTable($sTableClass);
  1460. $sTableAlias = self::GenerateUniqueAlias($aTableAliases, $sTargetAlias.'_'.$sTable, $sTable);
  1461. $bIsOnQueriedClass = array_key_exists($sTargetAlias, $aSelectedClasses);
  1462. self::DbgTrace("Entering: tableclass=$sTableClass, filter=".$oFilter->ToOQL().", ".($bIsOnQueriedClass ? "MAIN" : "SECONDARY").", expectedatts=".count($aExpectedAtts).": ".implode(",", array_keys($aExpectedAtts)));
  1463. // 1 - SELECT and UPDATE
  1464. //
  1465. // Note: no need for any values nor fields for foreign Classes (ie not the queried Class)
  1466. //
  1467. $aSelect = array();
  1468. $aUpdateValues = array();
  1469. // 1/a - Get the key
  1470. //
  1471. if ($bIsOnQueriedClass)
  1472. {
  1473. $aSelect[$aExpectedAtts['id'][0]] = new FieldExpression(self::DBGetKey($sTableClass), $sTableAlias);
  1474. }
  1475. // We need one pkey to be the key, let's take the one corresponding to the root class
  1476. // (used to be based on the leaf, but it may happen that this one has no table defined)
  1477. $sRootClass = self::GetRootClass($sTargetClass);
  1478. if ($sTableClass == $sRootClass)
  1479. {
  1480. $aTranslation[$sTargetAlias]['id'] = array($sTableAlias, self::DBGetKey($sTableClass));
  1481. }
  1482. // 1/b - Get the other attributes
  1483. //
  1484. foreach(self::ListAttributeDefs($sTableClass) as $sAttCode=>$oAttDef)
  1485. {
  1486. // Skip this attribute if not defined in this table
  1487. if (self::$m_aAttribOrigins[$sTargetClass][$sAttCode] != $sTableClass) continue;
  1488. // Skip this attribute if not writable (means that it does not correspond
  1489. if (count($oAttDef->GetSQLExpressions()) == 0) continue;
  1490. // Update...
  1491. //
  1492. if ($bIsOnQueriedClass && array_key_exists($sAttCode, $aValues))
  1493. {
  1494. assert ($oAttDef->IsDirectField());
  1495. foreach ($oAttDef->GetSQLValues($aValues[$sAttCode]) as $sColumn => $sValue)
  1496. {
  1497. $aUpdateValues[$sColumn] = $sValue;
  1498. }
  1499. }
  1500. // Select...
  1501. //
  1502. // Skip, if a list of fields has been specified and it is not there
  1503. if (!array_key_exists($sAttCode, $aExpectedAtts)) continue;
  1504. if ($oAttDef->IsExternalField())
  1505. {
  1506. // skip, this will be handled in the joined tables
  1507. }
  1508. else
  1509. {
  1510. // standard field, or external key
  1511. // add it to the output
  1512. foreach ($oAttDef->GetSQLExpressions() as $sColId => $sSQLExpr)
  1513. {
  1514. foreach ($aExpectedAtts[$sAttCode] as $sAttAlias)
  1515. {
  1516. $aSelect[$sAttAlias.$sColId] = new FieldExpression($sSQLExpr, $sTableAlias);
  1517. }
  1518. }
  1519. }
  1520. }
  1521. // 2 - WHERE
  1522. //
  1523. foreach(self::$m_aFilterDefs[$sTargetClass] as $sFltCode => $oFltAtt)
  1524. {
  1525. // Skip this filter if not defined in this table
  1526. if (self::$m_aFilterOrigins[$sTargetClass][$sFltCode] != $sTableClass) continue;
  1527. // #@# todo - aller plus loin... a savoir que la table de translation doit contenir une "Expression"
  1528. foreach($oFltAtt->GetSQLExpressions() as $sColID => $sFltExpr)
  1529. {
  1530. // Note: I did not test it with filters relying on several expressions...
  1531. // as long as sColdID is empty, this is working, otherwise... ?
  1532. $aTranslation[$sTargetAlias][$sFltCode.$sColID] = array($sTableAlias, $sFltExpr);
  1533. }
  1534. }
  1535. // #@# todo - See what a full text search condition should be
  1536. // 2' - WHERE / Full text search condition
  1537. //
  1538. if ($bIsOnQueriedClass)
  1539. {
  1540. $aFullText = $oFilter->GetCriteria_FullText();
  1541. }
  1542. else
  1543. {
  1544. // Pourquoi ???
  1545. $aFullText = array();
  1546. }
  1547. // 3 - The whole stuff, for this table only
  1548. //
  1549. $oSelectBase = new SQLQuery($sTable, $sTableAlias, $aSelect, null, $aFullText, $bIsOnQueriedClass, $aUpdateValues);
  1550. // 4 - The external keys -> joins...
  1551. //
  1552. if (array_key_exists($sTableClass, $aExtKeys))
  1553. {
  1554. foreach ($aExtKeys[$sTableClass] as $sKeyAttCode => $aExtFields)
  1555. {
  1556. $oKeyAttDef = self::GetAttributeDef($sTargetClass, $sKeyAttCode);
  1557. $oExtFilter = $oFilter->GetCriteria_PointingTo($sKeyAttCode);
  1558. // In case the join was not explicitely defined in the filter,
  1559. // we need to do it now
  1560. if (empty($oExtFilter))
  1561. {
  1562. $sKeyClass = $oKeyAttDef->GetTargetClass();
  1563. $sKeyClassAlias = self::GenerateUniqueAlias($aClassAliases, $sKeyClass.'_'.$sKeyAttCode, $sKeyClass);
  1564. $oExtFilter = new DBObjectSearch($sKeyClass, $sKeyClassAlias);
  1565. }
  1566. else
  1567. {
  1568. // The aliases should not conflict because normalization occured while building the filter
  1569. $sKeyClass = $oExtFilter->GetFirstJoinedClass();
  1570. $sKeyClassAlias = $oExtFilter->GetFirstJoinedClassAlias();
  1571. // Note: there is no search condition in $oExtFilter, because normalization did merge the condition onto the top of the filter tree
  1572. }
  1573. // Specify expected attributes for the target class query
  1574. // ... and use the current alias !
  1575. $aExpAtts = array();
  1576. $aIntermediateTranslation = array();
  1577. foreach($aExtFields as $sAttCode => $oAtt)
  1578. {
  1579. $sExtAttCode = $oAtt->GetExtAttCode();
  1580. if (array_key_exists($sAttCode, $aExpectedAtts))
  1581. {
  1582. // Request this attribute... transmit the alias !
  1583. $aExpAtts[$sExtAttCode] = $aExpectedAtts[$sAttCode];
  1584. }
  1585. // Translate mainclass.extfield => remoteclassalias.remotefieldcode
  1586. $oRemoteAttDef = self::GetAttributeDef($sKeyClass, $sExtAttCode);
  1587. foreach ($oRemoteAttDef->GetSQLExpressions() as $sColID => $sRemoteAttExpr)
  1588. {
  1589. $aIntermediateTranslation[$sTargetAlias.$sColID][$sAttCode] = array($sKeyClassAlias, $sRemoteAttExpr);
  1590. }
  1591. //#@# debug - echo "<p>$sTargetAlias.$sAttCode to $sKeyClassAlias.$sRemoteAttExpr (class: $sKeyClass)</p>\n";
  1592. }
  1593. $oConditionTree = $oConditionTree->Translate($aIntermediateTranslation, false);
  1594. self::DbgTrace("External key $sKeyAttCode (class: $sKeyClass), call MakeQuery()");
  1595. $oSelectExtKey = self::MakeQuery($aSelectedClasses, $oConditionTree, $aClassAliases, $aTableAliases, $aTranslation, $oExtFilter, $aExpAtts);
  1596. $sLocalKeyField = current($oKeyAttDef->GetSQLExpressions()); // get the first column for an external key
  1597. $sExternalKeyField = self::DBGetKey($sKeyClass);
  1598. self::DbgTrace("External key $sKeyAttCode, Join on $sLocalKeyField = $sExternalKeyField");
  1599. if ($oKeyAttDef->IsNullAllowed())
  1600. {
  1601. $oSelectBase->AddLeftJoin($oSelectExtKey, $sLocalKeyField, $sExternalKeyField);
  1602. }
  1603. else
  1604. {
  1605. $oSelectBase->AddInnerJoin($oSelectExtKey, $sLocalKeyField, $sExternalKeyField);
  1606. }
  1607. }
  1608. }
  1609. //MyHelpers::var_dump_html($oSelectBase->RenderSelect());
  1610. return $oSelectBase;
  1611. }
  1612. public static function GenerateUniqueAlias(&$aAliases, $sNewName, $sRealName)
  1613. {
  1614. if (!array_key_exists($sNewName, $aAliases))
  1615. {
  1616. $aAliases[$sNewName] = $sRealName;
  1617. return $sNewName;
  1618. }
  1619. for ($i = 1 ; $i < 100 ; $i++)
  1620. {
  1621. $sAnAlias = $sNewName.$i;
  1622. if (!array_key_exists($sAnAlias, $aAliases))
  1623. {
  1624. // Create that new alias
  1625. $aAliases[$sAnAlias] = $sRealName;
  1626. return $sAnAlias;
  1627. }
  1628. }
  1629. throw new CoreException('Failed to create an alias', array('aliases' => $aAliases, 'new'=>$sNewName));
  1630. }
  1631. public static function CheckDefinitions()
  1632. {
  1633. if (count(self::GetClasses()) == 0)
  1634. {
  1635. throw new CoreException("MetaModel::InitClasses() has not been called, or no class has been declared ?!?!");
  1636. }
  1637. $aErrors = array();
  1638. $aSugFix = array();
  1639. foreach (self::GetClasses() as $sClass)
  1640. {
  1641. $sNameAttCode = self::GetNameAttributeCode($sClass);
  1642. if (empty($sNameAttCode))
  1643. {
  1644. // let's try this !!!
  1645. // $aErrors[$sClass][] = "Missing value for name definition: the framework will (should...) replace it by the id";
  1646. // $aSugFix[$sClass][] = "Expecting a value in ".implode(", ", self::GetAttributesList($sClass));
  1647. }
  1648. else if(!self::IsValidAttCode($sClass, $sNameAttCode))
  1649. {
  1650. $aErrors[$sClass][] = "Unkown attribute code '".$sNameAttCode."' for the name definition";
  1651. $aSugFix[$sClass][] = "Expecting a value in ".implode(", ", self::GetAttributesList($sClass));
  1652. }
  1653. foreach(self::GetReconcKeys($sClass) as $sReconcKeyAttCode)
  1654. {
  1655. if (!empty($sReconcKeyAttCode) && !self::IsValidAttCode($sClass, $sReconcKeyAttCode))
  1656. {
  1657. $aErrors[$sClass][] = "Unkown attribute code '".$sReconcKeyAttCode."' in the list of reconciliation keys";
  1658. $aSugFix[$sClass][] = "Expecting a value in ".implode(", ", self::GetAttributesList($sClass));
  1659. }
  1660. }
  1661. $bHasWritableAttribute = false;
  1662. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  1663. {
  1664. // It makes no sense to check the attributes again and again in the subclasses
  1665. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  1666. if ($oAttDef->IsExternalKey())
  1667. {
  1668. if (!self::IsValidClass($oAttDef->GetTargetClass()))
  1669. {
  1670. $aErrors[$sClass][] = "Unkown class '".$oAttDef->GetTargetClass()."' for the external key '$sAttCode'";
  1671. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetClasses())."}";
  1672. }
  1673. }
  1674. elseif ($oAttDef->IsExternalField())
  1675. {
  1676. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  1677. if (!self::IsValidAttCode($sClass, $sKeyAttCode) || !self::IsValidKeyAttCode($sClass, $sKeyAttCode))
  1678. {
  1679. $aErrors[$sClass][] = "Unkown key attribute code '".$sKeyAttCode."' for the external field $sAttCode";
  1680. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetKeysList($sClass))."}";
  1681. }
  1682. else
  1683. {
  1684. $oKeyAttDef = self::GetAttributeDef($sClass, $sKeyAttCode);
  1685. $sTargetClass = $oKeyAttDef->GetTargetClass();
  1686. $sExtAttCode = $oAttDef->GetExtAttCode();
  1687. if (!self::IsValidAttCode($sTargetClass, $sExtAttCode))
  1688. {
  1689. $aErrors[$sClass][] = "Unkown key attribute code '".$sExtAttCode."' for the external field $sAttCode";
  1690. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetKeysList($sTargetClass))."}";
  1691. }
  1692. }
  1693. }
  1694. else // standard attributes
  1695. {
  1696. // Check that the default values definition is a valid object!
  1697. $oValSetDef = $oAttDef->GetValuesDef();
  1698. if (!is_null($oValSetDef) && !$oValSetDef instanceof ValueSetDefinition)
  1699. {
  1700. $aErrors[$sClass][] = "Allowed values for attribute $sAttCode is not of the relevant type";
  1701. $aSugFix[$sClass][] = "Please set it as an instance of a ValueSetDefinition object.";
  1702. }
  1703. else
  1704. {
  1705. // Default value must be listed in the allowed values (if defined)
  1706. $aAllowedValues = self::GetAllowedValues_att($sClass, $sAttCode);
  1707. if (!is_null($aAllowedValues))
  1708. {
  1709. $sDefaultValue = $oAttDef->GetDefaultValue();
  1710. if (!array_key_exists($sDefaultValue, $aAllowedValues))
  1711. {
  1712. $aErrors[$sClass][] = "Default value '".$sDefaultValue."' for attribute $sAttCode is not an allowed value";
  1713. $aSugFix[$sClass][] = "Please pickup the default value out of {'".implode(", ", array_keys($aAllowedValues))."'}";
  1714. }
  1715. }
  1716. }
  1717. }
  1718. // Check dependencies
  1719. if ($oAttDef->IsWritable())
  1720. {
  1721. $bHasWritableAttribute = true;
  1722. foreach ($oAttDef->GetPrerequisiteAttributes() as $sDependOnAttCode)
  1723. {
  1724. if (!self::IsValidAttCode($sClass, $sDependOnAttCode))
  1725. {
  1726. $aErrors[$sClass][] = "Unkown attribute code '".$sDependOnAttCode."' in the list of prerequisite attributes";
  1727. $aSugFix[$sClass][] = "Expecting a value in ".implode(", ", self::GetAttributesList($sClass));
  1728. }
  1729. }
  1730. }
  1731. }
  1732. foreach(self::GetClassFilterDefs($sClass) as $sFltCode=>$oFilterDef)
  1733. {
  1734. if (method_exists($oFilterDef, '__GetRefAttribute'))
  1735. {
  1736. $oAttDef = $oFilterDef->__GetRefAttribute();
  1737. if (!self::IsValidAttCode($sClass, $oAttDef->GetCode()))
  1738. {
  1739. $aErrors[$sClass][] = "Wrong attribute code '".$oAttDef->GetCode()."' (wrong class) for the \"basic\" filter $sFltCode";
  1740. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetAttributesList($sClass))."}";
  1741. }
  1742. }
  1743. }
  1744. // Lifecycle
  1745. //
  1746. $sStateAttCode = self::GetStateAttributeCode($sClass);
  1747. if (strlen($sStateAttCode) > 0)
  1748. {
  1749. // Lifecycle - check that the state attribute does exist as an attribute
  1750. if (!self::IsValidAttCode($sClass, $sStateAttCode))
  1751. {
  1752. $aErrors[$sClass][] = "Unkown attribute code '".$sStateAttCode."' for the state definition";
  1753. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetAttributesList($sClass))."}";
  1754. }
  1755. else
  1756. {
  1757. // Lifecycle - check that there is a value set constraint on the state attribute
  1758. $aAllowedValuesRaw = self::GetAllowedValues_att($sClass, $sStateAttCode);
  1759. $aStates = array_keys(self::EnumStates($sClass));
  1760. if (is_null($aAllowedValuesRaw))
  1761. {
  1762. $aErrors[$sClass][] = "Attribute '".$sStateAttCode."' will reflect the state of the object. It must be restricted to a set of values";
  1763. $aSugFix[$sClass][] = "Please define its allowed_values property as [new ValueSetEnum('".implode(", ", $aStates)."')]";
  1764. }
  1765. else
  1766. {
  1767. $aAllowedValues = array_keys($aAllowedValuesRaw);
  1768. // Lifecycle - check the the state attribute allowed values are defined states
  1769. foreach($aAllowedValues as $sValue)
  1770. {
  1771. if (!in_array($sValue, $aStates))
  1772. {
  1773. $aErrors[$sClass][] = "Attribute '".$sStateAttCode."' (object state) has an allowed value ($sValue) which is not a known state";
  1774. $aSugFix[$sClass][] = "You may define its allowed_values property as [new ValueSetEnum('".implode(", ", $aStates)."')], or reconsider the list of states";
  1775. }
  1776. }
  1777. // Lifecycle - check that defined states are allowed values
  1778. foreach($aStates as $sStateValue)
  1779. {
  1780. if (!in_array($sStateValue, $aAllowedValues))
  1781. {
  1782. $aErrors[$sClass][] = "Attribute '".$sStateAttCode."' (object state) has a state ($sStateValue) which is not an allowed value";
  1783. $aSugFix[$sClass][] = "You may define its allowed_values property as [new ValueSetEnum('".implode(", ", $aStates)."')], or reconsider the list of states";
  1784. }
  1785. }
  1786. }
  1787. // Lifcycle - check that the action handlers are defined
  1788. foreach (self::EnumStates($sClass) as $sStateCode => $aStateDef)
  1789. {
  1790. foreach(self::EnumTransitions($sClass, $sStateCode) as $sStimulusCode => $aTransitionDef)
  1791. {
  1792. foreach ($aTransitionDef['actions'] as $sActionHandler)
  1793. {
  1794. if (!method_exists($sClass, $sActionHandler))
  1795. {
  1796. $aErrors[$sClass][] = "Unknown function '$sActionHandler' in transition [$sStateCode/$sStimulusCode] for state attribute '$sStateAttCode'";
  1797. $aSugFix[$sClass][] = "Specify a function which prototype is in the form [public function $sActionHandler(\$sStimulusCode){return true;}]";
  1798. }
  1799. }
  1800. }
  1801. }
  1802. }
  1803. }
  1804. if ($bHasWritableAttribute)
  1805. {
  1806. if (!self::HasTable($sClass))
  1807. {
  1808. $aErrors[$sClass][] = "No table has been defined for this class";
  1809. $aSugFix[$sClass][] = "Either define a table name or move the attributes elsewhere";
  1810. }
  1811. }
  1812. // ZList
  1813. //
  1814. foreach(self::EnumZLists() as $sListCode)
  1815. {
  1816. foreach (self::GetZListItems($sClass, $sListCode) as $sMyAttCode)
  1817. {
  1818. if (!self::IsValidAttCode($sClass, $sMyAttCode))
  1819. {
  1820. $aErrors[$sClass][] = "Unkown attribute code '".$sMyAttCode."' from ZList '$sListCode'";
  1821. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetAttributesList($sClass))."}";
  1822. }
  1823. }
  1824. }
  1825. }
  1826. if (count($aErrors) > 0)
  1827. {
  1828. echo "<div style=\"width:100%;padding:10px;background:#FFAAAA;display:;\">";
  1829. echo "<h3>Business model inconsistencies have been found</h3>\n";
  1830. // #@# later -> this is the responsibility of the caller to format the output
  1831. foreach ($aErrors as $sClass => $aMessages)
  1832. {
  1833. echo "<p>Wrong declaration for class <b>$sClass</b></p>\n";
  1834. echo "<ul class=\"treeview\">\n";
  1835. $i = 0;
  1836. foreach ($aMessages as $sMsg)
  1837. {
  1838. echo "<li>$sMsg ({$aSugFix[$sClass][$i]})</li>\n";
  1839. $i++;
  1840. }
  1841. echo "</ul>\n";
  1842. }
  1843. echo "<p>Aborting...</p>\n";
  1844. echo "</div>\n";
  1845. exit;
  1846. }
  1847. }
  1848. public static function DBShowApplyForm($sRepairUrl, $sSQLStatementArgName, $aSQLFixes)
  1849. {
  1850. if (empty($sRepairUrl)) return;
  1851. // By design, some queries might be blank, we have to ignore them
  1852. $aCleanFixes = array();
  1853. foreach($aSQLFixes as $sSQLFix)
  1854. {
  1855. if (!empty($sSQLFix))
  1856. {
  1857. $aCleanFixes[] = $sSQLFix;
  1858. }
  1859. }
  1860. if (count($aCleanFixes) == 0) return;
  1861. echo "<form action=\"$sRepairUrl\" method=\"POST\">\n";
  1862. echo " <input type=\"hidden\" name=\"$sSQLStatementArgName\" value=\"".htmlentities(implode("##SEP##", $aCleanFixes))."\">\n";
  1863. echo " <input type=\"submit\" value=\" Apply changes (".count($aCleanFixes)." queries) \">\n";
  1864. echo "</form>\n";
  1865. }
  1866. public static function DBExists($bMustBeComplete = true)
  1867. {
  1868. // returns true if at least one table exists
  1869. //
  1870. if (!CMDBSource::IsDB(self::$m_sDBName))
  1871. {
  1872. return false;
  1873. }
  1874. CMDBSource::SelectDB(self::$m_sDBName);
  1875. $aFound = array();
  1876. $aMissing = array();
  1877. foreach (self::DBEnumTables() as $sTable => $aClasses)
  1878. {
  1879. if (CMDBSource::IsTable($sTable))
  1880. {
  1881. $aFound[] = $sTable;
  1882. }
  1883. else
  1884. {
  1885. $aMissing[] = $sTable;
  1886. }
  1887. }
  1888. if (count($aFound) == 0)
  1889. {
  1890. // no expected table has been found
  1891. return false;
  1892. }
  1893. else
  1894. {
  1895. if (count($aMissing) == 0)
  1896. {
  1897. // the database is complete (still, could be some fields missing!)
  1898. return true;
  1899. }
  1900. else
  1901. {
  1902. // not all the tables, could be an older version
  1903. if ($bMustBeComplete)
  1904. {
  1905. return false;
  1906. }
  1907. else
  1908. {
  1909. return true;
  1910. }
  1911. }
  1912. }
  1913. }
  1914. public static function DBDrop()
  1915. {
  1916. $bDropEntireDB = true;
  1917. if (!empty(self::$m_sTablePrefix))
  1918. {
  1919. // Do drop only tables corresponding to the sub-database (table prefix)
  1920. // then possibly drop the DB itself (if no table remain)
  1921. foreach (CMDBSource::EnumTables() as $sTable)
  1922. {
  1923. // perform a case insensitive test because on Windows the table names become lowercase :-(
  1924. if (strtolower(substr($sTable, 0, strlen(self::$m_sTablePrefix))) == strtolower(self::$m_sTablePrefix))
  1925. {
  1926. CMDBSource::DropTable($sTable);
  1927. }
  1928. else
  1929. {
  1930. // There is at least one table which is out of the scope of the current application
  1931. $bDropEntireDB = false;
  1932. }
  1933. }
  1934. }
  1935. if ($bDropEntireDB)
  1936. {
  1937. CMDBSource::DropDB(self::$m_sDBName);
  1938. }
  1939. }
  1940. public static function DBCreate()
  1941. {
  1942. // Note: we have to check if the DB does exist, because we may share the DB
  1943. // with other applications (in which case the DB does exist, not the tables with the given prefix)
  1944. if (!CMDBSource::IsDB(self::$m_sDBName))
  1945. {
  1946. CMDBSource::CreateDB(self::$m_sDBName);
  1947. }
  1948. self::DBCreateTables();
  1949. self::DBCreateViews();
  1950. }
  1951. protected static function DBCreateTables()
  1952. {
  1953. list($aErrors, $aSugFix) = self::DBCheckFormat();
  1954. $aSQL = array();
  1955. foreach ($aSugFix as $sClass => $aTarget)
  1956. {
  1957. foreach ($aTarget as $aQueries)
  1958. {
  1959. foreach ($aQueries as $sQuery)
  1960. {
  1961. if (!empty($sQuery))
  1962. {
  1963. //$aSQL[] = $sQuery;
  1964. // forces a refresh of cached information
  1965. CMDBSource::CreateTable($sQuery);
  1966. }
  1967. }
  1968. }
  1969. }
  1970. // does not work -how to have multiple statements in a single query?
  1971. // $sDoCreateAll = implode(" ; ", $aSQL);
  1972. }
  1973. protected static function DBCreateViews()
  1974. {
  1975. list($aErrors, $aSugFix) = self::DBCheckViews();
  1976. $aSQL = array();
  1977. foreach ($aSugFix as $sClass => $aTarget)
  1978. {
  1979. foreach ($aTarget as $aQueries)
  1980. {
  1981. foreach ($aQueries as $sQuery)
  1982. {
  1983. if (!empty($sQuery))
  1984. {
  1985. //$aSQL[] = $sQuery;
  1986. // forces a refresh of cached information
  1987. CMDBSource::CreateTable($sQuery);
  1988. }
  1989. }
  1990. }
  1991. }
  1992. }
  1993. public static function DBDump()
  1994. {
  1995. $aDataDump = array();
  1996. foreach (self::DBEnumTables() as $sTable => $aClasses)
  1997. {
  1998. $aRows = CMDBSource::DumpTable($sTable);
  1999. $aDataDump[$sTable] = $aRows;
  2000. }
  2001. return $aDataDump;
  2002. }
  2003. protected static function MakeDictEntry($sKey, $sValueFromOldSystem, $sDefaultValue, &$bNotInDico)
  2004. {
  2005. $sValue = Dict::S($sKey, 'x-no-nothing');
  2006. if ($sValue == 'x-no-nothing')
  2007. {
  2008. $bNotInDico = true;
  2009. $sValue = $sValueFromOldSystem;
  2010. if (strlen($sValue) == 0)
  2011. {
  2012. $sValue = $sDefaultValue;
  2013. }
  2014. }
  2015. return " '$sKey' => '".str_replace("'", "\\'", $sValue)."',\n";
  2016. }
  2017. public static function MakeDictionaryTemplate($sModules = '', $sOutputFilter = 'NotInDictionary')
  2018. {
  2019. $sRes = '';
  2020. $sRes .= "// Dictionnay conventions\n";
  2021. $sRes .= htmlentities("// Class:<class_name>\n");
  2022. $sRes .= htmlentities("// Class:<class_name>+\n");
  2023. $sRes .= htmlentities("// Class:<class_name>/Attribute:<attribute_code>\n");
  2024. $sRes .= htmlentities("// Class:<class_name>/Attribute:<attribute_code>+\n");
  2025. $sRes .= htmlentities("// Class:<class_name>/Attribute:<attribute_code>/Value:<value>\n");
  2026. $sRes .= htmlentities("// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+\n");
  2027. $sRes .= htmlentities("// Class:<class_name>/Stimulus:<stimulus_code>\n");
  2028. $sRes .= htmlentities("// Class:<class_name>/Stimulus:<stimulus_code>+\n");
  2029. $sRes .= "\n";
  2030. // Note: I did not use EnumCategories(), because a given class maybe found in several categories
  2031. // Need to invent the "module", to characterize the origins of a class
  2032. if (strlen($sModules) == 0)
  2033. {
  2034. $aModules = array('bizmodel', 'core/cmdb', 'gui' , 'application', 'addon/userrights');
  2035. }
  2036. else
  2037. {
  2038. $aModules = explode(', ', $sModules);
  2039. }
  2040. $sRes .= "//////////////////////////////////////////////////////////////////////\n";
  2041. $sRes .= "// Note: The classes have been grouped by categories: ".implode(', ', $aModules)."\n";
  2042. $sRes .= "//////////////////////////////////////////////////////////////////////\n";
  2043. foreach ($aModules as $sCategory)
  2044. {
  2045. $sRes .= "//////////////////////////////////////////////////////////////////////\n";
  2046. $sRes .= "// Classes in '<em>$sCategory</em>'\n";
  2047. $sRes .= "//////////////////////////////////////////////////////////////////////\n";
  2048. $sRes .= "//\n";
  2049. $sRes .= "\n";
  2050. foreach (self::GetClasses($sCategory) as $sClass)
  2051. {
  2052. if (!self::HasTable($sClass)) continue;
  2053. $bNotInDico = false;
  2054. $sClassRes = "//\n";
  2055. $sClassRes .= "// Class: $sClass\n";
  2056. $sClassRes .= "//\n";
  2057. $sClassRes .= "\n";
  2058. $sClassRes .= "Dict::Add('EN US', 'English', 'English', array(\n";
  2059. $sClassRes .= self::MakeDictEntry("Class:$sClass", self::GetName_Obsolete($sClass), $sClass, $bNotInDico);
  2060. $sClassRes .= self::MakeDictEntry("Class:$sClass+", self::GetClassDescription_Obsolete($sClass), '', $bNotInDico);
  2061. foreach(self::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
  2062. {
  2063. // Skip this attribute if not originaly defined in this class
  2064. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  2065. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode", $oAttDef->GetLabel_Obsolete(), $sAttCode, $bNotInDico);
  2066. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode+", $oAttDef->GetDescription_Obsolete(), '', $bNotInDico);
  2067. if ($oAttDef instanceof AttributeEnum)
  2068. {
  2069. if (self::GetStateAttributeCode($sClass) == $sAttCode)
  2070. {
  2071. foreach (self::EnumStates($sClass) as $sStateCode => $aStateData)
  2072. {
  2073. if (array_key_exists('label', $aStateData))
  2074. {
  2075. $sValue = $aStateData['label'];
  2076. }
  2077. else
  2078. {
  2079. $sValue = MetaModel::GetStateLabel($sClass, $sStateCode);
  2080. }
  2081. if (array_key_exists('description', $aStateData))
  2082. {
  2083. $sValuePlus = $aStateData['description'];
  2084. }
  2085. else
  2086. {
  2087. $sValuePlus = MetaModel::GetStateDescription($sClass, $sStateCode);
  2088. }
  2089. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode/Value:$sStateCode", $sValue, '', $bNotInDico);
  2090. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode/Value:$sStateCode+", $sValuePlus, '', $bNotInDico);
  2091. }
  2092. }
  2093. else
  2094. {
  2095. foreach ($oAttDef->GetAllowedValues() as $sKey => $value)
  2096. {
  2097. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode/Value:$sKey", $value, '', $bNotInDico);
  2098. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode/Value:$sKey+", $value, '', $bNotInDico);
  2099. }
  2100. }
  2101. }
  2102. }
  2103. foreach(self::EnumStimuli($sClass) as $sStimulusCode => $oStimulus)
  2104. {
  2105. $sClassRes .= self::MakeDictEntry("Class:$sClass/Stimulus:$sStimulusCode", $oStimulus->GetLabel_Obsolete(), '', $bNotInDico);
  2106. $sClassRes .= self::MakeDictEntry("Class:$sClass/Stimulus:$sStimulusCode+", $oStimulus->GetDescription_Obsolete(), '', $bNotInDico);
  2107. }
  2108. $sClassRes .= "));\n";
  2109. $sClassRes .= "\n";
  2110. if ($bNotInDico || ($sOutputFilter != 'NotInDictionary'))
  2111. {
  2112. $sRes .= $sClassRes;
  2113. }
  2114. }
  2115. }
  2116. return $sRes;
  2117. }
  2118. public static function DBCheckFormat()
  2119. {
  2120. $aErrors = array();
  2121. $aSugFix = array();
  2122. foreach (self::GetClasses() as $sClass)
  2123. {
  2124. if (!self::HasTable($sClass)) continue;
  2125. // Check that the table exists
  2126. //
  2127. $sTable = self::DBGetTable($sClass);
  2128. $sKeyField = self::DBGetKey($sClass);
  2129. $sAutoIncrement = (self::IsAutoIncrementKey($sClass) ? "AUTO_INCREMENT" : "");
  2130. if (!CMDBSource::IsTable($sTable))
  2131. {
  2132. $aErrors[$sClass]['*'][] = "table '$sTable' could not be found into the DB";
  2133. $aSugFix[$sClass]['*'][] = "CREATE TABLE `$sTable` (`$sKeyField` INT(11) NOT NULL $sAutoIncrement PRIMARY KEY) ENGINE = innodb CHARACTER SET utf8 COLLATE utf8_unicode_ci";
  2134. }
  2135. // Check that the key field exists
  2136. //
  2137. elseif (!CMDBSource::IsField($sTable, $sKeyField))
  2138. {
  2139. $aErrors[$sClass]['id'][] = "key '$sKeyField' (table $sTable) could not be found";
  2140. $aSugFix[$sClass]['id'][] = "ALTER TABLE `$sTable` ADD `$sKeyField` INT(11) NOT NULL $sAutoIncrement PRIMARY KEY";
  2141. }
  2142. else
  2143. {
  2144. // Check the key field properties
  2145. //
  2146. if (!CMDBSource::IsKey($sTable, $sKeyField))
  2147. {
  2148. $aErrors[$sClass]['id'][] = "key '$sKeyField' is not a key for table '$sTable'";
  2149. $aSugFix[$sClass]['id'][] = "ALTER TABLE `$sTable`, DROP PRIMARY KEY, ADD PRIMARY key(`$sKeyField`)";
  2150. }
  2151. if (self::IsAutoIncrementKey($sClass) && !CMDBSource::IsAutoIncrement($sTable, $sKeyField))
  2152. {
  2153. $aErrors[$sClass]['id'][] = "key '$sKeyField' (table $sTable) is not automatically incremented";
  2154. $aSugFix[$sClass]['id'][] = "ALTER TABLE `$sTable` CHANGE `$sKeyField` `$sKeyField` INT(11) NOT NULL AUTO_INCREMENT";
  2155. }
  2156. }
  2157. // Check that any defined field exists
  2158. //
  2159. $aTableInfo = CMDBSource::GetTableInfo($sTable);
  2160. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  2161. {
  2162. // Skip this attribute if not originaly defined in this class
  2163. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  2164. foreach($oAttDef->GetSQLColumns() as $sField => $sDBFieldType)
  2165. {
  2166. $bIndexNeeded = $oAttDef->RequiresIndex();
  2167. $sFieldSpecs = $oAttDef->IsNullAllowed() ? "$sDBFieldType NULL" : "$sDBFieldType NOT NULL";
  2168. if (!CMDBSource::IsField($sTable, $sField))
  2169. {
  2170. $aErrors[$sClass][$sAttCode][] = "field '$sField' could not be found in table '$sTable'";
  2171. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` ADD `$sField` $sFieldSpecs";
  2172. if ($bIndexNeeded)
  2173. {
  2174. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` ADD INDEX (`$sField`)";
  2175. }
  2176. }
  2177. else
  2178. {
  2179. // The field already exists, does it have the relevant properties?
  2180. //
  2181. $bToBeChanged = false;
  2182. if ($oAttDef->IsNullAllowed() != CMDBSource::IsNullAllowed($sTable, $sField))
  2183. {
  2184. $bToBeChanged = true;
  2185. if ($oAttDef->IsNullAllowed())
  2186. {
  2187. $aErrors[$sClass][$sAttCode][] = "field '$sField' in table '$sTable' could be NULL";
  2188. }
  2189. else
  2190. {
  2191. $aErrors[$sClass][$sAttCode][] = "field '$sField' in table '$sTable' could NOT be NULL";
  2192. }
  2193. }
  2194. $sActualFieldType = CMDBSource::GetFieldType($sTable, $sField);
  2195. if (strcasecmp($sDBFieldType, $sActualFieldType) != 0)
  2196. {
  2197. $bToBeChanged = true;
  2198. $aErrors[$sClass][$sAttCode][] = "field '$sField' in table '$sTable' has a wrong type: found '$sActualFieldType' while expecting '$sDBFieldType'";
  2199. }
  2200. if ($bToBeChanged)
  2201. {
  2202. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` CHANGE `$sField` `$sField` $sFieldSpecs";
  2203. }
  2204. // Create indexes (external keys only... so far)
  2205. //
  2206. if ($bIndexNeeded && !CMDBSource::HasIndex($sTable, $sField))
  2207. {
  2208. $aErrors[$sClass][$sAttCode][] = "Foreign key '$sField' in table '$sTable' should have an index";
  2209. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` ADD INDEX (`$sField`)";
  2210. }
  2211. }
  2212. }
  2213. }
  2214. }
  2215. return array($aErrors, $aSugFix);
  2216. }
  2217. public static function DBCheckViews()
  2218. {
  2219. $aErrors = array();
  2220. $aSugFix = array();
  2221. // Reporting views (must be created after any other table)
  2222. //
  2223. foreach (self::GetClasses('bizmodel') as $sClass)
  2224. {
  2225. $sView = "view_$sClass";
  2226. if (CMDBSource::IsTable($sView))
  2227. {
  2228. // Check that the view is complete
  2229. //
  2230. $bIsComplete = true;
  2231. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  2232. {
  2233. foreach($oAttDef->GetSQLExpressions() as $sSuffix => $sTrash)
  2234. {
  2235. $sCol = $sAttCode.$sSuffix;
  2236. if (!CMDBSource::IsField($sView, $sCol))
  2237. {
  2238. $bIsComplete = false;
  2239. $aErrors[$sClass][$sAttCode][] = "field '$sCol' could not be found in view '$sView'";
  2240. $aSugFix[$sClass][$sAttCode][] = "";
  2241. }
  2242. }
  2243. }
  2244. if (!$bIsComplete)
  2245. {
  2246. // Rework the view
  2247. //
  2248. $oFilter = new DBObjectSearch($sClass, '');
  2249. $sSQL = self::MakeSelectQuery($oFilter);
  2250. $aErrors[$sClass]['*'][] = "View '$sView' is currently not complete";
  2251. $aSugFix[$sClass]['*'][] = "ALTER VIEW `$sView` AS $sSQL";
  2252. }
  2253. }
  2254. else
  2255. {
  2256. // Create the view
  2257. //
  2258. $oFilter = new DBObjectSearch($sClass, '');
  2259. $sSQL = self::MakeSelectQuery($oFilter);
  2260. $aErrors[$sClass]['*'][] = "Missing view for class: $sClass";
  2261. $aSugFix[$sClass]['*'][] = "CREATE VIEW `$sView` AS $sSQL";
  2262. }
  2263. }
  2264. return array($aErrors, $aSugFix);
  2265. }
  2266. private static function DBCheckIntegrity_Check2Delete($sSelWrongRecs, $sErrorDesc, $sClass, &$aErrorsAndFixes, &$iNewDelCount, &$aPlannedDel, $bProcessingFriends = false)
  2267. {
  2268. $sRootClass = self::GetRootClass($sClass);
  2269. $sTable = self::DBGetTable($sClass);
  2270. $sKeyField = self::DBGetKey($sClass);
  2271. if (array_key_exists($sTable, $aPlannedDel) && count($aPlannedDel[$sTable]) > 0)
  2272. {
  2273. $sSelWrongRecs .= " AND maintable.`$sKeyField` NOT IN ('".implode("', '", $aPlannedDel[$sTable])."')";
  2274. }
  2275. $aWrongRecords = CMDBSource::QueryToCol($sSelWrongRecs, "id");
  2276. if (count($aWrongRecords) == 0) return;
  2277. if (!array_key_exists($sRootClass, $aErrorsAndFixes)) $aErrorsAndFixes[$sRootClass] = array();
  2278. if (!array_key_exists($sTable, $aErrorsAndFixes[$sRootClass])) $aErrorsAndFixes[$sRootClass][$sTable] = array();
  2279. foreach ($aWrongRecords as $iRecordId)
  2280. {
  2281. if (array_key_exists($iRecordId, $aErrorsAndFixes[$sRootClass][$sTable]))
  2282. {
  2283. switch ($aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action'])
  2284. {
  2285. case 'Delete':
  2286. // Already planned for a deletion
  2287. // Let's concatenate the errors description together
  2288. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Reason'] .= ', '.$sErrorDesc;
  2289. break;
  2290. case 'Update':
  2291. // Let's plan a deletion
  2292. break;
  2293. }
  2294. }
  2295. else
  2296. {
  2297. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Reason'] = $sErrorDesc;
  2298. }
  2299. if (!$bProcessingFriends)
  2300. {
  2301. if (!array_key_exists($sTable, $aPlannedDel) || !in_array($iRecordId, $aPlannedDel[$sTable]))
  2302. {
  2303. // Something new to be deleted...
  2304. $iNewDelCount++;
  2305. }
  2306. }
  2307. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action'] = 'Delete';
  2308. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action_Details'] = array();
  2309. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Pass'] = 123;
  2310. $aPlannedDel[$sTable][] = $iRecordId;
  2311. }
  2312. // Now make sure that we would delete the records of the other tables for that class
  2313. //
  2314. if (!$bProcessingFriends)
  2315. {
  2316. $sDeleteKeys = "'".implode("', '", $aWrongRecords)."'";
  2317. foreach (self::EnumChildClasses($sRootClass, ENUM_CHILD_CLASSES_ALL) as $sFriendClass)
  2318. {
  2319. $sFriendTable = self::DBGetTable($sFriendClass);
  2320. $sFriendKey = self::DBGetKey($sFriendClass);
  2321. // skip the current table
  2322. if ($sFriendTable == $sTable) continue;
  2323. $sFindRelatedRec = "SELECT DISTINCT maintable.`$sFriendKey` AS id FROM `$sFriendTable` AS maintable WHERE maintable.`$sFriendKey` IN ($sDeleteKeys)";
  2324. self::DBCheckIntegrity_Check2Delete($sFindRelatedRec, "Cascading deletion of record in friend table `<em>$sTable</em>`", $sFriendClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel, true);
  2325. }
  2326. }
  2327. }
  2328. private static function DBCheckIntegrity_Check2Update($sSelWrongRecs, $sErrorDesc, $sColumn, $sNewValue, $sClass, &$aErrorsAndFixes, &$iNewDelCount, &$aPlannedDel)
  2329. {
  2330. $sRootClass = self::GetRootClass($sClass);
  2331. $sTable = self::DBGetTable($sClass);
  2332. $sKeyField = self::DBGetKey($sClass);
  2333. if (array_key_exists($sTable, $aPlannedDel) && count($aPlannedDel[$sTable]) > 0)
  2334. {
  2335. $sSelWrongRecs .= " AND maintable.`$sKeyField` NOT IN ('".implode("', '", $aPlannedDel[$sTable])."')";
  2336. }
  2337. $aWrongRecords = CMDBSource::QueryToCol($sSelWrongRecs, "id");
  2338. if (count($aWrongRecords) == 0) return;
  2339. if (!array_key_exists($sRootClass, $aErrorsAndFixes)) $aErrorsAndFixes[$sRootClass] = array();
  2340. if (!array_key_exists($sTable, $aErrorsAndFixes[$sRootClass])) $aErrorsAndFixes[$sRootClass][$sTable] = array();
  2341. foreach ($aWrongRecords as $iRecordId)
  2342. {
  2343. if (array_key_exists($iRecordId, $aErrorsAndFixes[$sRootClass][$sTable]))
  2344. {
  2345. switch ($aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action'])
  2346. {
  2347. case 'Delete':
  2348. // No need to update, the record will be deleted!
  2349. break;
  2350. case 'Update':
  2351. // Already planned for an update
  2352. // Add this new update spec to the list
  2353. $bFoundSameSpec = false;
  2354. foreach ($aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action_Details'] as $aUpdateSpec)
  2355. {
  2356. if (($sColumn == $aUpdateSpec['column']) && ($sNewValue == $aUpdateSpec['newvalue']))
  2357. {
  2358. $bFoundSameSpec = true;
  2359. }
  2360. }
  2361. if (!$bFoundSameSpec)
  2362. {
  2363. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action_Details'][] = (array('column' => $sColumn, 'newvalue'=>$sNewValue));
  2364. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Reason'] .= ', '.$sErrorDesc;
  2365. }
  2366. break;
  2367. }
  2368. }
  2369. else
  2370. {
  2371. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Reason'] = $sErrorDesc;
  2372. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action'] = 'Update';
  2373. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action_Details'] = array(array('column' => $sColumn, 'newvalue'=>$sNewValue));
  2374. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Pass'] = 123;
  2375. }
  2376. }
  2377. }
  2378. // returns the count of records found for deletion
  2379. public static function DBCheckIntegrity_SinglePass(&$aErrorsAndFixes, &$iNewDelCount, &$aPlannedDel)
  2380. {
  2381. foreach (self::GetClasses() as $sClass)
  2382. {
  2383. if (!self::HasTable($sClass)) continue;
  2384. $sRootClass = self::GetRootClass($sClass);
  2385. $sTable = self::DBGetTable($sClass);
  2386. $sKeyField = self::DBGetKey($sClass);
  2387. if (!self::IsStandaloneClass($sClass))
  2388. {
  2389. if (self::IsRootClass($sClass))
  2390. {
  2391. // Check that the final class field contains the name of a class which inherited from the current class
  2392. //
  2393. $sFinalClassField = self::DBGetClassField($sClass);
  2394. $aAllowedValues = self::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL);
  2395. $sAllowedValues = implode(",", CMDBSource::Quote($aAllowedValues, true));
  2396. $sSelWrongRecs = "SELECT DISTINCT maintable.`$sKeyField` AS id FROM `$sTable` AS maintable WHERE `$sFinalClassField` NOT IN ($sAllowedValues)";
  2397. self::DBCheckIntegrity_Check2Delete($sSelWrongRecs, "final class (field `<em>$sFinalClassField</em>`) is wrong (expected a value in {".$sAllowedValues."})", $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2398. }
  2399. else
  2400. {
  2401. $sRootTable = self::DBGetTable($sRootClass);
  2402. $sRootKey = self::DBGetKey($sRootClass);
  2403. $sFinalClassField = self::DBGetClassField($sRootClass);
  2404. $aExpectedClasses = self::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL);
  2405. $sExpectedClasses = implode(",", CMDBSource::Quote($aExpectedClasses, true));
  2406. // Check that any record found here has its counterpart in the root table
  2407. // and which refers to a child class
  2408. //
  2409. $sSelWrongRecs = "SELECT DISTINCT maintable.`$sKeyField` AS id FROM `$sTable` as maintable LEFT JOIN `$sRootTable` ON maintable.`$sKeyField` = `$sRootTable`.`$sRootKey` AND `$sRootTable`.`$sFinalClassField` IN ($sExpectedClasses) WHERE `$sRootTable`.`$sRootKey` IS NULL";
  2410. self::DBCheckIntegrity_Check2Delete($sSelWrongRecs, "Found a record in `<em>$sTable</em>`, but no counterpart in root table `<em>$sRootTable</em>` (inc. records pointing to a class in {".$sExpectedClasses."})", $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2411. // Check that any record found in the root table and referring to a child class
  2412. // has its counterpart here (detect orphan nodes -root or in the middle of the hierarchy)
  2413. //
  2414. $sSelWrongRecs = "SELECT DISTINCT maintable.`$sRootKey` AS id FROM `$sRootTable` AS maintable LEFT JOIN `$sTable` ON maintable.`$sRootKey` = `$sTable`.`$sKeyField` WHERE `$sTable`.`$sKeyField` IS NULL AND maintable.`$sFinalClassField` IN ($sExpectedClasses)";
  2415. self::DBCheckIntegrity_Check2Delete($sSelWrongRecs, "Found a record in root table `<em>$sRootTable</em>`, but no counterpart in table `<em>$sTable</em>` (root records pointing to a class in {".$sExpectedClasses."})", $sRootClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2416. }
  2417. }
  2418. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  2419. {
  2420. // Skip this attribute if not defined in this table
  2421. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  2422. if ($oAttDef->IsExternalKey())
  2423. {
  2424. // Check that any external field is pointing to an existing object
  2425. //
  2426. $sRemoteClass = $oAttDef->GetTargetClass();
  2427. $sRemoteTable = self::DBGetTable($sRemoteClass);
  2428. $sRemoteKey = self::DBGetKey($sRemoteClass);
  2429. $sExtKeyField = current($oAttDef->GetSQLExpressions()); // get the first column for an external key
  2430. // Note: a class/table may have an external key on itself
  2431. $sSelBase = "SELECT DISTINCT maintable.`$sKeyField` AS id, maintable.`$sExtKeyField` AS extkey FROM `$sTable` AS maintable LEFT JOIN `$sRemoteTable` ON maintable.`$sExtKeyField` = `$sRemoteTable`.`$sRemoteKey`";
  2432. $sSelWrongRecs = $sSelBase." WHERE `$sRemoteTable`.`$sRemoteKey` IS NULL";
  2433. if ($oAttDef->IsNullAllowed())
  2434. {
  2435. // Exclude the records pointing to 0/null from the errors
  2436. $sSelWrongRecs .= " AND maintable.`$sExtKeyField` IS NOT NULL";
  2437. $sSelWrongRecs .= " AND maintable.`$sExtKeyField` != 0";
  2438. self::DBCheckIntegrity_Check2Update($sSelWrongRecs, "Record pointing to (external key '<em>$sAttCode</em>') non existing objects", $sExtKeyField, 'null', $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2439. }
  2440. else
  2441. {
  2442. self::DBCheckIntegrity_Check2Delete($sSelWrongRecs, "Record pointing to (external key '<em>$sAttCode</em>') non existing objects", $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2443. }
  2444. // Do almost the same, taking into account the records planned for deletion
  2445. if (array_key_exists($sRemoteTable, $aPlannedDel) && count($aPlannedDel[$sRemoteTable]) > 0)
  2446. {
  2447. // This could be done by the mean of a 'OR ... IN (aIgnoreRecords)
  2448. // but in that case you won't be able to track the root cause (cascading)
  2449. $sSelWrongRecs = $sSelBase." WHERE maintable.`$sExtKeyField` IN ('".implode("', '", $aPlannedDel[$sRemoteTable])."')";
  2450. if ($oAttDef->IsNullAllowed())
  2451. {
  2452. // Exclude the records pointing to 0/null from the errors
  2453. $sSelWrongRecs .= " AND maintable.`$sExtKeyField` IS NOT NULL";
  2454. $sSelWrongRecs .= " AND maintable.`$sExtKeyField` != 0";
  2455. self::DBCheckIntegrity_Check2Update($sSelWrongRecs, "Record pointing to (external key '<em>$sAttCode</em>') a record planned for deletion", $sExtKeyField, 'null', $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2456. }
  2457. else
  2458. {
  2459. self::DBCheckIntegrity_Check2Delete($sSelWrongRecs, "Record pointing to (external key '<em>$sAttCode</em>') a record planned for deletion", $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2460. }
  2461. }
  2462. }
  2463. else if ($oAttDef->IsDirectField())
  2464. {
  2465. // Check that the values fit the allowed values
  2466. //
  2467. $aAllowedValues = self::GetAllowedValues_att($sClass, $sAttCode);
  2468. if (!is_null($aAllowedValues) && count($aAllowedValues) > 0)
  2469. {
  2470. $sExpectedValues = implode(",", CMDBSource::Quote(array_keys($aAllowedValues), true));
  2471. $sMyAttributeField = current($oAttDef->GetSQLExpressions()); // get the first column for the moment
  2472. $sDefaultValue = $oAttDef->GetDefaultValue();
  2473. $sSelWrongRecs = "SELECT DISTINCT maintable.`$sKeyField` AS id FROM `$sTable` AS maintable WHERE maintable.`$sMyAttributeField` NOT IN ($sExpectedValues)";
  2474. self::DBCheckIntegrity_Check2Update($sSelWrongRecs, "Record having a column ('<em>$sAttCode</em>') with an unexpected value", $sMyAttributeField, CMDBSource::Quote($sDefaultValue), $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2475. }
  2476. }
  2477. }
  2478. }
  2479. }
  2480. public static function DBCheckIntegrity($sRepairUrl = "", $sSQLStatementArgName = "")
  2481. {
  2482. // Records in error, and action to be taken: delete or update
  2483. // by RootClass/Table/Record
  2484. $aErrorsAndFixes = array();
  2485. // Records to be ignored in the current/next pass
  2486. // by Table = array of RecordId
  2487. $aPlannedDel = array();
  2488. // Count of errors in the next pass: no error means that we can leave...
  2489. $iErrorCount = 0;
  2490. // Limit in case of a bug in the algorythm
  2491. $iLoopCount = 0;
  2492. $iNewDelCount = 1; // startup...
  2493. while ($iNewDelCount > 0)
  2494. {
  2495. $iNewDelCount = 0;
  2496. self::DBCheckIntegrity_SinglePass($aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  2497. $iErrorCount += $iNewDelCount;
  2498. // Safety net #1 - limit the planned deletions
  2499. //
  2500. $iMaxDel = 1000;
  2501. $iPlannedDel = 0;
  2502. foreach ($aPlannedDel as $sTable => $aPlannedDelOnTable)
  2503. {
  2504. $iPlannedDel += count($aPlannedDelOnTable);
  2505. }
  2506. if ($iPlannedDel > $iMaxDel)
  2507. {
  2508. throw new CoreWarning("DB Integrity Check safety net - Exceeding the limit of $iMaxDel planned record deletion");
  2509. break;
  2510. }
  2511. // Safety net #2 - limit the iterations
  2512. //
  2513. $iLoopCount++;
  2514. $iMaxLoops = 10;
  2515. if ($iLoopCount > $iMaxLoops)
  2516. {
  2517. throw new CoreWarning("DB Integrity Check safety net - Reached the limit of $iMaxLoops loops");
  2518. break;
  2519. }
  2520. }
  2521. // Display the results
  2522. //
  2523. $iIssueCount = 0;
  2524. $aFixesDelete = array();
  2525. $aFixesUpdate = array();
  2526. foreach ($aErrorsAndFixes as $sRootClass => $aTables)
  2527. {
  2528. foreach ($aTables as $sTable => $aRecords)
  2529. {
  2530. foreach ($aRecords as $iRecord => $aError)
  2531. {
  2532. $sAction = $aError['Action'];
  2533. $sReason = $aError['Reason'];
  2534. $iPass = $aError['Pass'];
  2535. switch ($sAction)
  2536. {
  2537. case 'Delete':
  2538. $sActionDetails = "";
  2539. $aFixesDelete[$sTable][] = $iRecord;
  2540. break;
  2541. case 'Update':
  2542. $aUpdateDesc = array();
  2543. foreach($aError['Action_Details'] as $aUpdateSpec)
  2544. {
  2545. $aUpdateDesc[] = $aUpdateSpec['column']." -&gt; ".$aUpdateSpec['newvalue'];
  2546. $aFixesUpdate[$sTable][$aUpdateSpec['column']][$aUpdateSpec['newvalue']][] = $iRecord;
  2547. }
  2548. $sActionDetails = "Set ".implode(", ", $aUpdateDesc);
  2549. break;
  2550. default:
  2551. $sActionDetails = "bug: unknown action '$sAction'";
  2552. }
  2553. $aIssues[] = "$sRootClass / $sTable / $iRecord / $sReason / $sAction / $sActionDetails";
  2554. $iIssueCount++;
  2555. }
  2556. }
  2557. }
  2558. if ($iIssueCount > 0)
  2559. {
  2560. // Build the queries to fix in the database
  2561. //
  2562. // First step, be able to get class data out of the table name
  2563. // Could be optimized, because we've made the job earlier... but few benefits, so...
  2564. $aTable2ClassProp = array();
  2565. foreach (self::GetClasses() as $sClass)
  2566. {
  2567. if (!self::HasTable($sClass)) continue;
  2568. $sRootClass = self::GetRootClass($sClass);
  2569. $sTable = self::DBGetTable($sClass);
  2570. $sKeyField = self::DBGetKey($sClass);
  2571. $aErrorsAndFixes[$sRootClass][$sTable] = array();
  2572. $aTable2ClassProp[$sTable] = array('rootclass'=>$sRootClass, 'class'=>$sClass, 'keyfield'=>$sKeyField);
  2573. }
  2574. // Second step, build a flat list of SQL queries
  2575. $aSQLFixes = array();
  2576. $iPlannedUpdate = 0;
  2577. foreach ($aFixesUpdate as $sTable => $aColumns)
  2578. {
  2579. foreach ($aColumns as $sColumn => $aNewValues)
  2580. {
  2581. foreach ($aNewValues as $sNewValue => $aRecords)
  2582. {
  2583. $iPlannedUpdate += count($aRecords);
  2584. $sWrongRecords = "'".implode("', '", $aRecords)."'";
  2585. $sKeyField = $aTable2ClassProp[$sTable]['keyfield'];
  2586. $aSQLFixes[] = "UPDATE `$sTable` SET `$sColumn` = $sNewValue WHERE `$sKeyField` IN ($sWrongRecords)";
  2587. }
  2588. }
  2589. }
  2590. $iPlannedDel = 0;
  2591. foreach ($aFixesDelete as $sTable => $aRecords)
  2592. {
  2593. $iPlannedDel += count($aRecords);
  2594. $sWrongRecords = "'".implode("', '", $aRecords)."'";
  2595. $sKeyField = $aTable2ClassProp[$sTable]['keyfield'];
  2596. $aSQLFixes[] = "DELETE FROM `$sTable` WHERE `$sKeyField` IN ($sWrongRecords)";
  2597. }
  2598. // Report the results
  2599. //
  2600. echo "<div style=\"width:100%;padding:10px;background:#FFAAAA;display:;\">";
  2601. echo "<h3>Database corruption error(s): $iErrorCount issues have been encountered. $iPlannedDel records will be deleted, $iPlannedUpdate records will be updated:</h3>\n";
  2602. // #@# later -> this is the responsibility of the caller to format the output
  2603. echo "<ul class=\"treeview\">\n";
  2604. foreach ($aIssues as $sIssueDesc)
  2605. {
  2606. echo "<li>$sIssueDesc</li>\n";
  2607. }
  2608. echo "</ul>\n";
  2609. self::DBShowApplyForm($sRepairUrl, $sSQLStatementArgName, $aSQLFixes);
  2610. echo "<p>Aborting...</p>\n";
  2611. echo "</div>\n";
  2612. exit;
  2613. }
  2614. }
  2615. public static function Startup($sConfigFile, $bAllowMissingDB = false)
  2616. {
  2617. self::LoadConfig($sConfigFile);
  2618. if (self::DBExists())
  2619. {
  2620. CMDBSource::SelectDB(self::$m_sDBName);
  2621. // Some of the init could not be done earlier (requiring classes to be declared and DB to be accessible)
  2622. self::InitPlugins();
  2623. }
  2624. else
  2625. {
  2626. if (!$bAllowMissingDB)
  2627. {
  2628. throw new CoreException('Database not found, check your configuration file', array('config_file'=>$sConfigFile, 'db_name'=>self::$m_sDBName));
  2629. }
  2630. }
  2631. }
  2632. public static function LoadConfig($sConfigFile)
  2633. {
  2634. $oConfig = new Config($sConfigFile);
  2635. // Set log ASAP
  2636. if ($oConfig->GetLogGlobal())
  2637. {
  2638. if ($oConfig->GetLogIssue())
  2639. {
  2640. self::$m_bLogIssue = true;
  2641. IssueLog::Enable('../error.log');
  2642. }
  2643. self::$m_bLogNotification = $oConfig->GetLogNotification();
  2644. self::$m_bLogWebService = $oConfig->GetLogWebService();
  2645. }
  2646. else
  2647. {
  2648. self::$m_bLogIssue = false;
  2649. self::$m_bLogNotification = false;
  2650. self::$m_bLogWebService = false;
  2651. }
  2652. // Note: load the dictionary as soon as possible, because it might be
  2653. // needed when some error occur
  2654. foreach ($oConfig->GetDictionaries() as $sModule => $sToInclude)
  2655. {
  2656. self::Plugin($sConfigFile, 'dictionaries', $sToInclude);
  2657. }
  2658. // Set the language... after the dictionaries have been loaded!
  2659. Dict::SetDefaultLanguage($oConfig->GetDefaultLanguage());
  2660. foreach ($oConfig->GetAppModules() as $sModule => $sToInclude)
  2661. {
  2662. self::Plugin($sConfigFile, 'application', $sToInclude);
  2663. }
  2664. foreach ($oConfig->GetDataModels() as $sModule => $sToInclude)
  2665. {
  2666. self::Plugin($sConfigFile, 'business', $sToInclude);
  2667. }
  2668. foreach ($oConfig->GetAddons() as $sModule => $sToInclude)
  2669. {
  2670. self::Plugin($sConfigFile, 'addons', $sToInclude);
  2671. }
  2672. $sServer = $oConfig->GetDBHost();
  2673. $sUser = $oConfig->GetDBUser();
  2674. $sPwd = $oConfig->GetDBPwd();
  2675. $sSource = $oConfig->GetDBName();
  2676. $sTablePrefix = $oConfig->GetDBSubname();
  2677. // The include have been included, let's browse the existing classes and
  2678. // develop some data based on the proposed model
  2679. self::InitClasses($sTablePrefix);
  2680. self::$m_sDBName = $sSource;
  2681. self::$m_sTablePrefix = $sTablePrefix;
  2682. CMDBSource::Init($sServer, $sUser, $sPwd); // do not select the DB (could not exist)
  2683. }
  2684. protected static $m_aPlugins = array();
  2685. public static function RegisterPlugin($sType, $sName, $aInitCallSpec = array())
  2686. {
  2687. self::$m_aPlugins[$sName] = array(
  2688. 'type' => $sType,
  2689. 'init' => $aInitCallSpec,
  2690. );
  2691. }
  2692. protected static function Plugin($sConfigFile, $sModuleType, $sToInclude)
  2693. {
  2694. if (!file_exists($sToInclude))
  2695. {
  2696. throw new CoreException('Wrong filename in configuration file', array('file' => $sConfigFile, 'module' => $sModuleType, 'filename' => $sToInclude));
  2697. }
  2698. require_once($sToInclude);
  2699. }
  2700. protected static function InitPlugins()
  2701. {
  2702. foreach(self::$m_aPlugins as $sName => $aData)
  2703. {
  2704. $aCallSpec = @$aData['init'];
  2705. if (count($aCallSpec) == 2)
  2706. {
  2707. if (!is_callable($aCallSpec))
  2708. {
  2709. throw new CoreException('Wrong declaration in plugin', array('plugin' => $aData['name'], 'type' => $aData['type'], 'class' => $aData['class'], 'init' => $aData['init']));
  2710. }
  2711. call_user_func($aCallSpec);
  2712. }
  2713. }
  2714. }
  2715. // Building an object
  2716. //
  2717. //
  2718. private static $aQueryCacheGetObject = array();
  2719. private static $aQueryCacheGetObjectHits = array();
  2720. public static function GetQueryCacheStatus()
  2721. {
  2722. $aRes = array();
  2723. $iTotalHits = 0;
  2724. foreach(self::$aQueryCacheGetObjectHits as $sClass => $iHits)
  2725. {
  2726. $aRes[] = "$sClass: $iHits";
  2727. $iTotalHits += $iHits;
  2728. }
  2729. return $iTotalHits.' ('.implode(', ', $aRes).')';
  2730. }
  2731. public static function MakeSingleRow($sClass, $iKey, $bMustBeFound = true)
  2732. {
  2733. if (!array_key_exists($sClass, self::$aQueryCacheGetObject))
  2734. {
  2735. // NOTE: Quick and VERY dirty caching mechanism which relies on
  2736. // the fact that the string '987654321' will never appear in the
  2737. // standard query
  2738. // This will be replaced for sure with a prepared statement
  2739. // or a view... next optimization to come!
  2740. $oFilter = new DBObjectSearch($sClass);
  2741. $oFilter->AddCondition('id', 987654321, '=');
  2742. $sSQL = self::MakeSelectQuery($oFilter);
  2743. self::$aQueryCacheGetObject[$sClass] = $sSQL;
  2744. self::$aQueryCacheGetObjectHits[$sClass] = 0;
  2745. }
  2746. else
  2747. {
  2748. $sSQL = self::$aQueryCacheGetObject[$sClass];
  2749. self::$aQueryCacheGetObjectHits[$sClass] += 1;
  2750. // echo " -load $sClass/$iKey- ".self::$aQueryCacheGetObjectHits[$sClass]."<br/>\n";
  2751. }
  2752. $sSQL = str_replace('987654321', CMDBSource::Quote($iKey), $sSQL);
  2753. $res = CMDBSource::Query($sSQL);
  2754. $aRow = CMDBSource::FetchArray($res);
  2755. CMDBSource::FreeResult($res);
  2756. if ($bMustBeFound && empty($aRow))
  2757. {
  2758. throw new CoreException("No result for the single row query: '$sSQL'");
  2759. }
  2760. return $aRow;
  2761. }
  2762. public static function GetObjectByRow($sClass, $aRow, $sClassAlias = '')
  2763. {
  2764. self::_check_subclass($sClass);
  2765. if (strlen($sClassAlias) == 0)
  2766. {
  2767. $sClassAlias = $sClass;
  2768. }
  2769. // Compound objects: if available, get the final object class
  2770. //
  2771. if (!array_key_exists($sClassAlias."finalclass", $aRow))
  2772. {
  2773. // Either this is a bug (forgot to specify a root class with a finalclass field
  2774. // Or this is the expected behavior, because the object is not made of several tables
  2775. }
  2776. elseif (empty($aRow[$sClassAlias."finalclass"]))
  2777. {
  2778. // The data is missing in the DB
  2779. // @#@ possible improvement: check that the class is valid !
  2780. $sRootClass = self::GetRootClass($sClass);
  2781. $sFinalClassField = self::DBGetClassField($sRootClass);
  2782. throw new CoreException("Empty class name for object $sClass::{$aRow["id"]} (root class '$sRootClass', field '{$sFinalClassField}' is empty)");
  2783. }
  2784. else
  2785. {
  2786. // do the job for the real target class
  2787. $sClass = $aRow[$sClassAlias."finalclass"];
  2788. }
  2789. return new $sClass($aRow, $sClassAlias);
  2790. }
  2791. public static function GetObject($sClass, $iKey, $bMustBeFound = true)
  2792. {
  2793. self::_check_subclass($sClass);
  2794. $aRow = self::MakeSingleRow($sClass, $iKey, $bMustBeFound);
  2795. if (empty($aRow))
  2796. {
  2797. return null;
  2798. }
  2799. return self::GetObjectByRow($sClass, $aRow);
  2800. }
  2801. public static function GetHyperLink($sTargetClass, $iKey)
  2802. {
  2803. if ($iKey < 0)
  2804. {
  2805. return "$sTargetClass: $iKey (invalid value)";
  2806. }
  2807. $oObj = self::GetObject($sTargetClass, $iKey, false);
  2808. if (is_null($oObj))
  2809. {
  2810. return "$sTargetClass: $iKey (not found)";
  2811. }
  2812. return $oObj->GetHyperLink();
  2813. }
  2814. public static function NewObject($sClass)
  2815. {
  2816. self::_check_subclass($sClass);
  2817. return new $sClass();
  2818. }
  2819. public static function GetNextKey($sClass)
  2820. {
  2821. $sRootClass = MetaModel::GetRootClass($sClass);
  2822. $sRootTable = MetaModel::DBGetTable($sRootClass);
  2823. $iNextKey = CMDBSource::GetNextInsertId($sRootTable);
  2824. return $iNextKey;
  2825. }
  2826. public static function BulkDelete(DBObjectSearch $oFilter)
  2827. {
  2828. $sSQL = self::MakeDeleteQuery($oFilter);
  2829. CMDBSource::Query($sSQL);
  2830. }
  2831. public static function BulkUpdate(DBObjectSearch $oFilter, array $aValues)
  2832. {
  2833. // $aValues is an array of $sAttCode => $value
  2834. $sSQL = self::MakeUpdateQuery($oFilter, $aValues);
  2835. CMDBSource::Query($sSQL);
  2836. }
  2837. // Links
  2838. //
  2839. //
  2840. public static function EnumReferencedClasses($sClass)
  2841. {
  2842. self::_check_subclass($sClass);
  2843. // 1-N links (referenced by my class), returns an array of sAttCode=>sClass
  2844. $aResult = array();
  2845. foreach(self::$m_aAttribDefs[$sClass] as $sAttCode=>$oAttDef)
  2846. {
  2847. if ($oAttDef->IsExternalKey())
  2848. {
  2849. $aResult[$sAttCode] = $oAttDef->GetTargetClass();
  2850. }
  2851. }
  2852. return $aResult;
  2853. }
  2854. public static function EnumReferencingClasses($sClass, $bSkipLinkingClasses = false, $bInnerJoinsOnly = false)
  2855. {
  2856. self::_check_subclass($sClass);
  2857. if ($bSkipLinkingClasses)
  2858. {
  2859. $aLinksClasses = self::EnumLinksClasses();
  2860. }
  2861. // 1-N links (referencing my class), array of sClass => array of sAttcode
  2862. $aResult = array();
  2863. foreach (self::$m_aAttribDefs as $sSomeClass=>$aClassAttributes)
  2864. {
  2865. if ($bSkipLinkingClasses && in_array($sSomeClass, $aLinksClasses)) continue;
  2866. $aExtKeys = array();
  2867. foreach ($aClassAttributes as $sAttCode=>$oAttDef)
  2868. {
  2869. if (self::$m_aAttribOrigins[$sSomeClass][$sAttCode] != $sSomeClass) continue;
  2870. if ($oAttDef->IsExternalKey() && (self::IsParentClass($oAttDef->GetTargetClass(), $sClass)))
  2871. {
  2872. if ($bInnerJoinsOnly && $oAttDef->IsNullAllowed()) continue;
  2873. // Ok, I want this one
  2874. $aExtKeys[$sAttCode] = $oAttDef;
  2875. }
  2876. }
  2877. if (count($aExtKeys) != 0)
  2878. {
  2879. $aResult[$sSomeClass] = $aExtKeys;
  2880. }
  2881. }
  2882. return $aResult;
  2883. }
  2884. public static function EnumLinksClasses()
  2885. {
  2886. // Returns a flat array of classes having at least two external keys
  2887. $aResult = array();
  2888. foreach (self::$m_aAttribDefs as $sSomeClass=>$aClassAttributes)
  2889. {
  2890. $iExtKeyCount = 0;
  2891. foreach ($aClassAttributes as $sAttCode=>$oAttDef)
  2892. {
  2893. if (self::$m_aAttribOrigins[$sSomeClass][$sAttCode] != $sSomeClass) continue;
  2894. if ($oAttDef->IsExternalKey())
  2895. {
  2896. $iExtKeyCount++;
  2897. }
  2898. }
  2899. if ($iExtKeyCount >= 2)
  2900. {
  2901. $aResult[] = $sSomeClass;
  2902. }
  2903. }
  2904. return $aResult;
  2905. }
  2906. public static function EnumLinkingClasses($sClass = "")
  2907. {
  2908. // N-N links, array of sLinkClass => (array of sAttCode=>sClass)
  2909. $aResult = array();
  2910. foreach (self::EnumLinksClasses() as $sSomeClass)
  2911. {
  2912. $aTargets = array();
  2913. $bFoundClass = false;
  2914. foreach (self::ListAttributeDefs($sSomeClass) as $sAttCode=>$oAttDef)
  2915. {
  2916. if (self::$m_aAttribOrigins[$sSomeClass][$sAttCode] != $sSomeClass) continue;
  2917. if ($oAttDef->IsExternalKey())
  2918. {
  2919. $sRemoteClass = $oAttDef->GetTargetClass();
  2920. if (empty($sClass))
  2921. {
  2922. $aTargets[$sAttCode] = $sRemoteClass;
  2923. }
  2924. elseif ($sClass == $sRemoteClass)
  2925. {
  2926. $bFoundClass = true;
  2927. }
  2928. else
  2929. {
  2930. $aTargets[$sAttCode] = $sRemoteClass;
  2931. }
  2932. }
  2933. }
  2934. if (empty($sClass) || $bFoundClass)
  2935. {
  2936. $aResult[$sSomeClass] = $aTargets;
  2937. }
  2938. }
  2939. return $aResult;
  2940. }
  2941. public static function GetLinkLabel($sLinkClass, $sAttCode)
  2942. {
  2943. self::_check_subclass($sLinkClass);
  2944. // e.g. "supported by" (later: $this->GetLinkLabel(), computed on link data!)
  2945. return self::GetLabel($sLinkClass, $sAttCode);
  2946. }
  2947. /**
  2948. * Replaces all the parameters by the values passed in the hash array
  2949. */
  2950. static public function ApplyParams($aInput, $aParams)
  2951. {
  2952. $aSearches = array();
  2953. $aReplacements = array();
  2954. foreach($aParams as $sSearch => $sReplace)
  2955. {
  2956. $aSearches[] = '$'.$sSearch.'$';
  2957. $aReplacements[] = $sReplace;
  2958. }
  2959. return str_replace($aSearches, $aReplacements, $aInput);
  2960. }
  2961. } // class MetaModel
  2962. // Standard attribute lists
  2963. MetaModel::RegisterZList("noneditable", array("description"=>"non editable fields", "type"=>"attributes"));
  2964. MetaModel::RegisterZList("details", array("description"=>"All attributes to be displayed for the 'details' of an object", "type"=>"attributes"));
  2965. MetaModel::RegisterZList("list", array("description"=>"All attributes to be displayed for a list of objects", "type"=>"attributes"));
  2966. MetaModel::RegisterZList("preview", array("description"=>"All attributes visible in preview mode", "type"=>"attributes"));
  2967. MetaModel::RegisterZList("standard_search", array("description"=>"List of criteria for the standard search", "type"=>"filters"));
  2968. MetaModel::RegisterZList("advanced_search", array("description"=>"List of criteria for the advanced search", "type"=>"filters"));
  2969. ?>