dbobjectsearch.class.php 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133
  1. <?php
  2. // Copyright (C) 2010-2016 Combodo SARL
  3. //
  4. // This file is part of iTop.
  5. //
  6. // iTop is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // iTop is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with iTop. If not, see <http://www.gnu.org/licenses/>
  18. /**
  19. * Define filters for a given class of objects (formerly named "filter")
  20. *
  21. * @copyright Copyright (C) 2010-2016 Combodo SARL
  22. * @license http://opensource.org/licenses/AGPL-3.0
  23. */
  24. // Dev hack for disabling the some query build optimizations (Folding/Merging)
  25. define('ENABLE_OPT', true);
  26. class DBObjectSearch extends DBSearch
  27. {
  28. private $m_aClasses; // queried classes (alias => class name), the first item is the class corresponding to this filter (the rest is coming from subfilters)
  29. private $m_aSelectedClasses; // selected for the output (alias => class name)
  30. private $m_oSearchCondition;
  31. private $m_aParams;
  32. private $m_aFullText;
  33. private $m_aPointingTo;
  34. private $m_aReferencedBy;
  35. // By default, some information may be hidden to the current user
  36. // But it may happen that we need to disable that feature
  37. protected $m_bAllowAllData = false;
  38. protected $m_bDataFiltered = false;
  39. public function __construct($sClass, $sClassAlias = null)
  40. {
  41. parent::__construct();
  42. if (is_null($sClassAlias)) $sClassAlias = $sClass;
  43. if(!is_string($sClass)) throw new Exception('DBObjectSearch::__construct called with a non-string parameter: $sClass = '.print_r($sClass, true));
  44. if(!MetaModel::IsValidClass($sClass)) throw new Exception('DBObjectSearch::__construct called for an invalid class: "'.$sClass.'"');
  45. $this->m_aSelectedClasses = array($sClassAlias => $sClass);
  46. $this->m_aClasses = array($sClassAlias => $sClass);
  47. $this->m_oSearchCondition = new TrueExpression;
  48. $this->m_aParams = array();
  49. $this->m_aFullText = array();
  50. $this->m_aPointingTo = array();
  51. $this->m_aReferencedBy = array();
  52. }
  53. public function AllowAllData($bAllowAllData = true) {$this->m_bAllowAllData = $bAllowAllData;}
  54. public function IsAllDataAllowed() {return $this->m_bAllowAllData;}
  55. protected function IsDataFiltered() {return $this->m_bDataFiltered; }
  56. protected function SetDataFiltered() {$this->m_bDataFiltered = true;}
  57. // Create a search definition that leads to 0 result, still a valid search object
  58. static public function FromEmptySet($sClass)
  59. {
  60. $oResultFilter = new DBObjectSearch($sClass);
  61. $oResultFilter->m_oSearchCondition = new FalseExpression;
  62. return $oResultFilter;
  63. }
  64. public function GetJoinedClasses() {return $this->m_aClasses;}
  65. public function GetClassName($sAlias)
  66. {
  67. if (array_key_exists($sAlias, $this->m_aSelectedClasses))
  68. {
  69. return $this->m_aSelectedClasses[$sAlias];
  70. }
  71. else
  72. {
  73. throw new CoreException("Invalid class alias '$sAlias'");
  74. }
  75. }
  76. public function GetClass()
  77. {
  78. return reset($this->m_aSelectedClasses);
  79. }
  80. public function GetClassAlias()
  81. {
  82. reset($this->m_aSelectedClasses);
  83. return key($this->m_aSelectedClasses);
  84. }
  85. public function GetFirstJoinedClass()
  86. {
  87. return reset($this->m_aClasses);
  88. }
  89. public function GetFirstJoinedClassAlias()
  90. {
  91. reset($this->m_aClasses);
  92. return key($this->m_aClasses);
  93. }
  94. /**
  95. * Change the class (only subclasses are supported as of now, because the conditions must fit the new class)
  96. * Defaults to the first selected class (most of the time it is also the first joined class
  97. */
  98. public function ChangeClass($sNewClass, $sAlias = null)
  99. {
  100. if (is_null($sAlias))
  101. {
  102. $sAlias = $this->GetClassAlias();
  103. }
  104. else
  105. {
  106. if (!array_key_exists($sAlias, $this->m_aSelectedClasses))
  107. {
  108. // discard silently - necessary when recursing on the related nodes (see code below)
  109. return;
  110. }
  111. }
  112. $sCurrClass = $this->GetClassName($sAlias);
  113. if ($sNewClass == $sCurrClass)
  114. {
  115. // Skip silently
  116. return;
  117. }
  118. if (!MetaModel::IsParentClass($sCurrClass, $sNewClass))
  119. {
  120. throw new Exception("Could not change the search class from '$sCurrClass' to '$sNewClass'. Only child classes are permitted.");
  121. }
  122. // Change for this node
  123. //
  124. $this->m_aSelectedClasses[$sAlias] = $sNewClass;
  125. $this->m_aClasses[$sAlias] = $sNewClass;
  126. // Change for all the related node (yes, this was necessary with some queries - strange effects otherwise)
  127. //
  128. foreach($this->m_aPointingTo as $sExtKeyAttCode=>$aPointingTo)
  129. {
  130. foreach($aPointingTo as $iOperatorCode => $aFilter)
  131. {
  132. foreach($aFilter as $oExtFilter)
  133. {
  134. $oExtFilter->ChangeClass($sNewClass, $sAlias);
  135. }
  136. }
  137. }
  138. foreach($this->m_aReferencedBy as $sForeignClass => $aReferences)
  139. {
  140. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  141. {
  142. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  143. {
  144. foreach ($aFilters as $oForeignFilter)
  145. {
  146. $oForeignFilter->ChangeClass($sNewClass, $sAlias);
  147. }
  148. }
  149. }
  150. }
  151. }
  152. public function GetSelectedClasses()
  153. {
  154. return $this->m_aSelectedClasses;
  155. }
  156. /**
  157. * @param array $aSelectedClasses array of aliases
  158. * @throws CoreException
  159. */
  160. public function SetSelectedClasses($aSelectedClasses)
  161. {
  162. $this->m_aSelectedClasses = array();
  163. foreach ($aSelectedClasses as $sAlias)
  164. {
  165. if (!array_key_exists($sAlias, $this->m_aClasses))
  166. {
  167. throw new CoreException("SetSelectedClasses: Invalid class alias $sAlias");
  168. }
  169. $this->m_aSelectedClasses[$sAlias] = $this->m_aClasses[$sAlias];
  170. }
  171. }
  172. /**
  173. * Change any alias of the query tree
  174. *
  175. * @param $sOldName
  176. * @param $sNewName
  177. * @return bool True if the alias has been found and changed
  178. */
  179. public function RenameAlias($sOldName, $sNewName)
  180. {
  181. $bFound = false;
  182. if (array_key_exists($sOldName, $this->m_aClasses))
  183. {
  184. $bFound = true;
  185. }
  186. if (array_key_exists($sNewName, $this->m_aClasses))
  187. {
  188. throw new Exception("RenameAlias: alias '$sNewName' already used");
  189. }
  190. $aClasses = array();
  191. foreach ($this->m_aClasses as $sAlias => $sClass)
  192. {
  193. if ($sAlias === $sOldName)
  194. {
  195. $aClasses[$sNewName] = $sClass;
  196. }
  197. else
  198. {
  199. $aClasses[$sAlias] = $sClass;
  200. }
  201. }
  202. $this->m_aClasses = $aClasses;
  203. $aSelectedClasses = array();
  204. foreach ($this->m_aSelectedClasses as $sAlias => $sClass)
  205. {
  206. if ($sAlias === $sOldName)
  207. {
  208. $aSelectedClasses[$sNewName] = $sClass;
  209. }
  210. else
  211. {
  212. $aSelectedClasses[$sAlias] = $sClass;
  213. }
  214. }
  215. $this->m_aSelectedClasses = $aSelectedClasses;
  216. $this->m_oSearchCondition->RenameAlias($sOldName, $sNewName);
  217. foreach($this->m_aPointingTo as $sExtKeyAttCode=>$aPointingTo)
  218. {
  219. foreach($aPointingTo as $iOperatorCode => $aFilter)
  220. {
  221. foreach($aFilter as $oExtFilter)
  222. {
  223. $bFound = $oExtFilter->RenameAlias($sOldName, $sNewName) || $bFound;
  224. }
  225. }
  226. }
  227. foreach($this->m_aReferencedBy as $sForeignClass => $aReferences)
  228. {
  229. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  230. {
  231. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  232. {
  233. foreach ($aFilters as $oForeignFilter)
  234. {
  235. $bFound = $oForeignFilter->RenameAlias($sOldName, $sNewName) || $bFound;
  236. }
  237. }
  238. }
  239. }
  240. return $bFound;
  241. }
  242. public function SetModifierProperty($sPluginClass, $sProperty, $value)
  243. {
  244. $this->m_aModifierProperties[$sPluginClass][$sProperty] = $value;
  245. }
  246. public function GetModifierProperties($sPluginClass)
  247. {
  248. if (array_key_exists($sPluginClass, $this->m_aModifierProperties))
  249. {
  250. return $this->m_aModifierProperties[$sPluginClass];
  251. }
  252. else
  253. {
  254. return array();
  255. }
  256. }
  257. public function IsAny()
  258. {
  259. if (!$this->m_oSearchCondition->IsTrue()) return false;
  260. if (count($this->m_aFullText) > 0) return false;
  261. if (count($this->m_aPointingTo) > 0) return false;
  262. if (count($this->m_aReferencedBy) > 0) return false;
  263. return true;
  264. }
  265. protected function TransferConditionExpression($oFilter, $aTranslation)
  266. {
  267. // Prevent collisions in the parameter names by renaming them if needed
  268. foreach($this->m_aParams as $sParam => $value)
  269. {
  270. if (array_key_exists($sParam, $oFilter->m_aParams) && ($value != $oFilter->m_aParams[$sParam]))
  271. {
  272. // Generate a new and unique name for the collinding parameter
  273. $index = 1;
  274. while(array_key_exists($sParam.$index, $oFilter->m_aParams))
  275. {
  276. $index++;
  277. }
  278. $secondValue = $oFilter->m_aParams[$sParam];
  279. $oFilter->RenameParam($sParam, $sParam.$index);
  280. unset($oFilter->m_aParams[$sParam]);
  281. $oFilter->m_aParams[$sParam.$index] = $secondValue;
  282. }
  283. }
  284. $oTranslated = $oFilter->GetCriteria()->Translate($aTranslation, false, false /* leave unresolved fields */);
  285. $this->AddConditionExpression($oTranslated);
  286. $this->m_aParams = array_merge($this->m_aParams, $oFilter->m_aParams);
  287. }
  288. protected function RenameParam($sOldName, $sNewName)
  289. {
  290. $this->m_oSearchCondition->RenameParam($sOldName, $sNewName);
  291. foreach($this->m_aPointingTo as $sExtKeyAttCode=>$aPointingTo)
  292. {
  293. foreach($aPointingTo as $iOperatorCode => $aFilter)
  294. {
  295. foreach($aFilter as $oExtFilter)
  296. {
  297. $oExtFilter->RenameParam($sOldName, $sNewName);
  298. }
  299. }
  300. }
  301. foreach($this->m_aReferencedBy as $sForeignClass => $aReferences)
  302. {
  303. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  304. {
  305. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  306. {
  307. foreach ($aFilters as $oForeignFilter)
  308. {
  309. $oForeignFilter->RenameParam($sOldName, $sNewName);
  310. }
  311. }
  312. }
  313. }
  314. }
  315. public function ResetCondition()
  316. {
  317. $this->m_oSearchCondition = new TrueExpression();
  318. // ? is that usefull/enough, do I need to rebuild the list after the subqueries ?
  319. }
  320. public function MergeConditionExpression($oExpression)
  321. {
  322. $this->m_oSearchCondition = $this->m_oSearchCondition->LogOr($oExpression);
  323. }
  324. public function AddConditionExpression($oExpression)
  325. {
  326. $this->m_oSearchCondition = $this->m_oSearchCondition->LogAnd($oExpression);
  327. }
  328. public function AddNameCondition($sName)
  329. {
  330. $oValueExpr = new ScalarExpression($sName);
  331. $oNameExpr = new FieldExpression('friendlyname', $this->GetClassAlias());
  332. $oNewCondition = new BinaryExpression($oNameExpr, '=', $oValueExpr);
  333. $this->AddConditionExpression($oNewCondition);
  334. }
  335. public function AddCondition($sFilterCode, $value, $sOpCode = null, $bParseSeachString = false)
  336. {
  337. MyHelpers::CheckKeyInArray('filter code in class: '.$this->GetClass(), $sFilterCode, MetaModel::GetClassFilterDefs($this->GetClass()));
  338. $oFilterDef = MetaModel::GetClassFilterDef($this->GetClass(), $sFilterCode);
  339. $oField = new FieldExpression($sFilterCode, $this->GetClassAlias());
  340. if (empty($sOpCode))
  341. {
  342. if ($sFilterCode == 'id')
  343. {
  344. $sOpCode = '=';
  345. }
  346. else
  347. {
  348. $oAttDef = MetaModel::GetAttributeDef($this->GetClass(), $sFilterCode);
  349. $oNewCondition = $oAttDef->GetSmartConditionExpression($value, $oField, $this->m_aParams, $bParseSeachString);
  350. $this->AddConditionExpression($oNewCondition);
  351. return;
  352. }
  353. }
  354. MyHelpers::CheckKeyInArray('operator', $sOpCode, $oFilterDef->GetOperators());
  355. // Parse search strings if needed and if the filter code corresponds to a valid attcode
  356. if($bParseSeachString && MetaModel::IsValidAttCode($this->GetClass(), $sFilterCode))
  357. {
  358. $oAttDef = MetaModel::GetAttributeDef($sClass, $sFilterCode);
  359. $value = $oAttDef->ParseSearchString($value);
  360. }
  361. // Preserve backward compatibility - quick n'dirty way to change that API semantic
  362. //
  363. switch($sOpCode)
  364. {
  365. case 'SameDay':
  366. case 'SameMonth':
  367. case 'SameYear':
  368. case 'Today':
  369. case '>|':
  370. case '<|':
  371. case '=|':
  372. throw new CoreException('Deprecated operator, please consider using OQL (SQL) expressions like "(TO_DAYS(NOW()) - TO_DAYS(x)) AS AgeDays"', array('operator' => $sOpCode));
  373. break;
  374. case "IN":
  375. if (!is_array($value)) $value = array($value);
  376. $sListExpr = '('.implode(', ', CMDBSource::Quote($value)).')';
  377. $sOQLCondition = $oField->Render()." IN $sListExpr";
  378. break;
  379. case "NOTIN":
  380. if (!is_array($value)) $value = array($value);
  381. $sListExpr = '('.implode(', ', CMDBSource::Quote($value)).')';
  382. $sOQLCondition = $oField->Render()." NOT IN $sListExpr";
  383. break;
  384. case 'Contains':
  385. $this->m_aParams[$sFilterCode] = "%$value%";
  386. $sOperator = 'LIKE';
  387. break;
  388. case 'Begins with':
  389. $this->m_aParams[$sFilterCode] = "$value%";
  390. $sOperator = 'LIKE';
  391. break;
  392. case 'Finishes with':
  393. $this->m_aParams[$sFilterCode] = "%$value";
  394. $sOperator = 'LIKE';
  395. break;
  396. default:
  397. $this->m_aParams[$sFilterCode] = $value;
  398. $sOperator = $sOpCode;
  399. }
  400. switch($sOpCode)
  401. {
  402. case "IN":
  403. case "NOTIN":
  404. $oNewCondition = Expression::FromOQL($sOQLCondition);
  405. break;
  406. case 'Contains':
  407. case 'Begins with':
  408. case 'Finishes with':
  409. default:
  410. $oRightExpr = new VariableExpression($sFilterCode);
  411. $oNewCondition = new BinaryExpression($oField, $sOperator, $oRightExpr);
  412. }
  413. $this->AddConditionExpression($oNewCondition);
  414. }
  415. /**
  416. * Specify a condition on external keys or link sets
  417. * @param sAttSpec Can be either an attribute code or extkey->[sAttSpec] or linkset->[sAttSpec] and so on, recursively
  418. * Example: infra_list->ci_id->location_id->country
  419. * @param value The value to match (can be an array => IN(val1, val2...)
  420. * @return void
  421. */
  422. public function AddConditionAdvanced($sAttSpec, $value)
  423. {
  424. $sClass = $this->GetClass();
  425. $iPos = strpos($sAttSpec, '->');
  426. if ($iPos !== false)
  427. {
  428. $sAttCode = substr($sAttSpec, 0, $iPos);
  429. $sSubSpec = substr($sAttSpec, $iPos + 2);
  430. if (!MetaModel::IsValidAttCode($sClass, $sAttCode))
  431. {
  432. throw new Exception("Invalid attribute code '$sClass/$sAttCode' in condition specification '$sAttSpec'");
  433. }
  434. $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
  435. if ($oAttDef->IsLinkSet())
  436. {
  437. $sTargetClass = $oAttDef->GetLinkedClass();
  438. $sExtKeyToMe = $oAttDef->GetExtKeyToMe();
  439. $oNewFilter = new DBObjectSearch($sTargetClass);
  440. $oNewFilter->AddConditionAdvanced($sSubSpec, $value);
  441. $this->AddCondition_ReferencedBy($oNewFilter, $sExtKeyToMe);
  442. }
  443. elseif ($oAttDef->IsExternalKey(EXTKEY_ABSOLUTE))
  444. {
  445. $sTargetClass = $oAttDef->GetTargetClass(EXTKEY_ABSOLUTE);
  446. $oNewFilter = new DBObjectSearch($sTargetClass);
  447. $oNewFilter->AddConditionAdvanced($sSubSpec, $value);
  448. $this->AddCondition_PointingTo($oNewFilter, $sAttCode);
  449. }
  450. else
  451. {
  452. throw new Exception("Attribute specification '$sAttSpec', '$sAttCode' should be either a link set or an external key");
  453. }
  454. }
  455. else
  456. {
  457. // $sAttSpec is an attribute code
  458. //
  459. if (is_array($value))
  460. {
  461. $oField = new FieldExpression($sAttSpec, $this->GetClass());
  462. $oListExpr = ListExpression::FromScalars($value);
  463. $oInValues = new BinaryExpression($oField, 'IN', $oListExpr);
  464. $this->AddConditionExpression($oInValues);
  465. }
  466. else
  467. {
  468. $this->AddCondition($sAttSpec, $value);
  469. }
  470. }
  471. }
  472. public function AddCondition_FullText($sFullText)
  473. {
  474. $this->m_aFullText[] = $sFullText;
  475. }
  476. protected function AddToNameSpace(&$aClassAliases, &$aAliasTranslation, $bTranslateMainAlias = true)
  477. {
  478. if ($bTranslateMainAlias)
  479. {
  480. $sOrigAlias = $this->GetFirstJoinedClassAlias();
  481. if (array_key_exists($sOrigAlias, $aClassAliases))
  482. {
  483. $sNewAlias = MetaModel::GenerateUniqueAlias($aClassAliases, $sOrigAlias, $this->GetFirstJoinedClass());
  484. if (isset($this->m_aSelectedClasses[$sOrigAlias]))
  485. {
  486. $this->m_aSelectedClasses[$sNewAlias] = $this->GetFirstJoinedClass();
  487. unset($this->m_aSelectedClasses[$sOrigAlias]);
  488. }
  489. // TEMPORARY ALGORITHM (m_aClasses is not correctly updated, it is not possible to add a subtree onto a subnode)
  490. // Replace the element at the same position (unset + set is not enough because the hash array is ordered)
  491. $aPrevList = $this->m_aClasses;
  492. $this->m_aClasses = array();
  493. foreach ($aPrevList as $sSomeAlias => $sSomeClass)
  494. {
  495. if ($sSomeAlias == $sOrigAlias)
  496. {
  497. $this->m_aClasses[$sNewAlias] = $sSomeClass; // note: GetFirstJoinedClass now returns '' !!!
  498. }
  499. else
  500. {
  501. $this->m_aClasses[$sSomeAlias] = $sSomeClass;
  502. }
  503. }
  504. // Translate the condition expression with the new alias
  505. $aAliasTranslation[$sOrigAlias]['*'] = $sNewAlias;
  506. }
  507. // add the alias into the filter aliases list
  508. $aClassAliases[$this->GetFirstJoinedClassAlias()] = $this->GetFirstJoinedClass();
  509. }
  510. foreach($this->m_aPointingTo as $sExtKeyAttCode=>$aPointingTo)
  511. {
  512. foreach($aPointingTo as $iOperatorCode => $aFilter)
  513. {
  514. foreach($aFilter as $oFilter)
  515. {
  516. $oFilter->AddToNameSpace($aClassAliases, $aAliasTranslation);
  517. }
  518. }
  519. }
  520. foreach($this->m_aReferencedBy as $sForeignClass=>$aReferences)
  521. {
  522. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  523. {
  524. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  525. {
  526. foreach ($aFilters as $oForeignFilter)
  527. {
  528. $oForeignFilter->AddToNameSpace($aClassAliases, $aAliasTranslation);
  529. }
  530. }
  531. }
  532. }
  533. }
  534. // Browse the tree nodes recursively
  535. //
  536. protected function GetNode($sAlias)
  537. {
  538. if ($this->GetFirstJoinedClassAlias() == $sAlias)
  539. {
  540. return $this;
  541. }
  542. else
  543. {
  544. foreach($this->m_aPointingTo as $sExtKeyAttCode=>$aPointingTo)
  545. {
  546. foreach($aPointingTo as $iOperatorCode => $aFilter)
  547. {
  548. foreach($aFilter as $oFilter)
  549. {
  550. $ret = $oFilter->GetNode($sAlias);
  551. if (is_object($ret))
  552. {
  553. return $ret;
  554. }
  555. }
  556. }
  557. }
  558. foreach($this->m_aReferencedBy as $sForeignClass=>$aReferences)
  559. {
  560. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  561. {
  562. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  563. {
  564. foreach ($aFilters as $oForeignFilter)
  565. {
  566. $ret = $oForeignFilter->GetNode($sAlias);
  567. if (is_object($ret))
  568. {
  569. return $ret;
  570. }
  571. }
  572. }
  573. }
  574. }
  575. }
  576. // Not found
  577. return null;
  578. }
  579. /**
  580. * Helper to
  581. * - convert a translation table (format optimized for the translation in an expression tree) into simple hash
  582. * - compile over an eventually existing map
  583. *
  584. * @param $aRealiasingMap Map to update
  585. * @param $aAliasTranslation Translation table resulting from calls to MergeWith_InNamespace
  586. * @return array of <old-alias> => <new-alias>
  587. */
  588. protected function UpdateRealiasingMap(&$aRealiasingMap, $aAliasTranslation)
  589. {
  590. if ($aRealiasingMap !== null)
  591. {
  592. foreach ($aAliasTranslation as $sPrevAlias => $aRules)
  593. {
  594. if (isset($aRules['*']))
  595. {
  596. $sNewAlias = $aRules['*'];
  597. $sOriginalAlias = array_search($sPrevAlias, $aRealiasingMap);
  598. if ($sOriginalAlias !== false)
  599. {
  600. $aRealiasingMap[$sOriginalAlias] = $sNewAlias;
  601. }
  602. else
  603. {
  604. $aRealiasingMap[$sPrevAlias] = $sNewAlias;
  605. }
  606. }
  607. }
  608. }
  609. }
  610. /**
  611. * Completes the list of alias=>class by browsing the whole structure recursively
  612. * This a workaround to handle some cases in which the list of classes is not correctly updated.
  613. * This code should disappear as soon as DBObjectSearch get split between a container search class and a Node class
  614. *
  615. * @param $aClasses List to be completed
  616. */
  617. protected function RecomputeClassList(&$aClasses)
  618. {
  619. $aClasses[$this->GetFirstJoinedClassAlias()] = $this->GetFirstJoinedClass();
  620. // Recurse in the query tree
  621. foreach($this->m_aPointingTo as $sExtKeyAttCode=>$aPointingTo)
  622. {
  623. foreach($aPointingTo as $iOperatorCode => $aFilter)
  624. {
  625. foreach($aFilter as $oFilter)
  626. {
  627. $oFilter->RecomputeClassList($aClasses);
  628. }
  629. }
  630. }
  631. foreach($this->m_aReferencedBy as $sForeignClass=>$aReferences)
  632. {
  633. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  634. {
  635. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  636. {
  637. foreach ($aFilters as $oForeignFilter)
  638. {
  639. $oForeignFilter->RecomputeClassList($aClasses);
  640. }
  641. }
  642. }
  643. }
  644. }
  645. /**
  646. * @param DBObjectSearch $oFilter
  647. * @param $sExtKeyAttCode
  648. * @param int $iOperatorCode
  649. * @param null $aRealiasingMap array of <old-alias> => <new-alias>, for each alias that has changed
  650. * @throws CoreException
  651. * @throws CoreWarning
  652. */
  653. public function AddCondition_PointingTo(DBObjectSearch $oFilter, $sExtKeyAttCode, $iOperatorCode = TREE_OPERATOR_EQUALS, &$aRealiasingMap = null)
  654. {
  655. if (!MetaModel::IsValidKeyAttCode($this->GetClass(), $sExtKeyAttCode))
  656. {
  657. throw new CoreWarning("The attribute code '$sExtKeyAttCode' is not an external key of the class '{$this->GetClass()}'");
  658. }
  659. $oAttExtKey = MetaModel::GetAttributeDef($this->GetClass(), $sExtKeyAttCode);
  660. if(!MetaModel::IsSameFamilyBranch($oFilter->GetClass(), $oAttExtKey->GetTargetClass()))
  661. {
  662. throw new CoreException("The specified filter (pointing to {$oFilter->GetClass()}) is not compatible with the key '{$this->GetClass()}::$sExtKeyAttCode', which is pointing to {$oAttExtKey->GetTargetClass()}");
  663. }
  664. if(($iOperatorCode != TREE_OPERATOR_EQUALS) && !($oAttExtKey instanceof AttributeHierarchicalKey))
  665. {
  666. throw new CoreException("The specified tree operator $iOperatorCode is not applicable to the key '{$this->GetClass()}::$sExtKeyAttCode', which is not a HierarchicalKey");
  667. }
  668. // Note: though it seems to be a good practice to clone the given source filter
  669. // (as it was done and fixed an issue in Intersect())
  670. // this was not implemented here because it was causing a regression (login as admin, select an org, click on any badge)
  671. // root cause: FromOQL relies on the fact that the passed filter can be modified later
  672. // NO: $oFilter = $oFilter->DeepClone();
  673. // See also: Trac #639, and self::AddCondition_ReferencedBy()
  674. $aAliasTranslation = array();
  675. $res = $this->AddCondition_PointingTo_InNameSpace($oFilter, $sExtKeyAttCode, $this->m_aClasses, $aAliasTranslation, $iOperatorCode);
  676. $this->TransferConditionExpression($oFilter, $aAliasTranslation);
  677. $this->UpdateRealiasingMap($aRealiasingMap, $aAliasTranslation);
  678. if (ENABLE_OPT && ($oFilter->GetClass() == $oFilter->GetFirstJoinedClass()))
  679. {
  680. if (isset($oFilter->m_aReferencedBy[$this->GetClass()][$sExtKeyAttCode][$iOperatorCode]))
  681. {
  682. // Optimization - fold sibling query
  683. $oRemoteFilter = $oFilter->m_aReferencedBy[$this->GetClass()][$sExtKeyAttCode][$iOperatorCode][0];
  684. $aAliasTranslation = array();
  685. $this->MergeWith_InNamespace($oRemoteFilter, $this->m_aClasses, $aAliasTranslation);
  686. unset($oFilter->m_aReferencedBy[$this->GetClass()][$sExtKeyAttCode][$iOperatorCode]);
  687. $this->m_oSearchCondition = $this->m_oSearchCondition->Translate($aAliasTranslation, false, false);
  688. $this->UpdateRealiasingMap($aRealiasingMap, $aAliasTranslation);
  689. }
  690. }
  691. $this->RecomputeClassList($this->m_aClasses);
  692. return $res;
  693. }
  694. protected function AddCondition_PointingTo_InNameSpace(DBObjectSearch $oFilter, $sExtKeyAttCode, &$aClassAliases, &$aAliasTranslation, $iOperatorCode)
  695. {
  696. // Find the node on which the new tree must be attached (most of the time it is "this")
  697. $oReceivingFilter = $this->GetNode($this->GetClassAlias());
  698. if (ENABLE_OPT && isset($oReceivingFilter->m_aPointingTo[$sExtKeyAttCode][$iOperatorCode]))
  699. {
  700. $oExisting = $oReceivingFilter->m_aPointingTo[$sExtKeyAttCode][$iOperatorCode][0];
  701. $oExisting->MergeWith_InNamespace($oFilter, $oExisting->m_aClasses, $aAliasTranslation);
  702. }
  703. else
  704. {
  705. $oFilter->AddToNamespace($aClassAliases, $aAliasTranslation);
  706. $oReceivingFilter->m_aPointingTo[$sExtKeyAttCode][$iOperatorCode][] = $oFilter;
  707. }
  708. }
  709. /**
  710. * @param DBObjectSearch $oFilter
  711. * @param $sForeignExtKeyAttCode
  712. * @param int $iOperatorCode
  713. * @param null $aRealiasingMap array of <old-alias> => <new-alias>, for each alias that has changed
  714. */
  715. public function AddCondition_ReferencedBy(DBObjectSearch $oFilter, $sForeignExtKeyAttCode, $iOperatorCode = TREE_OPERATOR_EQUALS, &$aRealiasingMap = null)
  716. {
  717. $sForeignClass = $oFilter->GetClass();
  718. if (!MetaModel::IsValidKeyAttCode($sForeignClass, $sForeignExtKeyAttCode))
  719. {
  720. throw new CoreException("The attribute code '$sForeignExtKeyAttCode' is not an external key of the class '{$sForeignClass}'");
  721. }
  722. $oAttExtKey = MetaModel::GetAttributeDef($sForeignClass, $sForeignExtKeyAttCode);
  723. if(!MetaModel::IsSameFamilyBranch($this->GetClass(), $oAttExtKey->GetTargetClass()))
  724. {
  725. // à refaire en spécifique dans FromOQL
  726. throw new CoreException("The specified filter (objects referencing an object of class {$this->GetClass()}) is not compatible with the key '{$sForeignClass}::$sForeignExtKeyAttCode', which is pointing to {$oAttExtKey->GetTargetClass()}");
  727. }
  728. // Note: though it seems to be a good practice to clone the given source filter
  729. // (as it was done and fixed an issue in Intersect())
  730. // this was not implemented here because it was causing a regression (login as admin, select an org, click on any badge)
  731. // root cause: FromOQL relies on the fact that the passed filter can be modified later
  732. // NO: $oFilter = $oFilter->DeepClone();
  733. // See also: Trac #639, and self::AddCondition_PointingTo()
  734. $aAliasTranslation = array();
  735. $res = $this->AddCondition_ReferencedBy_InNameSpace($oFilter, $sForeignExtKeyAttCode, $this->m_aClasses, $aAliasTranslation, $iOperatorCode);
  736. $this->TransferConditionExpression($oFilter, $aAliasTranslation);
  737. $this->UpdateRealiasingMap($aRealiasingMap, $aAliasTranslation);
  738. if (ENABLE_OPT && ($oFilter->GetClass() == $oFilter->GetFirstJoinedClass()))
  739. {
  740. if (isset($oFilter->m_aPointingTo[$sForeignExtKeyAttCode][$iOperatorCode]))
  741. {
  742. // Optimization - fold sibling query
  743. $oRemoteFilter = $oFilter->m_aPointingTo[$sForeignExtKeyAttCode][$iOperatorCode][0];
  744. $aAliasTranslation = array();
  745. $this->MergeWith_InNamespace($oRemoteFilter, $this->m_aClasses, $aAliasTranslation);
  746. unset($oFilter->m_aPointingTo[$sForeignExtKeyAttCode][$iOperatorCode]);
  747. $this->m_oSearchCondition = $this->m_oSearchCondition->Translate($aAliasTranslation, false, false);
  748. $this->UpdateRealiasingMap($aRealiasingMap, $aAliasTranslation);
  749. }
  750. }
  751. $this->RecomputeClassList($this->m_aClasses);
  752. return $res;
  753. }
  754. protected function AddCondition_ReferencedBy_InNameSpace(DBSearch $oFilter, $sForeignExtKeyAttCode, &$aClassAliases, &$aAliasTranslation, $iOperatorCode)
  755. {
  756. $sForeignClass = $oFilter->GetClass();
  757. // Find the node on which the new tree must be attached (most of the time it is "this")
  758. $oReceivingFilter = $this->GetNode($this->GetClassAlias());
  759. if (ENABLE_OPT && isset($oReceivingFilter->m_aReferencedBy[$sForeignClass][$sForeignExtKeyAttCode][$iOperatorCode]))
  760. {
  761. $oExisting = $oReceivingFilter->m_aReferencedBy[$sForeignClass][$sForeignExtKeyAttCode][$iOperatorCode][0];
  762. $oExisting->MergeWith_InNamespace($oFilter, $oExisting->m_aClasses, $aAliasTranslation);
  763. }
  764. else
  765. {
  766. $oFilter->AddToNamespace($aClassAliases, $aAliasTranslation);
  767. $oReceivingFilter->m_aReferencedBy[$sForeignClass][$sForeignExtKeyAttCode][$iOperatorCode][] = $oFilter;
  768. }
  769. }
  770. public function Intersect(DBSearch $oFilter)
  771. {
  772. if ($oFilter instanceof DBUnionSearch)
  773. {
  774. // Develop!
  775. $aFilters = $oFilter->GetSearches();
  776. }
  777. else
  778. {
  779. $aFilters = array($oFilter);
  780. }
  781. $aSearches = array();
  782. foreach ($aFilters as $oRightFilter)
  783. {
  784. // Limitation: the queried class must be the first declared class
  785. if ($this->GetFirstJoinedClassAlias() != $this->GetClassAlias())
  786. {
  787. throw new CoreException("Limitation: cannot merge two queries if the queried class ({$this->GetClass()} AS {$this->GetClassAlias()}) is not the first joined class ({$this->GetFirstJoinedClass()} AS {$this->GetFirstJoinedClassAlias()})");
  788. }
  789. if ($oRightFilter->GetFirstJoinedClassAlias() != $oRightFilter->GetClassAlias())
  790. {
  791. throw new CoreException("Limitation: cannot merge two queries if the queried class ({$oRightFilter->GetClass()} AS {$oRightFilter->GetClassAlias()}) is not the first joined class ({$oRightFilter->GetFirstJoinedClass()} AS {$oRightFilter->GetFirstJoinedClassAlias()})");
  792. }
  793. $oLeftFilter = $this->DeepClone();
  794. $oRightFilter = $oRightFilter->DeepClone();
  795. $bAllowAllData = ($oLeftFilter->IsAllDataAllowed() && $oRightFilter->IsAllDataAllowed());
  796. $oLeftFilter->AllowAllData($bAllowAllData);
  797. if ($oLeftFilter->GetClass() != $oRightFilter->GetClass())
  798. {
  799. if (MetaModel::IsParentClass($oLeftFilter->GetClass(), $oRightFilter->GetClass()))
  800. {
  801. // Specialize $oLeftFilter
  802. $oLeftFilter->ChangeClass($oRightFilter->GetClass());
  803. }
  804. elseif (MetaModel::IsParentClass($oRightFilter->GetClass(), $oLeftFilter->GetClass()))
  805. {
  806. // Specialize $oRightFilter
  807. $oRightFilter->ChangeClass($oLeftFilter->GetClass());
  808. }
  809. else
  810. {
  811. throw new CoreException("Attempting to merge a filter of class '{$oLeftFilter->GetClass()}' with a filter of class '{$oRightFilter->GetClass()}'");
  812. }
  813. }
  814. $aAliasTranslation = array();
  815. $oLeftFilter->MergeWith_InNamespace($oRightFilter, $oLeftFilter->m_aClasses, $aAliasTranslation);
  816. $oLeftFilter->TransferConditionExpression($oRightFilter, $aAliasTranslation);
  817. $aSearches[] = $oLeftFilter;
  818. }
  819. if (count($aSearches) == 1)
  820. {
  821. // return a DBObjectSearch
  822. return $aSearches[0];
  823. }
  824. else
  825. {
  826. return new DBUnionSearch($aSearches);
  827. }
  828. }
  829. protected function MergeWith_InNamespace($oFilter, &$aClassAliases, &$aAliasTranslation)
  830. {
  831. if ($this->GetClass() != $oFilter->GetClass())
  832. {
  833. throw new CoreException("Attempting to merge a filter of class '{$this->GetClass()}' with a filter of class '{$oFilter->GetClass()}'");
  834. }
  835. // Translate search condition into our aliasing scheme
  836. $aAliasTranslation[$oFilter->GetClassAlias()]['*'] = $this->GetClassAlias();
  837. $this->m_aFullText = array_merge($this->m_aFullText, $oFilter->m_aFullText);
  838. foreach($oFilter->m_aPointingTo as $sExtKeyAttCode=>$aPointingTo)
  839. {
  840. foreach($aPointingTo as $iOperatorCode => $aFilter)
  841. {
  842. foreach($aFilter as $oExtFilter)
  843. {
  844. $this->AddCondition_PointingTo_InNamespace($oExtFilter, $sExtKeyAttCode, $aClassAliases, $aAliasTranslation, $iOperatorCode);
  845. }
  846. }
  847. }
  848. foreach($oFilter->m_aReferencedBy as $sForeignClass => $aReferences)
  849. {
  850. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  851. {
  852. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  853. {
  854. foreach ($aFilters as $oForeignFilter)
  855. {
  856. $this->AddCondition_ReferencedBy_InNamespace($oForeignFilter, $sForeignExtKeyAttCode, $aClassAliases, $aAliasTranslation, $iOperatorCode);
  857. }
  858. }
  859. }
  860. }
  861. }
  862. public function GetCriteria() {return $this->m_oSearchCondition;}
  863. public function GetCriteria_FullText() {return $this->m_aFullText;}
  864. protected function GetCriteria_PointingTo($sKeyAttCode = "")
  865. {
  866. if (empty($sKeyAttCode))
  867. {
  868. return $this->m_aPointingTo;
  869. }
  870. if (!array_key_exists($sKeyAttCode, $this->m_aPointingTo)) return array();
  871. return $this->m_aPointingTo[$sKeyAttCode];
  872. }
  873. protected function GetCriteria_ReferencedBy()
  874. {
  875. return $this->m_aReferencedBy;
  876. }
  877. public function SetInternalParams($aParams)
  878. {
  879. return $this->m_aParams = $aParams;
  880. }
  881. public function GetInternalParams()
  882. {
  883. return $this->m_aParams;
  884. }
  885. public function GetQueryParams($bExcludeMagicParams = true)
  886. {
  887. $aParams = array();
  888. $this->m_oSearchCondition->Render($aParams, true);
  889. if ($bExcludeMagicParams)
  890. {
  891. $aRet = array();
  892. // Make the list of acceptable arguments... could be factorized with run_query, into oSearch->GetQueryParams($bExclude magic params)
  893. $aNakedMagicArguments = array();
  894. foreach (MetaModel::PrepareQueryArguments(array()) as $sArgName => $value)
  895. {
  896. $iPos = strpos($sArgName, '->object()');
  897. if ($iPos === false)
  898. {
  899. $aNakedMagicArguments[$sArgName] = $value;
  900. }
  901. else
  902. {
  903. $aNakedMagicArguments[substr($sArgName, 0, $iPos)] = true;
  904. }
  905. }
  906. foreach ($aParams as $sParam => $foo)
  907. {
  908. $iPos = strpos($sParam, '->');
  909. if ($iPos === false)
  910. {
  911. $sRefName = $sParam;
  912. }
  913. else
  914. {
  915. $sRefName = substr($sParam, 0, $iPos);
  916. }
  917. if (!array_key_exists($sRefName, $aNakedMagicArguments))
  918. {
  919. $aRet[$sParam] = $foo;
  920. }
  921. }
  922. }
  923. return $aRet;
  924. }
  925. public function ListConstantFields()
  926. {
  927. return $this->m_oSearchCondition->ListConstantFields();
  928. }
  929. /**
  930. * Turn the parameters (:xxx) into scalar values in order to easily
  931. * serialize a search
  932. */
  933. public function ApplyParameters($aArgs)
  934. {
  935. return $this->m_oSearchCondition->ApplyParameters(array_merge($this->m_aParams, $aArgs));
  936. }
  937. public function ToOQL($bDevelopParams = false, $aContextParams = null, $bWithAllowAllFlag = false)
  938. {
  939. // Currently unused, but could be useful later
  940. $bRetrofitParams = false;
  941. if ($bDevelopParams)
  942. {
  943. if (is_null($aContextParams))
  944. {
  945. $aParams = array_merge($this->m_aParams);
  946. }
  947. else
  948. {
  949. $aParams = array_merge($aContextParams, $this->m_aParams);
  950. }
  951. $aParams = MetaModel::PrepareQueryArguments($aParams);
  952. }
  953. else
  954. {
  955. // Leave it as is, the rendering will be made with parameters in clear
  956. $aParams = null;
  957. }
  958. $aSelectedAliases = array();
  959. foreach ($this->m_aSelectedClasses as $sAlias => $sClass)
  960. {
  961. $aSelectedAliases[] = '`' . $sAlias . '`';
  962. }
  963. $sSelectedClasses = implode(', ', $aSelectedAliases);
  964. $sRes = 'SELECT '.$sSelectedClasses.' FROM';
  965. $sRes .= ' ' . $this->GetFirstJoinedClass() . ' AS `' . $this->GetFirstJoinedClassAlias() . '`';
  966. $sRes .= $this->ToOQL_Joins();
  967. $sRes .= " WHERE ".$this->m_oSearchCondition->Render($aParams, $bRetrofitParams);
  968. // Temporary: add more info about other conditions, necessary to avoid strange behaviors with the cache
  969. foreach($this->m_aFullText as $sFullText)
  970. {
  971. $sRes .= " AND MATCHES '$sFullText'";
  972. }
  973. if ($bWithAllowAllFlag && $this->m_bAllowAllData)
  974. {
  975. $sRes .= " ALLOW ALL DATA";
  976. }
  977. return $sRes;
  978. }
  979. protected function OperatorCodeToOQL($iOperatorCode)
  980. {
  981. switch($iOperatorCode)
  982. {
  983. case TREE_OPERATOR_EQUALS:
  984. $sOperator = ' = ';
  985. break;
  986. case TREE_OPERATOR_BELOW:
  987. $sOperator = ' BELOW ';
  988. break;
  989. case TREE_OPERATOR_BELOW_STRICT:
  990. $sOperator = ' BELOW STRICT ';
  991. break;
  992. case TREE_OPERATOR_NOT_BELOW:
  993. $sOperator = ' NOT BELOW ';
  994. break;
  995. case TREE_OPERATOR_NOT_BELOW_STRICT:
  996. $sOperator = ' NOT BELOW STRICT ';
  997. break;
  998. case TREE_OPERATOR_ABOVE:
  999. $sOperator = ' ABOVE ';
  1000. break;
  1001. case TREE_OPERATOR_ABOVE_STRICT:
  1002. $sOperator = ' ABOVE STRICT ';
  1003. break;
  1004. case TREE_OPERATOR_NOT_ABOVE:
  1005. $sOperator = ' NOT ABOVE ';
  1006. break;
  1007. case TREE_OPERATOR_NOT_ABOVE_STRICT:
  1008. $sOperator = ' NOT ABOVE STRICT ';
  1009. break;
  1010. }
  1011. return $sOperator;
  1012. }
  1013. protected function ToOQL_Joins()
  1014. {
  1015. $sRes = '';
  1016. foreach($this->m_aPointingTo as $sExtKey => $aPointingTo)
  1017. {
  1018. foreach($aPointingTo as $iOperatorCode => $aFilter)
  1019. {
  1020. $sOperator = $this->OperatorCodeToOQL($iOperatorCode);
  1021. foreach($aFilter as $oFilter)
  1022. {
  1023. $sRes .= ' JOIN ' . $oFilter->GetFirstJoinedClass() . ' AS `' . $oFilter->GetFirstJoinedClassAlias() . '` ON `' . $this->GetFirstJoinedClassAlias() . '`.' . $sExtKey . $sOperator . '`' . $oFilter->GetFirstJoinedClassAlias() . '`.id';
  1024. $sRes .= $oFilter->ToOQL_Joins();
  1025. }
  1026. }
  1027. }
  1028. foreach($this->m_aReferencedBy as $sForeignClass=>$aReferences)
  1029. {
  1030. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  1031. {
  1032. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  1033. {
  1034. $sOperator = $this->OperatorCodeToOQL($iOperatorCode);
  1035. foreach ($aFilters as $oForeignFilter)
  1036. {
  1037. $sRes .= ' JOIN ' . $oForeignFilter->GetFirstJoinedClass() . ' AS `' . $oForeignFilter->GetFirstJoinedClassAlias() . '` ON `' . $oForeignFilter->GetFirstJoinedClassAlias() . '`.' . $sForeignExtKeyAttCode . $sOperator . '`' . $this->GetFirstJoinedClassAlias() . '`.id';
  1038. $sRes .= $oForeignFilter->ToOQL_Joins();
  1039. }
  1040. }
  1041. }
  1042. }
  1043. return $sRes;
  1044. }
  1045. protected function OQLExpressionToCondition($sQuery, $oExpression, $aClassAliases)
  1046. {
  1047. if ($oExpression instanceof BinaryOqlExpression)
  1048. {
  1049. $sOperator = $oExpression->GetOperator();
  1050. $oLeft = $this->OQLExpressionToCondition($sQuery, $oExpression->GetLeftExpr(), $aClassAliases);
  1051. $oRight = $this->OQLExpressionToCondition($sQuery, $oExpression->GetRightExpr(), $aClassAliases);
  1052. return new BinaryExpression($oLeft, $sOperator, $oRight);
  1053. }
  1054. elseif ($oExpression instanceof FieldOqlExpression)
  1055. {
  1056. $sClassAlias = $oExpression->GetParent();
  1057. $sFltCode = $oExpression->GetName();
  1058. if (empty($sClassAlias))
  1059. {
  1060. // Need to find the right alias
  1061. // Build an array of field => array of aliases
  1062. $aFieldClasses = array();
  1063. foreach($aClassAliases as $sAlias => $sReal)
  1064. {
  1065. foreach(MetaModel::GetFiltersList($sReal) as $sAnFltCode)
  1066. {
  1067. $aFieldClasses[$sAnFltCode][] = $sAlias;
  1068. }
  1069. }
  1070. $sClassAlias = $aFieldClasses[$sFltCode][0];
  1071. }
  1072. return new FieldExpression($sFltCode, $sClassAlias);
  1073. }
  1074. elseif ($oExpression instanceof VariableOqlExpression)
  1075. {
  1076. return new VariableExpression($oExpression->GetName());
  1077. }
  1078. elseif ($oExpression instanceof TrueOqlExpression)
  1079. {
  1080. return new TrueExpression;
  1081. }
  1082. elseif ($oExpression instanceof ScalarOqlExpression)
  1083. {
  1084. return new ScalarExpression($oExpression->GetValue());
  1085. }
  1086. elseif ($oExpression instanceof ListOqlExpression)
  1087. {
  1088. $aItems = array();
  1089. foreach ($oExpression->GetItems() as $oItemExpression)
  1090. {
  1091. $aItems[] = $this->OQLExpressionToCondition($sQuery, $oItemExpression, $aClassAliases);
  1092. }
  1093. return new ListExpression($aItems);
  1094. }
  1095. elseif ($oExpression instanceof FunctionOqlExpression)
  1096. {
  1097. $aArgs = array();
  1098. foreach ($oExpression->GetArgs() as $oArgExpression)
  1099. {
  1100. $aArgs[] = $this->OQLExpressionToCondition($sQuery, $oArgExpression, $aClassAliases);
  1101. }
  1102. return new FunctionExpression($oExpression->GetVerb(), $aArgs);
  1103. }
  1104. elseif ($oExpression instanceof IntervalOqlExpression)
  1105. {
  1106. return new IntervalExpression($oExpression->GetValue(), $oExpression->GetUnit());
  1107. }
  1108. else
  1109. {
  1110. throw new CoreException('Unknown expression type', array('class'=>get_class($oExpression), 'query'=>$sQuery));
  1111. }
  1112. }
  1113. public function InitFromOqlQuery(OqlQuery $oOqlQuery, $sQuery)
  1114. {
  1115. $oModelReflection = new ModelReflectionRuntime();
  1116. $sClass = $oOqlQuery->GetClass($oModelReflection);
  1117. $sClassAlias = $oOqlQuery->GetClassAlias();
  1118. $aAliases = array($sClassAlias => $sClass);
  1119. // Note: the condition must be built here, it may be altered later on when optimizing some joins
  1120. $oConditionTree = $oOqlQuery->GetCondition();
  1121. if ($oConditionTree instanceof Expression)
  1122. {
  1123. $aRawAliases = array($sClassAlias => $sClass);
  1124. $aJoinSpecs = $oOqlQuery->GetJoins();
  1125. if (is_array($aJoinSpecs))
  1126. {
  1127. foreach ($aJoinSpecs as $oJoinSpec)
  1128. {
  1129. $aRawAliases[$oJoinSpec->GetClassAlias()] = $oJoinSpec->GetClass();
  1130. }
  1131. }
  1132. $this->m_oSearchCondition = $this->OQLExpressionToCondition($sQuery, $oConditionTree, $aRawAliases);
  1133. }
  1134. // Maintain an array of filters, because the flat list is in fact referring to a tree
  1135. // And this will be an easy way to dispatch the conditions
  1136. // $this will be referenced by the other filters, or the other way around...
  1137. $aJoinItems = array($sClassAlias => $this);
  1138. $aJoinSpecs = $oOqlQuery->GetJoins();
  1139. if (is_array($aJoinSpecs))
  1140. {
  1141. $aAliasTranslation = array();
  1142. foreach ($aJoinSpecs as $oJoinSpec)
  1143. {
  1144. $sJoinClass = $oJoinSpec->GetClass();
  1145. $sJoinClassAlias = $oJoinSpec->GetClassAlias();
  1146. if (isset($aAliasTranslation[$sJoinClassAlias]['*']))
  1147. {
  1148. $sJoinClassAlias = $aAliasTranslation[$sJoinClassAlias]['*'];
  1149. }
  1150. // Assumption: ext key on the left only !!!
  1151. // normalization should take care of this
  1152. $oLeftField = $oJoinSpec->GetLeftField();
  1153. $sFromClass = $oLeftField->GetParent();
  1154. if (isset($aAliasTranslation[$sFromClass]['*']))
  1155. {
  1156. $sFromClass = $aAliasTranslation[$sFromClass]['*'];
  1157. }
  1158. $sExtKeyAttCode = $oLeftField->GetName();
  1159. $oRightField = $oJoinSpec->GetRightField();
  1160. $sToClass = $oRightField->GetParent();
  1161. if (isset($aAliasTranslation[$sToClass]['*']))
  1162. {
  1163. $sToClass = $aAliasTranslation[$sToClass]['*'];
  1164. }
  1165. $aAliases[$sJoinClassAlias] = $sJoinClass;
  1166. $aJoinItems[$sJoinClassAlias] = new DBObjectSearch($sJoinClass, $sJoinClassAlias);
  1167. $sOperator = $oJoinSpec->GetOperator();
  1168. switch($sOperator)
  1169. {
  1170. case '=':
  1171. default:
  1172. $iOperatorCode = TREE_OPERATOR_EQUALS;
  1173. break;
  1174. case 'BELOW':
  1175. $iOperatorCode = TREE_OPERATOR_BELOW;
  1176. break;
  1177. case 'BELOW_STRICT':
  1178. $iOperatorCode = TREE_OPERATOR_BELOW_STRICT;
  1179. break;
  1180. case 'NOT_BELOW':
  1181. $iOperatorCode = TREE_OPERATOR_NOT_BELOW;
  1182. break;
  1183. case 'NOT_BELOW_STRICT':
  1184. $iOperatorCode = TREE_OPERATOR_NOT_BELOW_STRICT;
  1185. break;
  1186. case 'ABOVE':
  1187. $iOperatorCode = TREE_OPERATOR_ABOVE;
  1188. break;
  1189. case 'ABOVE_STRICT':
  1190. $iOperatorCode = TREE_OPERATOR_ABOVE_STRICT;
  1191. break;
  1192. case 'NOT_ABOVE':
  1193. $iOperatorCode = TREE_OPERATOR_NOT_ABOVE;
  1194. break;
  1195. case 'NOT_ABOVE_STRICT':
  1196. $iOperatorCode = TREE_OPERATOR_NOT_ABOVE_STRICT;
  1197. break;
  1198. }
  1199. if ($sFromClass == $sJoinClassAlias)
  1200. {
  1201. $oReceiver = $aJoinItems[$sToClass];
  1202. $oNewComer = $aJoinItems[$sFromClass];
  1203. $oReceiver->AddCondition_ReferencedBy_InNameSpace($oNewComer, $sExtKeyAttCode, $oReceiver->m_aClasses, $aAliasTranslation, $iOperatorCode);
  1204. }
  1205. else
  1206. {
  1207. $oReceiver = $aJoinItems[$sFromClass];
  1208. $oNewComer = $aJoinItems[$sToClass];
  1209. $oReceiver->AddCondition_PointingTo_InNameSpace($oNewComer, $sExtKeyAttCode, $oReceiver->m_aClasses, $aAliasTranslation, $iOperatorCode);
  1210. }
  1211. }
  1212. $this->m_oSearchCondition = $this->m_oSearchCondition->Translate($aAliasTranslation, false, false /* leave unresolved fields */);
  1213. }
  1214. // Check and prepare the select information
  1215. $this->m_aSelectedClasses = array();
  1216. foreach ($oOqlQuery->GetSelectedClasses() as $oClassDetails)
  1217. {
  1218. $sClassToSelect = $oClassDetails->GetValue();
  1219. $this->m_aSelectedClasses[$sClassToSelect] = $aAliases[$sClassToSelect];
  1220. }
  1221. $this->m_aClasses = $aAliases;
  1222. }
  1223. ////////////////////////////////////////////////////////////////////////////
  1224. //
  1225. // Construction of the SQL queries
  1226. //
  1227. ////////////////////////////////////////////////////////////////////////////
  1228. public function MakeDeleteQuery($aArgs = array())
  1229. {
  1230. $aModifierProperties = MetaModel::MakeModifierProperties($this);
  1231. $oBuild = new QueryBuilderContext($this, $aModifierProperties);
  1232. $oSQLQuery = $this->MakeSQLObjectQuery($oBuild, null, array());
  1233. $oSQLQuery->SetCondition($oBuild->m_oQBExpressions->GetCondition());
  1234. $oSQLQuery->SetSelect($oBuild->m_oQBExpressions->GetSelect());
  1235. $aScalarArgs = MetaModel::PrepareQueryArguments($aArgs, $this->GetInternalParams());
  1236. return $oSQLQuery->RenderDelete($aScalarArgs);
  1237. }
  1238. public function MakeUpdateQuery($aValues, $aArgs = array())
  1239. {
  1240. // $aValues is an array of $sAttCode => $value
  1241. $aModifierProperties = MetaModel::MakeModifierProperties($this);
  1242. $oBuild = new QueryBuilderContext($this, $aModifierProperties);
  1243. $oSQLQuery = $this->MakeSQLObjectQuery($oBuild, null, $aValues);
  1244. $oSQLQuery->SetCondition($oBuild->m_oQBExpressions->GetCondition());
  1245. $oSQLQuery->SetSelect($oBuild->m_oQBExpressions->GetSelect());
  1246. $aScalarArgs = MetaModel::PrepareQueryArguments($aArgs, $this->GetInternalParams());
  1247. return $oSQLQuery->RenderUpdate($aScalarArgs);
  1248. }
  1249. public function GetSQLQueryStructure($aAttToLoad, $bGetCount, $aGroupByExpr = null, $aSelectedClasses = null)
  1250. {
  1251. // Hide objects that are not visible to the current user
  1252. //
  1253. $oSearch = $this;
  1254. if (!$this->IsAllDataAllowed() && !$this->IsDataFiltered())
  1255. {
  1256. $oVisibleObjects = UserRights::GetSelectFilter($this->GetClass(), $this->GetModifierProperties('UserRightsGetSelectFilter'));
  1257. if ($oVisibleObjects === false)
  1258. {
  1259. // Make sure this is a valid search object, saying NO for all
  1260. $oVisibleObjects = DBObjectSearch::FromEmptySet($this->GetClass());
  1261. }
  1262. if (is_object($oVisibleObjects))
  1263. {
  1264. $oVisibleObjects->AllowAllData();
  1265. $oSearch = $this->Intersect($oVisibleObjects);
  1266. $oSearch->SetDataFiltered();
  1267. }
  1268. else
  1269. {
  1270. // should be true at this point, meaning that no additional filtering
  1271. // is required
  1272. }
  1273. }
  1274. // Compute query modifiers properties (can be set in the search itself, by the context, etc.)
  1275. //
  1276. $aModifierProperties = MetaModel::MakeModifierProperties($oSearch);
  1277. // Create a unique cache id
  1278. //
  1279. if (self::$m_bQueryCacheEnabled || self::$m_bTraceQueries)
  1280. {
  1281. // Need to identify the query
  1282. $sOqlQuery = $oSearch->ToOql(false, null, true);
  1283. if (count($aModifierProperties))
  1284. {
  1285. array_multisort($aModifierProperties);
  1286. $sModifierProperties = json_encode($aModifierProperties);
  1287. }
  1288. else
  1289. {
  1290. $sModifierProperties = '';
  1291. }
  1292. $sRawId = $sOqlQuery.$sModifierProperties;
  1293. if (!is_null($aAttToLoad))
  1294. {
  1295. $sRawId .= json_encode($aAttToLoad);
  1296. }
  1297. if (!is_null($aGroupByExpr))
  1298. {
  1299. foreach($aGroupByExpr as $sAlias => $oExpr)
  1300. {
  1301. $sRawId .= 'g:'.$sAlias.'!'.$oExpr->Render();
  1302. }
  1303. }
  1304. $sRawId .= $bGetCount;
  1305. if (is_array($aSelectedClasses))
  1306. {
  1307. $sRawId .= implode(',', $aSelectedClasses); // Unions may alter the list of selected columns
  1308. }
  1309. $sOqlId = md5($sRawId);
  1310. }
  1311. else
  1312. {
  1313. $sOqlQuery = "SELECTING... ".$oSearch->GetClass();
  1314. $sOqlId = "query id ? n/a";
  1315. }
  1316. // Query caching
  1317. //
  1318. if (self::$m_bQueryCacheEnabled)
  1319. {
  1320. // Warning: using directly the query string as the key to the hash array can FAIL if the string
  1321. // is long and the differences are only near the end... so it's safer (but not bullet proof?)
  1322. // to use a hash (like md5) of the string as the key !
  1323. //
  1324. // Example of two queries that were found as similar by the hash array:
  1325. // SELECT SLT JOIN lnkSLTToSLA AS L1 ON L1.slt_id=SLT.id JOIN SLA ON L1.sla_id = SLA.id JOIN lnkContractToSLA AS L2 ON L2.sla_id = SLA.id JOIN CustomerContract ON L2.contract_id = CustomerContract.id WHERE SLT.ticket_priority = 1 AND SLA.service_id = 3 AND SLT.metric = 'TTO' AND CustomerContract.customer_id = 2
  1326. // and
  1327. // SELECT SLT JOIN lnkSLTToSLA AS L1 ON L1.slt_id=SLT.id JOIN SLA ON L1.sla_id = SLA.id JOIN lnkContractToSLA AS L2 ON L2.sla_id = SLA.id JOIN CustomerContract ON L2.contract_id = CustomerContract.id WHERE SLT.ticket_priority = 1 AND SLA.service_id = 3 AND SLT.metric = 'TTR' AND CustomerContract.customer_id = 2
  1328. // the only difference is R instead or O at position 285 (TTR instead of TTO)...
  1329. //
  1330. if (array_key_exists($sOqlId, self::$m_aQueryStructCache))
  1331. {
  1332. // hit!
  1333. $oSQLQuery = unserialize(serialize(self::$m_aQueryStructCache[$sOqlId]));
  1334. // Note: cloning is not enough because the subtree is made of objects
  1335. }
  1336. elseif (self::$m_bUseAPCCache)
  1337. {
  1338. // Note: For versions of APC older than 3.0.17, fetch() accepts only one parameter
  1339. //
  1340. $sOqlAPCCacheId = 'itop-'.MetaModel::GetEnvironmentId().'-query-cache-'.$sOqlId;
  1341. $oKPI = new ExecutionKPI();
  1342. $result = apc_fetch($sOqlAPCCacheId);
  1343. $oKPI->ComputeStats('Query APC (fetch)', $sOqlQuery);
  1344. if (is_object($result))
  1345. {
  1346. $oSQLQuery = $result;
  1347. self::$m_aQueryStructCache[$sOqlId] = $oSQLQuery;
  1348. }
  1349. }
  1350. }
  1351. if (!isset($oSQLQuery))
  1352. {
  1353. $oKPI = new ExecutionKPI();
  1354. $oSQLQuery = $oSearch->BuildSQLQueryStruct($aAttToLoad, $bGetCount, $aModifierProperties, $aGroupByExpr, $aSelectedClasses);
  1355. $oKPI->ComputeStats('BuildSQLQueryStruct', $sOqlQuery);
  1356. if (self::$m_bQueryCacheEnabled)
  1357. {
  1358. if (self::$m_bUseAPCCache)
  1359. {
  1360. $oKPI = new ExecutionKPI();
  1361. apc_store($sOqlAPCCacheId, $oSQLQuery, self::$m_iQueryCacheTTL);
  1362. $oKPI->ComputeStats('Query APC (store)', $sOqlQuery);
  1363. }
  1364. self::$m_aQueryStructCache[$sOqlId] = $oSQLQuery->DeepClone();
  1365. }
  1366. }
  1367. return $oSQLQuery;
  1368. }
  1369. protected function BuildSQLQueryStruct($aAttToLoad, $bGetCount, $aModifierProperties, $aGroupByExpr = null, $aSelectedClasses = null)
  1370. {
  1371. $oBuild = new QueryBuilderContext($this, $aModifierProperties, $aGroupByExpr, $aSelectedClasses);
  1372. $oSQLQuery = $this->MakeSQLObjectQuery($oBuild, $aAttToLoad, array());
  1373. $oSQLQuery->SetCondition($oBuild->m_oQBExpressions->GetCondition());
  1374. if ($aGroupByExpr)
  1375. {
  1376. $aCols = $oBuild->m_oQBExpressions->GetGroupBy();
  1377. $oSQLQuery->SetGroupBy($aCols);
  1378. $oSQLQuery->SetSelect($aCols);
  1379. }
  1380. else
  1381. {
  1382. $oSQLQuery->SetSelect($oBuild->m_oQBExpressions->GetSelect());
  1383. }
  1384. if (self::$m_bOptimizeQueries)
  1385. {
  1386. if ($bGetCount)
  1387. {
  1388. // Simplify the query if just getting the count
  1389. $oSQLQuery->SetSelect(array());
  1390. }
  1391. $oBuild->m_oQBExpressions->GetMandatoryTables($aMandatoryTables);
  1392. $oSQLQuery->OptimizeJoins($aMandatoryTables);
  1393. }
  1394. return $oSQLQuery;
  1395. }
  1396. protected function MakeSQLObjectQuery(&$oBuild, $aAttToLoad = null, $aValues = array())
  1397. {
  1398. // Note: query class might be different than the class of the filter
  1399. // -> this occurs when we are linking our class to an external class (referenced by, or pointing to)
  1400. $sClass = $this->GetFirstJoinedClass();
  1401. $sClassAlias = $this->GetFirstJoinedClassAlias();
  1402. $bIsOnQueriedClass = array_key_exists($sClassAlias, $oBuild->GetRootFilter()->GetSelectedClasses());
  1403. self::DbgTrace("Entering: ".$this->ToOQL().", ".($bIsOnQueriedClass ? "MAIN" : "SECONDARY"));
  1404. $sRootClass = MetaModel::GetRootClass($sClass);
  1405. $sKeyField = MetaModel::DBGetKey($sClass);
  1406. if ($bIsOnQueriedClass)
  1407. {
  1408. // default to the whole list of attributes + the very std id/finalclass
  1409. $oBuild->m_oQBExpressions->AddSelect($sClassAlias.'id', new FieldExpression('id', $sClassAlias));
  1410. if (is_null($aAttToLoad) || !array_key_exists($sClassAlias, $aAttToLoad))
  1411. {
  1412. $sSelectedClass = $oBuild->GetSelectedClass($sClassAlias);
  1413. $aAttList = MetaModel::ListAttributeDefs($sSelectedClass);
  1414. }
  1415. else
  1416. {
  1417. $aAttList = $aAttToLoad[$sClassAlias];
  1418. }
  1419. foreach ($aAttList as $sAttCode => $oAttDef)
  1420. {
  1421. if (!$oAttDef->IsScalar()) continue;
  1422. // keep because it can be used for sorting - if (!$oAttDef->LoadInObject()) continue;
  1423. foreach ($oAttDef->GetSQLExpressions() as $sColId => $sSQLExpr)
  1424. {
  1425. $oBuild->m_oQBExpressions->AddSelect($sClassAlias.$sAttCode.$sColId, new FieldExpression($sAttCode.$sColId, $sClassAlias));
  1426. }
  1427. }
  1428. // Transform the full text condition into additional condition expression
  1429. $aFullText = $this->GetCriteria_FullText();
  1430. if (count($aFullText) > 0)
  1431. {
  1432. $aFullTextFields = array();
  1433. foreach (MetaModel::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
  1434. {
  1435. if (!$oAttDef->IsScalar()) continue;
  1436. if ($oAttDef->IsExternalKey()) continue;
  1437. $aFullTextFields[] = new FieldExpression($sAttCode, $sClassAlias);
  1438. }
  1439. $oTextFields = new CharConcatWSExpression(' ', $aFullTextFields);
  1440. foreach($aFullText as $sFTNeedle)
  1441. {
  1442. $oNewCond = new BinaryExpression($oTextFields, 'LIKE', new ScalarExpression("%$sFTNeedle%"));
  1443. $oBuild->m_oQBExpressions->AddCondition($oNewCond);
  1444. }
  1445. }
  1446. }
  1447. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."</pre></p>\n";
  1448. $aExpectedAtts = array(); // array of (attcode => fieldexpression)
  1449. //echo "<p>".__LINE__.": GetUnresolvedFields($sClassAlias, ...)</p>\n";
  1450. $oBuild->m_oQBExpressions->GetUnresolvedFields($sClassAlias, $aExpectedAtts);
  1451. // Compute a clear view of required joins (from the current class)
  1452. // Build the list of external keys:
  1453. // -> ext keys required by an explicit join
  1454. // -> ext keys mentionned in a 'pointing to' condition
  1455. // -> ext keys required for an external field
  1456. // -> ext keys required for a friendly name
  1457. //
  1458. $aExtKeys = array(); // array of sTableClass => array of (sAttCode (keys) => array of (sAttCode (fields)=> oAttDef))
  1459. //
  1460. // Optimization: could be partially computed once for all (cached) ?
  1461. //
  1462. if ($bIsOnQueriedClass)
  1463. {
  1464. // Get all Ext keys for the queried class (??)
  1465. foreach(MetaModel::GetKeysList($sClass) as $sKeyAttCode)
  1466. {
  1467. $sKeyTableClass = MetaModel::GetAttributeOrigin($sClass, $sKeyAttCode);
  1468. $aExtKeys[$sKeyTableClass][$sKeyAttCode] = array();
  1469. }
  1470. }
  1471. // Get all Ext keys used by the filter
  1472. foreach ($this->GetCriteria_PointingTo() as $sKeyAttCode => $aPointingTo)
  1473. {
  1474. if (array_key_exists(TREE_OPERATOR_EQUALS, $aPointingTo))
  1475. {
  1476. $sKeyTableClass = MetaModel::GetAttributeOrigin($sClass, $sKeyAttCode);
  1477. $aExtKeys[$sKeyTableClass][$sKeyAttCode] = array();
  1478. }
  1479. }
  1480. $aFNJoinAlias = array(); // array of (subclass => alias)
  1481. if (array_key_exists('friendlyname', $aExpectedAtts))
  1482. {
  1483. // To optimize: detect a restriction on child classes in the condition expression
  1484. // e.g. SELECT FunctionalCI WHERE finalclass IN ('Server', 'VirtualMachine')
  1485. $oNameExpression = self::GetExtendedNameExpression($sClass);
  1486. $aNameFields = array();
  1487. $oNameExpression->GetUnresolvedFields('', $aNameFields);
  1488. $aTranslateNameFields = array();
  1489. foreach($aNameFields as $sSubClass => $aFields)
  1490. {
  1491. foreach($aFields as $sAttCode => $oField)
  1492. {
  1493. $oAttDef = MetaModel::GetAttributeDef($sSubClass, $sAttCode);
  1494. if ($oAttDef->IsExternalKey())
  1495. {
  1496. $sClassOfAttribute = MetaModel::GetAttributeOrigin($sSubClass, $sAttCode);
  1497. $aExtKeys[$sClassOfAttribute][$sAttCode] = array();
  1498. }
  1499. elseif ($oAttDef->IsExternalField() || ($oAttDef instanceof AttributeFriendlyName))
  1500. {
  1501. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  1502. $sClassOfAttribute = MetaModel::GetAttributeOrigin($sSubClass, $sKeyAttCode);
  1503. $aExtKeys[$sClassOfAttribute][$sKeyAttCode][$sAttCode] = $oAttDef;
  1504. }
  1505. else
  1506. {
  1507. $sClassOfAttribute = MetaModel::GetAttributeOrigin($sSubClass, $sAttCode);
  1508. }
  1509. if (MetaModel::IsParentClass($sClassOfAttribute, $sClass))
  1510. {
  1511. // The attribute is part of the standard query
  1512. //
  1513. $sAliasForAttribute = $sClassAlias;
  1514. }
  1515. else
  1516. {
  1517. // The attribute will be available from an additional outer join
  1518. // For each subclass (table) one single join is enough
  1519. //
  1520. if (!array_key_exists($sClassOfAttribute, $aFNJoinAlias))
  1521. {
  1522. $sAliasForAttribute = $oBuild->GenerateClassAlias($sClassAlias.'_fn_'.$sClassOfAttribute, $sClassOfAttribute);
  1523. $aFNJoinAlias[$sClassOfAttribute] = $sAliasForAttribute;
  1524. }
  1525. else
  1526. {
  1527. $sAliasForAttribute = $aFNJoinAlias[$sClassOfAttribute];
  1528. }
  1529. }
  1530. $aTranslateNameFields[$sSubClass][$sAttCode] = new FieldExpression($sAttCode, $sAliasForAttribute);
  1531. }
  1532. }
  1533. $oNameExpression = $oNameExpression->Translate($aTranslateNameFields, false);
  1534. $aTranslateNow = array();
  1535. $aTranslateNow[$sClassAlias]['friendlyname'] = $oNameExpression;
  1536. $oBuild->m_oQBExpressions->Translate($aTranslateNow, false);
  1537. }
  1538. // Add the ext fields used in the select (eventually adds an external key)
  1539. foreach(MetaModel::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  1540. {
  1541. if ($oAttDef->IsExternalField() || ($oAttDef instanceof AttributeFriendlyName))
  1542. {
  1543. if (array_key_exists($sAttCode, $aExpectedAtts))
  1544. {
  1545. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  1546. if ($sKeyAttCode != 'id')
  1547. {
  1548. // Add the external attribute
  1549. $sKeyTableClass = MetaModel::GetAttributeOrigin($sClass, $sKeyAttCode);
  1550. $aExtKeys[$sKeyTableClass][$sKeyAttCode][$sAttCode] = $oAttDef;
  1551. }
  1552. }
  1553. }
  1554. }
  1555. // First query built upon on the leaf (ie current) class
  1556. //
  1557. self::DbgTrace("Main (=leaf) class, call MakeSQLObjectQuerySingleTable()");
  1558. if (MetaModel::HasTable($sClass))
  1559. {
  1560. $oSelectBase = $this->MakeSQLObjectQuerySingleTable($oBuild, $aAttToLoad, $sClass, $aExtKeys, $aValues);
  1561. }
  1562. else
  1563. {
  1564. $oSelectBase = null;
  1565. // As the join will not filter on the expected classes, we have to specify it explicitely
  1566. $sExpectedClasses = implode("', '", MetaModel::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL));
  1567. $oFinalClassRestriction = Expression::FromOQL("`$sClassAlias`.finalclass IN ('$sExpectedClasses')");
  1568. $oBuild->m_oQBExpressions->AddCondition($oFinalClassRestriction);
  1569. }
  1570. // Then we join the queries of the eventual parent classes (compound model)
  1571. foreach(MetaModel::EnumParentClasses($sClass) as $sParentClass)
  1572. {
  1573. if (!MetaModel::HasTable($sParentClass)) continue;
  1574. self::DbgTrace("Parent class: $sParentClass... let's call MakeSQLObjectQuerySingleTable()");
  1575. $oSelectParentTable = $this->MakeSQLObjectQuerySingleTable($oBuild, $aAttToLoad, $sParentClass, $aExtKeys, $aValues);
  1576. if (is_null($oSelectBase))
  1577. {
  1578. $oSelectBase = $oSelectParentTable;
  1579. }
  1580. else
  1581. {
  1582. $oSelectBase->AddInnerJoin($oSelectParentTable, $sKeyField, MetaModel::DBGetKey($sParentClass));
  1583. }
  1584. }
  1585. // Filter on objects referencing me
  1586. //
  1587. foreach($this->m_aReferencedBy as $sForeignClass=>$aReferences)
  1588. {
  1589. foreach($aReferences as $sForeignExtKeyAttCode => $aFiltersByOperator)
  1590. {
  1591. foreach ($aFiltersByOperator as $iOperatorCode => $aFilters)
  1592. {
  1593. foreach ($aFilters as $oForeignFilter)
  1594. {
  1595. $oForeignKeyAttDef = MetaModel::GetAttributeDef($sForeignClass, $sForeignExtKeyAttCode);
  1596. self::DbgTrace("Referenced by foreign key: $sForeignExtKeyAttCode... let's call MakeSQLObjectQuery()");
  1597. //self::DbgTrace($oForeignFilter);
  1598. //self::DbgTrace($oForeignFilter->ToOQL());
  1599. //self::DbgTrace($oSelectForeign);
  1600. //self::DbgTrace($oSelectForeign->RenderSelect(array()));
  1601. $sForeignClassAlias = $oForeignFilter->GetFirstJoinedClassAlias();
  1602. $oBuild->m_oQBExpressions->PushJoinField(new FieldExpression($sForeignExtKeyAttCode, $sForeignClassAlias));
  1603. if ($oForeignKeyAttDef instanceof AttributeObjectKey)
  1604. {
  1605. $sClassAttCode = $oForeignKeyAttDef->Get('class_attcode');
  1606. // Add the condition: `$sForeignClassAlias`.$sClassAttCode IN (subclasses of $sClass')
  1607. $oClassListExpr = ListExpression::FromScalars(MetaModel::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL));
  1608. $oClassExpr = new FieldExpression($sClassAttCode, $sForeignClassAlias);
  1609. $oClassRestriction = new BinaryExpression($oClassExpr, 'IN', $oClassListExpr);
  1610. $oBuild->m_oQBExpressions->AddCondition($oClassRestriction);
  1611. }
  1612. $oSelectForeign = $oForeignFilter->MakeSQLObjectQuery($oBuild, $aAttToLoad);
  1613. $oJoinExpr = $oBuild->m_oQBExpressions->PopJoinField();
  1614. $sForeignKeyTable = $oJoinExpr->GetParent();
  1615. $sForeignKeyColumn = $oJoinExpr->GetName();
  1616. if ($iOperatorCode == TREE_OPERATOR_EQUALS)
  1617. {
  1618. $oSelectBase->AddInnerJoin($oSelectForeign, $sKeyField, $sForeignKeyColumn, $sForeignKeyTable);
  1619. }
  1620. else
  1621. {
  1622. // Hierarchical key
  1623. $KeyLeft = $oForeignKeyAttDef->GetSQLLeft();
  1624. $KeyRight = $oForeignKeyAttDef->GetSQLRight();
  1625. $oSelectBase->AddInnerJoinTree($oSelectForeign, $KeyLeft, $KeyRight, $KeyLeft, $KeyRight, $sForeignKeyTable, $iOperatorCode, true);
  1626. }
  1627. }
  1628. }
  1629. }
  1630. }
  1631. // Additional JOINS for Friendly names
  1632. //
  1633. foreach ($aFNJoinAlias as $sSubClass => $sSubClassAlias)
  1634. {
  1635. $oSubClassFilter = new DBObjectSearch($sSubClass, $sSubClassAlias);
  1636. $oSelectFN = $oSubClassFilter->MakeSQLObjectQuerySingleTable($oBuild, $aAttToLoad, $sSubClass, $aExtKeys, array());
  1637. $oSelectBase->AddLeftJoin($oSelectFN, $sKeyField, MetaModel::DBGetKey($sSubClass));
  1638. }
  1639. // That's all... cross fingers and we'll get some working query
  1640. //MyHelpers::var_dump_html($oSelectBase, true);
  1641. //MyHelpers::var_dump_html($oSelectBase->RenderSelect(), true);
  1642. if (self::$m_bDebugQuery) $oSelectBase->DisplayHtml();
  1643. return $oSelectBase;
  1644. }
  1645. protected function MakeSQLObjectQuerySingleTable(&$oBuild, $aAttToLoad, $sTableClass, $aExtKeys, $aValues)
  1646. {
  1647. // $aExtKeys is an array of sTableClass => array of (sAttCode (keys) => array of sAttCode (fields))
  1648. //echo "MakeSQLObjectQuery($sTableClass)-liste des clefs externes($sTableClass): <pre>".print_r($aExtKeys, true)."</pre><br/>\n";
  1649. // Prepare the query for a single table (compound objects)
  1650. // Ignores the items (attributes/filters) that are not on the target table
  1651. // Perform an (inner or left) join for every external key (and specify the expected fields)
  1652. //
  1653. // Returns an SQLQuery
  1654. //
  1655. $sTargetClass = $this->GetFirstJoinedClass();
  1656. $sTargetAlias = $this->GetFirstJoinedClassAlias();
  1657. $sTable = MetaModel::DBGetTable($sTableClass);
  1658. $sTableAlias = $oBuild->GenerateTableAlias($sTargetAlias.'_'.$sTable, $sTable);
  1659. $aTranslation = array();
  1660. $aExpectedAtts = array();
  1661. $oBuild->m_oQBExpressions->GetUnresolvedFields($sTargetAlias, $aExpectedAtts);
  1662. $bIsOnQueriedClass = array_key_exists($sTargetAlias, $oBuild->GetRootFilter()->GetSelectedClasses());
  1663. self::DbgTrace("Entering: tableclass=$sTableClass, filter=".$this->ToOQL().", ".($bIsOnQueriedClass ? "MAIN" : "SECONDARY"));
  1664. // 1 - SELECT and UPDATE
  1665. //
  1666. // Note: no need for any values nor fields for foreign Classes (ie not the queried Class)
  1667. //
  1668. $aUpdateValues = array();
  1669. // 1/a - Get the key and friendly name
  1670. //
  1671. // We need one pkey to be the key, let's take the first one available
  1672. $oSelectedIdField = null;
  1673. $oIdField = new FieldExpressionResolved(MetaModel::DBGetKey($sTableClass), $sTableAlias);
  1674. $aTranslation[$sTargetAlias]['id'] = $oIdField;
  1675. if ($bIsOnQueriedClass)
  1676. {
  1677. // Add this field to the list of queried fields (required for the COUNT to work fine)
  1678. $oSelectedIdField = $oIdField;
  1679. }
  1680. // 1/b - Get the other attributes
  1681. //
  1682. foreach(MetaModel::ListAttributeDefs($sTableClass) as $sAttCode=>$oAttDef)
  1683. {
  1684. // Skip this attribute if not defined in this table
  1685. if (MetaModel::GetAttributeOrigin($sTargetClass, $sAttCode) != $sTableClass) continue;
  1686. // Skip this attribute if not made of SQL columns
  1687. if (count($oAttDef->GetSQLExpressions()) == 0) continue;
  1688. // Update...
  1689. //
  1690. if ($bIsOnQueriedClass && array_key_exists($sAttCode, $aValues))
  1691. {
  1692. assert ($oAttDef->IsDirectField());
  1693. foreach ($oAttDef->GetSQLValues($aValues[$sAttCode]) as $sColumn => $sValue)
  1694. {
  1695. $aUpdateValues[$sColumn] = $sValue;
  1696. }
  1697. }
  1698. }
  1699. // 2 - The SQL query, for this table only
  1700. //
  1701. $oSelectBase = new SQLObjectQuery($sTable, $sTableAlias, array(), $bIsOnQueriedClass, $aUpdateValues, $oSelectedIdField);
  1702. // 3 - Resolve expected expressions (translation table: alias.attcode => table.column)
  1703. //
  1704. foreach(MetaModel::ListAttributeDefs($sTableClass) as $sAttCode=>$oAttDef)
  1705. {
  1706. // Skip this attribute if not defined in this table
  1707. if (MetaModel::GetAttributeOrigin($sTargetClass, $sAttCode) != $sTableClass) continue;
  1708. // Select...
  1709. //
  1710. if ($oAttDef->IsExternalField())
  1711. {
  1712. // skip, this will be handled in the joined tables (done hereabove)
  1713. }
  1714. else
  1715. {
  1716. //echo "<p>MakeSQLObjectQuerySingleTable: Field $sAttCode is part of the table $sTable (named: $sTableAlias)</p>";
  1717. // standard field, or external key
  1718. // add it to the output
  1719. foreach ($oAttDef->GetSQLExpressions() as $sColId => $sSQLExpr)
  1720. {
  1721. if (array_key_exists($sAttCode.$sColId, $aExpectedAtts))
  1722. {
  1723. $oFieldSQLExp = new FieldExpressionResolved($sSQLExpr, $sTableAlias);
  1724. foreach (MetaModel::EnumPlugins('iQueryModifier') as $sPluginClass => $oQueryModifier)
  1725. {
  1726. $oFieldSQLExp = $oQueryModifier->GetFieldExpression($oBuild, $sTargetClass, $sAttCode, $sColId, $oFieldSQLExp, $oSelectBase);
  1727. }
  1728. $aTranslation[$sTargetAlias][$sAttCode.$sColId] = $oFieldSQLExp;
  1729. }
  1730. }
  1731. }
  1732. }
  1733. //echo "MakeSQLObjectQuery- Classe $sTableClass<br/>\n";
  1734. // 4 - The external keys -> joins...
  1735. //
  1736. $aAllPointingTo = $this->GetCriteria_PointingTo();
  1737. if (array_key_exists($sTableClass, $aExtKeys))
  1738. {
  1739. foreach ($aExtKeys[$sTableClass] as $sKeyAttCode => $aExtFields)
  1740. {
  1741. $oKeyAttDef = MetaModel::GetAttributeDef($sTableClass, $sKeyAttCode);
  1742. $aPointingTo = $this->GetCriteria_PointingTo($sKeyAttCode);
  1743. //echo "MakeSQLObjectQuery-Cle '$sKeyAttCode'<br/>\n";
  1744. if (!array_key_exists(TREE_OPERATOR_EQUALS, $aPointingTo))
  1745. {
  1746. //echo "MakeSQLObjectQuery-Ajoutons l'operateur TREE_OPERATOR_EQUALS pour $sKeyAttCode<br/>\n";
  1747. // The join was not explicitely defined in the filter,
  1748. // we need to do it now
  1749. $sKeyClass = $oKeyAttDef->GetTargetClass();
  1750. $sKeyClassAlias = $oBuild->GenerateClassAlias($sKeyClass.'_'.$sKeyAttCode, $sKeyClass);
  1751. $oExtFilter = new DBObjectSearch($sKeyClass, $sKeyClassAlias);
  1752. $aAllPointingTo[$sKeyAttCode][TREE_OPERATOR_EQUALS][$sKeyClassAlias] = $oExtFilter;
  1753. }
  1754. }
  1755. }
  1756. //echo "MakeSQLObjectQuery-liste des clefs de jointure: <pre>".print_r(array_keys($aAllPointingTo), true)."</pre><br/>\n";
  1757. foreach ($aAllPointingTo as $sKeyAttCode => $aPointingTo)
  1758. {
  1759. foreach($aPointingTo as $iOperatorCode => $aFilter)
  1760. {
  1761. foreach($aFilter as $oExtFilter)
  1762. {
  1763. if (!MetaModel::IsValidAttCode($sTableClass, $sKeyAttCode)) continue; // Not defined in the class, skip it
  1764. // The aliases should not conflict because normalization occured while building the filter
  1765. $oKeyAttDef = MetaModel::GetAttributeDef($sTableClass, $sKeyAttCode);
  1766. $sKeyClass = $oExtFilter->GetFirstJoinedClass();
  1767. $sKeyClassAlias = $oExtFilter->GetFirstJoinedClassAlias();
  1768. //echo "MakeSQLObjectQuery-$sTableClass::$sKeyAttCode Foreach PointingTo($iOperatorCode) <span style=\"color:red\">$sKeyClass (alias:$sKeyClassAlias)</span><br/>\n";
  1769. // Note: there is no search condition in $oExtFilter, because normalization did merge the condition onto the top of the filter tree
  1770. //echo "MakeSQLObjectQuery-array_key_exists($sTableClass, \$aExtKeys)<br/>\n";
  1771. if ($iOperatorCode == TREE_OPERATOR_EQUALS)
  1772. {
  1773. if (array_key_exists($sTableClass, $aExtKeys) && array_key_exists($sKeyAttCode, $aExtKeys[$sTableClass]))
  1774. {
  1775. // Specify expected attributes for the target class query
  1776. // ... and use the current alias !
  1777. $aTranslateNow = array(); // Translation for external fields - must be performed before the join is done (recursion...)
  1778. foreach($aExtKeys[$sTableClass][$sKeyAttCode] as $sAttCode => $oAtt)
  1779. {
  1780. //echo "MakeSQLObjectQuery aExtKeys[$sTableClass][$sKeyAttCode] => $sAttCode-oAtt: <pre>".print_r($oAtt, true)."</pre><br/>\n";
  1781. if ($oAtt instanceof AttributeFriendlyName)
  1782. {
  1783. // Note: for a given ext key, there is one single attribute "friendly name"
  1784. $aTranslateNow[$sTargetAlias][$sAttCode] = new FieldExpression('friendlyname', $sKeyClassAlias);
  1785. //echo "<p><b>aTranslateNow[$sTargetAlias][$sAttCode] = new FieldExpression('friendlyname', $sKeyClassAlias);</b></p>\n";
  1786. }
  1787. else
  1788. {
  1789. $sExtAttCode = $oAtt->GetExtAttCode();
  1790. // Translate mainclass.extfield => remoteclassalias.remotefieldcode
  1791. $oRemoteAttDef = MetaModel::GetAttributeDef($sKeyClass, $sExtAttCode);
  1792. foreach ($oRemoteAttDef->GetSQLExpressions() as $sColId => $sRemoteAttExpr)
  1793. {
  1794. $aTranslateNow[$sTargetAlias][$sAttCode.$sColId] = new FieldExpression($sExtAttCode, $sKeyClassAlias);
  1795. //echo "<p><b>aTranslateNow[$sTargetAlias][$sAttCode.$sColId] = new FieldExpression($sExtAttCode, $sKeyClassAlias);</b></p>\n";
  1796. }
  1797. //echo "<p><b>ExtAttr2: $sTargetAlias.$sAttCode to $sKeyClassAlias.$sRemoteAttExpr (class: $sKeyClass)</b></p>\n";
  1798. }
  1799. }
  1800. if ($oKeyAttDef instanceof AttributeObjectKey)
  1801. {
  1802. // Add the condition: `$sTargetAlias`.$sClassAttCode IN (subclasses of $sKeyClass')
  1803. $sClassAttCode = $oKeyAttDef->Get('class_attcode');
  1804. $oClassAttDef = MetaModel::GetAttributeDef($sTargetClass, $sClassAttCode);
  1805. foreach ($oClassAttDef->GetSQLExpressions() as $sColId => $sSQLExpr)
  1806. {
  1807. $aTranslateNow[$sTargetAlias][$sClassAttCode.$sColId] = new FieldExpressionResolved($sSQLExpr, $sTableAlias);
  1808. }
  1809. $oClassListExpr = ListExpression::FromScalars(MetaModel::EnumChildClasses($sKeyClass, ENUM_CHILD_CLASSES_ALL));
  1810. $oClassExpr = new FieldExpression($sClassAttCode, $sTargetAlias);
  1811. $oClassRestriction = new BinaryExpression($oClassExpr, 'IN', $oClassListExpr);
  1812. $oBuild->m_oQBExpressions->AddCondition($oClassRestriction);
  1813. }
  1814. // Translate prior to recursing
  1815. //
  1816. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."\n".print_r($aTranslateNow, true)."</pre></p>\n";
  1817. $oBuild->m_oQBExpressions->Translate($aTranslateNow, false);
  1818. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."</pre></p>\n";
  1819. //echo "<p>External key $sKeyAttCode (class: $sKeyClass), call MakeSQLObjectQuery()/p>\n";
  1820. self::DbgTrace("External key $sKeyAttCode (class: $sKeyClass), call MakeSQLObjectQuery()");
  1821. $oBuild->m_oQBExpressions->PushJoinField(new FieldExpression('id', $sKeyClassAlias));
  1822. //echo "<p>Recursive MakeSQLObjectQuery ".__LINE__.": <pre>\n".print_r($oBuild->GetRootFilter()->GetSelectedClasses(), true)."</pre></p>\n";
  1823. $oSelectExtKey = $oExtFilter->MakeSQLObjectQuery($oBuild, $aAttToLoad);
  1824. $oJoinExpr = $oBuild->m_oQBExpressions->PopJoinField();
  1825. $sExternalKeyTable = $oJoinExpr->GetParent();
  1826. $sExternalKeyField = $oJoinExpr->GetName();
  1827. $aCols = $oKeyAttDef->GetSQLExpressions(); // Workaround a PHP bug: sometimes issuing a Notice if invoking current(somefunc())
  1828. $sLocalKeyField = current($aCols); // get the first column for an external key
  1829. self::DbgTrace("External key $sKeyAttCode, Join on $sLocalKeyField = $sExternalKeyField");
  1830. if ($oKeyAttDef->IsNullAllowed())
  1831. {
  1832. $oSelectBase->AddLeftJoin($oSelectExtKey, $sLocalKeyField, $sExternalKeyField, $sExternalKeyTable);
  1833. }
  1834. else
  1835. {
  1836. $oSelectBase->AddInnerJoin($oSelectExtKey, $sLocalKeyField, $sExternalKeyField, $sExternalKeyTable);
  1837. }
  1838. }
  1839. }
  1840. elseif(MetaModel::GetAttributeOrigin($sKeyClass, $sKeyAttCode) == $sTableClass)
  1841. {
  1842. $oBuild->m_oQBExpressions->PushJoinField(new FieldExpression($sKeyAttCode, $sKeyClassAlias));
  1843. $oSelectExtKey = $oExtFilter->MakeSQLObjectQuery($oBuild, $aAttToLoad);
  1844. $oJoinExpr = $oBuild->m_oQBExpressions->PopJoinField();
  1845. $sExternalKeyTable = $oJoinExpr->GetParent();
  1846. $sExternalKeyField = $oJoinExpr->GetName();
  1847. $sLeftIndex = $sExternalKeyField.'_left'; // TODO use GetSQLLeft()
  1848. $sRightIndex = $sExternalKeyField.'_right'; // TODO use GetSQLRight()
  1849. $LocalKeyLeft = $oKeyAttDef->GetSQLLeft();
  1850. $LocalKeyRight = $oKeyAttDef->GetSQLRight();
  1851. $oSelectBase->AddInnerJoinTree($oSelectExtKey, $LocalKeyLeft, $LocalKeyRight, $sLeftIndex, $sRightIndex, $sExternalKeyTable, $iOperatorCode);
  1852. }
  1853. }
  1854. }
  1855. }
  1856. // Translate the selected columns
  1857. //
  1858. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."</pre></p>\n";
  1859. $oBuild->m_oQBExpressions->Translate($aTranslation, false);
  1860. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."</pre></p>\n";
  1861. //MyHelpers::var_dump_html($oSelectBase->RenderSelect());
  1862. return $oSelectBase;
  1863. }
  1864. /**
  1865. * Get the friendly name for the class and its subclasses (if finalclass = 'subclass' ...)
  1866. * Simplifies the final expression by grouping classes having the same name expression
  1867. * Used when querying a parent class
  1868. */
  1869. static protected function GetExtendedNameExpression($sClass)
  1870. {
  1871. // 1st step - get all of the required expressions (instantiable classes)
  1872. // and group them using their OQL representation
  1873. //
  1874. $aFNExpressions = array(); // signature => array('expression' => oExp, 'classes' => array of classes)
  1875. foreach (MetaModel::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL) as $sSubClass)
  1876. {
  1877. if (($sSubClass != $sClass) && MetaModel::IsAbstract($sSubClass)) continue;
  1878. $oSubClassName = MetaModel::GetNameExpression($sSubClass);
  1879. $sSignature = $oSubClassName->Render();
  1880. if (!array_key_exists($sSignature, $aFNExpressions))
  1881. {
  1882. $aFNExpressions[$sSignature] = array(
  1883. 'expression' => $oSubClassName,
  1884. 'classes' => array(),
  1885. );
  1886. }
  1887. $aFNExpressions[$sSignature]['classes'][] = $sSubClass;
  1888. }
  1889. // 2nd step - build the final name expression depending on the finalclass
  1890. //
  1891. if (count($aFNExpressions) == 1)
  1892. {
  1893. $aExpData = reset($aFNExpressions);
  1894. $oNameExpression = $aExpData['expression'];
  1895. }
  1896. else
  1897. {
  1898. $oNameExpression = null;
  1899. foreach ($aFNExpressions as $sSignature => $aExpData)
  1900. {
  1901. $oClassListExpr = ListExpression::FromScalars($aExpData['classes']);
  1902. $oClassExpr = new FieldExpression('finalclass', $sClass);
  1903. $oClassInList = new BinaryExpression($oClassExpr, 'IN', $oClassListExpr);
  1904. if (is_null($oNameExpression))
  1905. {
  1906. $oNameExpression = $aExpData['expression'];
  1907. }
  1908. else
  1909. {
  1910. $oNameExpression = new FunctionExpression('IF', array($oClassInList, $aExpData['expression'], $oNameExpression));
  1911. }
  1912. }
  1913. }
  1914. return $oNameExpression;
  1915. }
  1916. }