metamodel.class.php 181 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398
  1. <?php
  2. // Copyright (C) 2010-2013 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. require_once(APPROOT.'core/modulehandler.class.inc.php');
  19. require_once(APPROOT.'core/querybuildercontext.class.inc.php');
  20. require_once(APPROOT.'core/querymodifier.class.inc.php');
  21. require_once(APPROOT.'core/metamodelmodifier.inc.php');
  22. require_once(APPROOT.'core/computing.inc.php');
  23. /**
  24. * Metamodel
  25. *
  26. * @copyright Copyright (C) 2010-2012 Combodo SARL
  27. * @license http://opensource.org/licenses/AGPL-3.0
  28. */
  29. // #@# todo: change into class const (see Doctrine)
  30. // Doctrine example
  31. // class toto
  32. // {
  33. // /**
  34. // * VERSION
  35. // */
  36. // const VERSION = '1.0.0';
  37. // }
  38. /**
  39. * add some description here...
  40. *
  41. * @package iTopORM
  42. */
  43. define('ENUM_CHILD_CLASSES_EXCLUDETOP', 1);
  44. /**
  45. * add some description here...
  46. *
  47. * @package iTopORM
  48. */
  49. define('ENUM_CHILD_CLASSES_ALL', 2);
  50. /**
  51. * add some description here...
  52. *
  53. * @package iTopORM
  54. */
  55. define('ENUM_PARENT_CLASSES_EXCLUDELEAF', 1);
  56. /**
  57. * add some description here...
  58. *
  59. * @package iTopORM
  60. */
  61. define('ENUM_PARENT_CLASSES_ALL', 2);
  62. /**
  63. * Specifies that this attribute is visible/editable.... normal (default config)
  64. *
  65. * @package iTopORM
  66. */
  67. define('OPT_ATT_NORMAL', 0);
  68. /**
  69. * Specifies that this attribute is hidden in that state
  70. *
  71. * @package iTopORM
  72. */
  73. define('OPT_ATT_HIDDEN', 1);
  74. /**
  75. * Specifies that this attribute is not editable in that state
  76. *
  77. * @package iTopORM
  78. */
  79. define('OPT_ATT_READONLY', 2);
  80. /**
  81. * Specifieds that the attribute must be set (different than default value?) when arriving into that state
  82. *
  83. * @package iTopORM
  84. */
  85. define('OPT_ATT_MANDATORY', 4);
  86. /**
  87. * Specifies that the attribute must change when arriving into that state
  88. *
  89. * @package iTopORM
  90. */
  91. define('OPT_ATT_MUSTCHANGE', 8);
  92. /**
  93. * Specifies that the attribute must be proposed when arriving into that state
  94. *
  95. * @package iTopORM
  96. */
  97. define('OPT_ATT_MUSTPROMPT', 16);
  98. /**
  99. * Specifies that the attribute is in 'slave' mode compared to one data exchange task:
  100. * it should not be edited inside iTop anymore
  101. *
  102. * @package iTopORM
  103. */
  104. define('OPT_ATT_SLAVE', 32);
  105. /**
  106. * DB Engine -should be moved into CMDBSource
  107. *
  108. * @package iTopORM
  109. */
  110. define('MYSQL_ENGINE', 'innodb');
  111. //define('MYSQL_ENGINE', 'myisam');
  112. /**
  113. * (API) The objects definitions as well as their mapping to the database
  114. *
  115. * @package iTopORM
  116. */
  117. abstract class MetaModel
  118. {
  119. ///////////////////////////////////////////////////////////////////////////
  120. //
  121. // STATIC Members
  122. //
  123. ///////////////////////////////////////////////////////////////////////////
  124. private static $m_bTraceSourceFiles = false;
  125. private static $m_aClassToFile = array();
  126. public static function GetClassFiles()
  127. {
  128. return self::$m_aClassToFile;
  129. }
  130. // Purpose: workaround the following limitation = PHP5 does not allow to know the class (derived from the current one)
  131. // from which a static function is called (__CLASS__ and self are interpreted during parsing)
  132. private static function GetCallersPHPClass($sExpectedFunctionName = null, $bRecordSourceFile = false)
  133. {
  134. //var_dump(debug_backtrace());
  135. $aBacktrace = debug_backtrace();
  136. // $aBacktrace[0] is where we are
  137. // $aBacktrace[1] is the caller of GetCallersPHPClass
  138. // $aBacktrace[1] is the info we want
  139. if (!empty($sExpectedFunctionName))
  140. {
  141. assert('$aBacktrace[2]["function"] == $sExpectedFunctionName');
  142. }
  143. if ($bRecordSourceFile)
  144. {
  145. self::$m_aClassToFile[$aBacktrace[2]["class"]] = $aBacktrace[1]["file"];
  146. }
  147. return $aBacktrace[2]["class"];
  148. }
  149. // Static init -why and how it works
  150. //
  151. // We found the following limitations:
  152. //- it is not possible to define non scalar constants
  153. //- it is not possible to declare a static variable as '= new myclass()'
  154. // Then we had do propose this model, in which a derived (non abstract)
  155. // class should implement Init(), to call InheritAttributes or AddAttribute.
  156. private static function _check_subclass($sClass)
  157. {
  158. // See also IsValidClass()... ???? #@#
  159. // class is mandatory
  160. // (it is not possible to guess it when called as myderived::...)
  161. if (!array_key_exists($sClass, self::$m_aClassParams))
  162. {
  163. throw new CoreException("Unknown class '$sClass'");
  164. }
  165. }
  166. public static function static_var_dump()
  167. {
  168. var_dump(get_class_vars(__CLASS__));
  169. }
  170. private static $m_bDebugQuery = false;
  171. private static $m_iStackDepthRef = 0;
  172. public static function StartDebugQuery()
  173. {
  174. $aBacktrace = debug_backtrace();
  175. self::$m_iStackDepthRef = count($aBacktrace);
  176. self::$m_bDebugQuery = true;
  177. }
  178. public static function StopDebugQuery()
  179. {
  180. self::$m_bDebugQuery = false;
  181. }
  182. public static function DbgTrace($value)
  183. {
  184. if (!self::$m_bDebugQuery) return;
  185. $aBacktrace = debug_backtrace();
  186. $iCallStackPos = count($aBacktrace) - self::$m_bDebugQuery;
  187. $sIndent = "";
  188. for ($i = 0 ; $i < $iCallStackPos ; $i++)
  189. {
  190. $sIndent .= " .-=^=-. ";
  191. }
  192. $aCallers = array();
  193. foreach($aBacktrace as $aStackInfo)
  194. {
  195. $aCallers[] = $aStackInfo["function"];
  196. }
  197. $sCallers = "Callstack: ".implode(', ', $aCallers);
  198. $sFunction = "<b title=\"$sCallers\">".$aBacktrace[1]["function"]."</b>";
  199. if (is_string($value))
  200. {
  201. echo "$sIndent$sFunction: $value<br/>\n";
  202. }
  203. else if (is_object($value))
  204. {
  205. echo "$sIndent$sFunction:\n<pre>\n";
  206. print_r($value);
  207. echo "</pre>\n";
  208. }
  209. else
  210. {
  211. echo "$sIndent$sFunction: $value<br/>\n";
  212. }
  213. }
  214. private static $m_oConfig = null;
  215. private static $m_bSkipCheckToWrite = false;
  216. private static $m_bSkipCheckExtKeys = false;
  217. private static $m_bUseAPCCache = false;
  218. private static $m_iQueryCacheTTL = 3600;
  219. private static $m_bQueryCacheEnabled = false;
  220. private static $m_bTraceQueries = false;
  221. private static $m_bIndentQueries = false;
  222. private static $m_bOptimizeQueries = false;
  223. private static $m_aQueriesLog = array();
  224. private static $m_bLogIssue = false;
  225. private static $m_bLogNotification = false;
  226. private static $m_bLogWebService = false;
  227. public static function SkipCheckToWrite()
  228. {
  229. return self::$m_bSkipCheckToWrite;
  230. }
  231. public static function SkipCheckExtKeys()
  232. {
  233. return self::$m_bSkipCheckExtKeys;
  234. }
  235. public static function IsLogEnabledIssue()
  236. {
  237. return self::$m_bLogIssue;
  238. }
  239. public static function IsLogEnabledNotification()
  240. {
  241. return self::$m_bLogNotification;
  242. }
  243. public static function IsLogEnabledWebService()
  244. {
  245. return self::$m_bLogWebService;
  246. }
  247. private static $m_sDBName = "";
  248. private static $m_sTablePrefix = ""; // table prefix for the current application instance (allow several applications on the same DB)
  249. private static $m_Category2Class = array();
  250. private static $m_aRootClasses = array(); // array of "classname" => "rootclass"
  251. private static $m_aParentClasses = array(); // array of ("classname" => array of "parentclass")
  252. private static $m_aChildClasses = array(); // array of ("classname" => array of "childclass")
  253. private static $m_aClassParams = array(); // array of ("classname" => array of class information)
  254. static public function GetParentPersistentClass($sRefClass)
  255. {
  256. $sClass = get_parent_class($sRefClass);
  257. if (!$sClass) return '';
  258. if ($sClass == 'DBObject') return ''; // Warning: __CLASS__ is lower case in my version of PHP
  259. // Note: the UI/business model may implement pure PHP classes (intermediate layers)
  260. if (array_key_exists($sClass, self::$m_aClassParams))
  261. {
  262. return $sClass;
  263. }
  264. return self::GetParentPersistentClass($sClass);
  265. }
  266. final static public function GetName($sClass)
  267. {
  268. self::_check_subclass($sClass);
  269. $sStringCode = 'Class:'.$sClass;
  270. return Dict::S($sStringCode, str_replace('_', ' ', $sClass));
  271. }
  272. final static public function GetName_Obsolete($sClass)
  273. {
  274. // Written for compatibility with a data model written prior to version 0.9.1
  275. self::_check_subclass($sClass);
  276. if (array_key_exists('name', self::$m_aClassParams[$sClass]))
  277. {
  278. return self::$m_aClassParams[$sClass]['name'];
  279. }
  280. else
  281. {
  282. return self::GetName($sClass);
  283. }
  284. }
  285. final static public function GetClassFromLabel($sClassLabel, $bCaseSensitive = true)
  286. {
  287. foreach(self::GetClasses() as $sClass)
  288. {
  289. if ($bCaseSensitive)
  290. {
  291. if (self::GetName($sClass) == $sClassLabel)
  292. {
  293. return $sClass;
  294. }
  295. }
  296. else
  297. {
  298. if (strcasecmp(self::GetName($sClass), $sClassLabel) == 0)
  299. {
  300. return $sClass;
  301. }
  302. }
  303. }
  304. return null;
  305. }
  306. final static public function GetCategory($sClass)
  307. {
  308. self::_check_subclass($sClass);
  309. return self::$m_aClassParams[$sClass]["category"];
  310. }
  311. final static public function HasCategory($sClass, $sCategory)
  312. {
  313. self::_check_subclass($sClass);
  314. return (strpos(self::$m_aClassParams[$sClass]["category"], $sCategory) !== false);
  315. }
  316. final static public function GetClassDescription($sClass)
  317. {
  318. self::_check_subclass($sClass);
  319. $sStringCode = 'Class:'.$sClass.'+';
  320. return Dict::S($sStringCode, '');
  321. }
  322. final static public function GetClassDescription_Obsolete($sClass)
  323. {
  324. // Written for compatibility with a data model written prior to version 0.9.1
  325. self::_check_subclass($sClass);
  326. if (array_key_exists('description', self::$m_aClassParams[$sClass]))
  327. {
  328. return self::$m_aClassParams[$sClass]['description'];
  329. }
  330. else
  331. {
  332. return self::GetClassDescription($sClass);
  333. }
  334. }
  335. final static public function GetClassIcon($sClass, $bImgTag = true, $sMoreStyles = '')
  336. {
  337. self::_check_subclass($sClass);
  338. $sIcon = '';
  339. if (array_key_exists('icon', self::$m_aClassParams[$sClass]))
  340. {
  341. $sIcon = self::$m_aClassParams[$sClass]['icon'];
  342. }
  343. if (strlen($sIcon) == 0)
  344. {
  345. $sParentClass = self::GetParentPersistentClass($sClass);
  346. if (strlen($sParentClass) > 0)
  347. {
  348. return self::GetClassIcon($sParentClass, $bImgTag, $sMoreStyles);
  349. }
  350. }
  351. $sIcon = str_replace('/modules/', '/env-'.utils::GetCurrentEnvironment().'/', $sIcon); // Support of pre-2.0 modules
  352. if ($bImgTag && ($sIcon != ''))
  353. {
  354. $sIcon = "<img src=\"$sIcon\" style=\"vertical-align:middle;$sMoreStyles\"/>";
  355. }
  356. return $sIcon;
  357. }
  358. final static public function IsAutoIncrementKey($sClass)
  359. {
  360. self::_check_subclass($sClass);
  361. return (self::$m_aClassParams[$sClass]["key_type"] == "autoincrement");
  362. }
  363. final static public function GetNameSpec($sClass)
  364. {
  365. self::_check_subclass($sClass);
  366. $nameRawSpec = self::$m_aClassParams[$sClass]["name_attcode"];
  367. if (is_array($nameRawSpec))
  368. {
  369. $sFormat = Dict::S("Class:$sClass/Name", '');
  370. if (strlen($sFormat) == 0)
  371. {
  372. // Default to "%1$s %2$s..."
  373. for($i = 1 ; $i <= count($nameRawSpec) ; $i++)
  374. {
  375. if (empty($sFormat))
  376. {
  377. $sFormat .= '%'.$i.'$s';
  378. }
  379. else
  380. {
  381. $sFormat .= ' %'.$i.'$s';
  382. }
  383. }
  384. }
  385. return array($sFormat, $nameRawSpec);
  386. }
  387. elseif (empty($nameRawSpec))
  388. {
  389. //return array($sClass.' %s', array('id'));
  390. return array($sClass, array());
  391. }
  392. else
  393. {
  394. // string -> attcode
  395. return array('%1$s', array($nameRawSpec));
  396. }
  397. }
  398. /**
  399. * Get the friendly name expression for a given class
  400. */
  401. final static public function GetNameExpression($sClass)
  402. {
  403. $aNameSpec = self::GetNameSpec($sClass);
  404. $sFormat = $aNameSpec[0];
  405. $aAttributes = $aNameSpec[1];
  406. $aPieces = preg_split('/%([0-9])\\$s/', $sFormat, -1, PREG_SPLIT_DELIM_CAPTURE);
  407. $aExpressions = array();
  408. foreach($aPieces as $i => $sPiece)
  409. {
  410. if ($i & 1)
  411. {
  412. // $i is ODD - sPiece is a delimiter
  413. //
  414. $iReplacement = (int)$sPiece - 1;
  415. if (isset($aAttributes[$iReplacement]))
  416. {
  417. $sAttCode = $aAttributes[$iReplacement];
  418. $oAttDef = self::GetAttributeDef($sClass, $sAttCode);
  419. if ($oAttDef->IsExternalField() || ($oAttDef instanceof AttributeFriendlyName))
  420. {
  421. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  422. $sClassOfAttribute = self::GetAttributeOrigin($sClass, $sKeyAttCode);
  423. }
  424. else
  425. {
  426. $sClassOfAttribute = self::GetAttributeOrigin($sClass, $sAttCode);
  427. }
  428. $aExpressions[] = new FieldExpression($sAttCode, $sClassOfAttribute);
  429. }
  430. }
  431. else
  432. {
  433. // $i is EVEN - sPiece is a literal
  434. //
  435. if (strlen($sPiece) > 0)
  436. {
  437. $aExpressions[] = new ScalarExpression($sPiece);
  438. }
  439. }
  440. }
  441. $oNameExpr = new CharConcatExpression($aExpressions);
  442. return $oNameExpr;
  443. }
  444. /**
  445. * Get the friendly name for the class and its subclasses (if finalclass = 'subclass' ...)
  446. * Simplifies the final expression by grouping classes having the same name expression
  447. * Used when querying a parent class
  448. */
  449. final static protected function GetExtendedNameExpression($sClass)
  450. {
  451. // 1st step - get all of the required expressions (instantiable classes)
  452. // and group them using their OQL representation
  453. //
  454. $aFNExpressions = array(); // signature => array('expression' => oExp, 'classes' => array of classes)
  455. foreach (self::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL) as $sSubClass)
  456. {
  457. if (($sSubClass != $sClass) && self::IsAbstract($sSubClass)) continue;
  458. $oSubClassName = self::GetNameExpression($sSubClass);
  459. $sSignature = $oSubClassName->Render();
  460. if (!array_key_exists($sSignature, $aFNExpressions))
  461. {
  462. $aFNExpressions[$sSignature] = array(
  463. 'expression' => $oSubClassName,
  464. 'classes' => array(),
  465. );
  466. }
  467. $aFNExpressions[$sSignature]['classes'][] = $sSubClass;
  468. }
  469. // 2nd step - build the final name expression depending on the finalclass
  470. //
  471. if (count($aFNExpressions) == 1)
  472. {
  473. $aExpData = reset($aFNExpressions);
  474. $oNameExpression = $aExpData['expression'];
  475. }
  476. else
  477. {
  478. $oNameExpression = null;
  479. foreach ($aFNExpressions as $sSignature => $aExpData)
  480. {
  481. $oClassListExpr = ListExpression::FromScalars($aExpData['classes']);
  482. $oClassExpr = new FieldExpression('finalclass', $sClass);
  483. $oClassInList = new BinaryExpression($oClassExpr, 'IN', $oClassListExpr);
  484. if (is_null($oNameExpression))
  485. {
  486. $oNameExpression = $aExpData['expression'];
  487. }
  488. else
  489. {
  490. $oNameExpression = new FunctionExpression('IF', array($oClassInList, $aExpData['expression'], $oNameExpression));
  491. }
  492. }
  493. }
  494. return $oNameExpression;
  495. }
  496. final static public function GetStateAttributeCode($sClass)
  497. {
  498. self::_check_subclass($sClass);
  499. return self::$m_aClassParams[$sClass]["state_attcode"];
  500. }
  501. final static public function GetDefaultState($sClass)
  502. {
  503. $sDefaultState = '';
  504. $sStateAttrCode = self::GetStateAttributeCode($sClass);
  505. if (!empty($sStateAttrCode))
  506. {
  507. $oStateAttrDef = self::GetAttributeDef($sClass, $sStateAttrCode);
  508. $sDefaultState = $oStateAttrDef->GetDefaultValue();
  509. }
  510. return $sDefaultState;
  511. }
  512. final static public function GetReconcKeys($sClass)
  513. {
  514. self::_check_subclass($sClass);
  515. return self::$m_aClassParams[$sClass]["reconc_keys"];
  516. }
  517. final static public function GetDisplayTemplate($sClass)
  518. {
  519. self::_check_subclass($sClass);
  520. return array_key_exists("display_template", self::$m_aClassParams[$sClass]) ? self::$m_aClassParams[$sClass]["display_template"]: '';
  521. }
  522. final static public function GetOrderByDefault($sClass, $bOnlyDeclared = false)
  523. {
  524. self::_check_subclass($sClass);
  525. $aOrderBy = array_key_exists("order_by_default", self::$m_aClassParams[$sClass]) ? self::$m_aClassParams[$sClass]["order_by_default"]: array();
  526. if ($bOnlyDeclared)
  527. {
  528. // Used to reverse engineer the declaration of the data model
  529. return $aOrderBy;
  530. }
  531. else
  532. {
  533. if (count($aOrderBy) == 0)
  534. {
  535. $aOrderBy['friendlyname'] = true;
  536. }
  537. return $aOrderBy;
  538. }
  539. }
  540. final static public function GetAttributeOrigin($sClass, $sAttCode)
  541. {
  542. self::_check_subclass($sClass);
  543. return self::$m_aAttribOrigins[$sClass][$sAttCode];
  544. }
  545. final static public function GetPrequisiteAttributes($sClass, $sAttCode)
  546. {
  547. self::_check_subclass($sClass);
  548. $oAtt = self::GetAttributeDef($sClass, $sAttCode);
  549. // Temporary implementation: later, we might be able to compute
  550. // the dependencies, based on the attributes definition
  551. // (allowed values and default values)
  552. // Even non-writable attributes (like ExternalFields) can now have Prerequisites
  553. return $oAtt->GetPrerequisiteAttributes();
  554. }
  555. /**
  556. * Find all attributes that depend on the specified one (reverse of GetPrequisiteAttributes)
  557. * @param string $sClass Name of the class
  558. * @param string $sAttCode Code of the attributes
  559. * @return Array List of attribute codes that depend on the given attribute, empty array if none.
  560. */
  561. final static public function GetDependentAttributes($sClass, $sAttCode)
  562. {
  563. $aResults = array();
  564. self::_check_subclass($sClass);
  565. foreach (self::ListAttributeDefs($sClass) as $sDependentAttCode=>$void)
  566. {
  567. $aPrerequisites = self::GetPrequisiteAttributes($sClass, $sDependentAttCode);
  568. if (in_array($sAttCode, $aPrerequisites))
  569. {
  570. $aResults[] = $sDependentAttCode;
  571. }
  572. }
  573. return $aResults;
  574. }
  575. // #@# restore to private ?
  576. final static public function DBGetTable($sClass, $sAttCode = null)
  577. {
  578. self::_check_subclass($sClass);
  579. if (empty($sAttCode) || ($sAttCode == "id"))
  580. {
  581. $sTableRaw = self::$m_aClassParams[$sClass]["db_table"];
  582. if (empty($sTableRaw))
  583. {
  584. // return an empty string whenever the table is undefined, meaning that there is no table associated to this 'abstract' class
  585. return '';
  586. }
  587. else
  588. {
  589. // If the format changes here, do not forget to update the setup index page (detection of installed modules)
  590. return self::$m_sTablePrefix.$sTableRaw;
  591. }
  592. }
  593. // This attribute has been inherited (compound objects)
  594. return self::DBGetTable(self::$m_aAttribOrigins[$sClass][$sAttCode]);
  595. }
  596. final static public function DBGetView($sClass)
  597. {
  598. return self::$m_sTablePrefix."view_".$sClass;
  599. }
  600. final static public function DBEnumTables()
  601. {
  602. // This API does not rely on our capability to query the DB and retrieve
  603. // the list of existing tables
  604. // Rather, it uses the list of expected tables, corresponding to the data model
  605. $aTables = array();
  606. foreach (self::GetClasses() as $sClass)
  607. {
  608. if (!self::HasTable($sClass)) continue;
  609. $sTable = self::DBGetTable($sClass);
  610. // Could be completed later with all the classes that are using a given table
  611. if (!array_key_exists($sTable, $aTables))
  612. {
  613. $aTables[$sTable] = array();
  614. }
  615. $aTables[$sTable][] = $sClass;
  616. }
  617. return $aTables;
  618. }
  619. final static public function DBGetIndexes($sClass)
  620. {
  621. self::_check_subclass($sClass);
  622. if (isset(self::$m_aClassParams[$sClass]['indexes']))
  623. {
  624. return self::$m_aClassParams[$sClass]['indexes'];
  625. }
  626. else
  627. {
  628. return array();
  629. }
  630. }
  631. final static public function DBGetKey($sClass)
  632. {
  633. self::_check_subclass($sClass);
  634. return self::$m_aClassParams[$sClass]["db_key_field"];
  635. }
  636. final static public function DBGetClassField($sClass)
  637. {
  638. self::_check_subclass($sClass);
  639. return self::$m_aClassParams[$sClass]["db_finalclass_field"];
  640. }
  641. final static public function IsStandaloneClass($sClass)
  642. {
  643. self::_check_subclass($sClass);
  644. if (count(self::$m_aChildClasses[$sClass]) == 0)
  645. {
  646. if (count(self::$m_aParentClasses[$sClass]) == 0)
  647. {
  648. return true;
  649. }
  650. }
  651. return false;
  652. }
  653. final static public function IsParentClass($sParentClass, $sChildClass)
  654. {
  655. self::_check_subclass($sChildClass);
  656. self::_check_subclass($sParentClass);
  657. if (in_array($sParentClass, self::$m_aParentClasses[$sChildClass])) return true;
  658. if ($sChildClass == $sParentClass) return true;
  659. return false;
  660. }
  661. final static public function IsSameFamilyBranch($sClassA, $sClassB)
  662. {
  663. self::_check_subclass($sClassA);
  664. self::_check_subclass($sClassB);
  665. if (in_array($sClassA, self::$m_aParentClasses[$sClassB])) return true;
  666. if (in_array($sClassB, self::$m_aParentClasses[$sClassA])) return true;
  667. if ($sClassA == $sClassB) return true;
  668. return false;
  669. }
  670. final static public function IsSameFamily($sClassA, $sClassB)
  671. {
  672. self::_check_subclass($sClassA);
  673. self::_check_subclass($sClassB);
  674. return (self::GetRootClass($sClassA) == self::GetRootClass($sClassB));
  675. }
  676. // Attributes of a given class may contain attributes defined in a parent class
  677. // - Some attributes are a copy of the definition
  678. // - Some attributes correspond to the upper class table definition (compound objects)
  679. // (see also filters definition)
  680. private static $m_aAttribDefs = array(); // array of ("classname" => array of attributes)
  681. private static $m_aAttribOrigins = array(); // array of ("classname" => array of ("attcode"=>"sourceclass"))
  682. private static $m_aExtKeyFriends = array(); // array of ("classname" => array of ("indirect ext key attcode"=> array of ("relative ext field")))
  683. private static $m_aIgnoredAttributes = array(); //array of ("classname" => array of ("attcode")
  684. final static public function ListAttributeDefs($sClass)
  685. {
  686. self::_check_subclass($sClass);
  687. return self::$m_aAttribDefs[$sClass];
  688. }
  689. final public static function GetAttributesList($sClass)
  690. {
  691. self::_check_subclass($sClass);
  692. return array_keys(self::$m_aAttribDefs[$sClass]);
  693. }
  694. final public static function GetFiltersList($sClass)
  695. {
  696. self::_check_subclass($sClass);
  697. return array_keys(self::$m_aFilterDefs[$sClass]);
  698. }
  699. final public static function GetKeysList($sClass)
  700. {
  701. self::_check_subclass($sClass);
  702. $aExtKeys = array();
  703. foreach(self::$m_aAttribDefs[$sClass] as $sAttCode => $oAttDef)
  704. {
  705. if ($oAttDef->IsExternalKey())
  706. {
  707. $aExtKeys[] = $sAttCode;
  708. }
  709. }
  710. return $aExtKeys;
  711. }
  712. final static public function IsValidKeyAttCode($sClass, $sAttCode)
  713. {
  714. if (!array_key_exists($sClass, self::$m_aAttribDefs)) return false;
  715. if (!array_key_exists($sAttCode, self::$m_aAttribDefs[$sClass])) return false;
  716. return (self::$m_aAttribDefs[$sClass][$sAttCode]->IsExternalKey());
  717. }
  718. final static public function IsValidAttCode($sClass, $sAttCode, $bExtended = false)
  719. {
  720. if (!array_key_exists($sClass, self::$m_aAttribDefs)) return false;
  721. if ($bExtended)
  722. {
  723. if (($iPos = strpos($sAttCode, '->')) === false)
  724. {
  725. $bRes = array_key_exists($sAttCode, self::$m_aAttribDefs[$sClass]);
  726. }
  727. else
  728. {
  729. $sExtKeyAttCode = substr($sAttCode, 0, $iPos);
  730. $sRemoteAttCode = substr($sAttCode, $iPos + 2);
  731. if (MetaModel::IsValidAttCode($sClass, $sExtKeyAttCode))
  732. {
  733. $oKeyAttDef = MetaModel::GetAttributeDef($sClass, $sExtKeyAttCode);
  734. $sRemoteClass = $oKeyAttDef->GetTargetClass();
  735. $bRes = MetaModel::IsValidAttCode($sRemoteClass, $sRemoteAttCode, true);
  736. }
  737. else
  738. {
  739. $bRes = false;
  740. }
  741. }
  742. }
  743. else
  744. {
  745. $bRes = array_key_exists($sAttCode, self::$m_aAttribDefs[$sClass]);
  746. }
  747. return $bRes;
  748. }
  749. final static public function IsAttributeOrigin($sClass, $sAttCode)
  750. {
  751. return (self::$m_aAttribOrigins[$sClass][$sAttCode] == $sClass);
  752. }
  753. final static public function IsValidFilterCode($sClass, $sFilterCode)
  754. {
  755. if (!array_key_exists($sClass, self::$m_aFilterDefs)) return false;
  756. return (array_key_exists($sFilterCode, self::$m_aFilterDefs[$sClass]));
  757. }
  758. public static function IsValidClass($sClass)
  759. {
  760. return (array_key_exists($sClass, self::$m_aAttribDefs));
  761. }
  762. public static function IsValidObject($oObject)
  763. {
  764. if (!is_object($oObject)) return false;
  765. return (self::IsValidClass(get_class($oObject)));
  766. }
  767. public static function IsReconcKey($sClass, $sAttCode)
  768. {
  769. return (in_array($sAttCode, self::GetReconcKeys($sClass)));
  770. }
  771. final static public function GetAttributeDef($sClass, $sAttCode)
  772. {
  773. self::_check_subclass($sClass);
  774. return self::$m_aAttribDefs[$sClass][$sAttCode];
  775. }
  776. final static public function GetExternalKeys($sClass)
  777. {
  778. $aExtKeys = array();
  779. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAtt)
  780. {
  781. if ($oAtt->IsExternalKey())
  782. {
  783. $aExtKeys[$sAttCode] = $oAtt;
  784. }
  785. }
  786. return $aExtKeys;
  787. }
  788. final static public function GetLinkedSets($sClass)
  789. {
  790. $aLinkedSets = array();
  791. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAtt)
  792. {
  793. if (is_subclass_of($oAtt, 'AttributeLinkedSet'))
  794. {
  795. $aLinkedSets[$sAttCode] = $oAtt;
  796. }
  797. }
  798. return $aLinkedSets;
  799. }
  800. final static public function GetExternalFields($sClass, $sKeyAttCode)
  801. {
  802. static $aExtFields = array();
  803. if (!isset($aExtFields[$sClass][$sKeyAttCode]))
  804. {
  805. $aExtFields[$sClass][$sKeyAttCode] = array();
  806. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAtt)
  807. {
  808. if ($oAtt->IsExternalField() && ($oAtt->GetKeyAttCode() == $sKeyAttCode))
  809. {
  810. $aExtFields[$sClass][$sKeyAttCode][$oAtt->GetExtAttCode()] = $oAtt;
  811. }
  812. }
  813. }
  814. return $aExtFields[$sClass][$sKeyAttCode];
  815. }
  816. final static public function FindExternalField($sClass, $sKeyAttCode, $sRemoteAttCode)
  817. {
  818. $aExtFields = self::GetExternalFields($sClass, $sKeyAttCode);
  819. if (isset($aExtFields[$sRemoteAttCode]))
  820. {
  821. return $aExtFields[$sRemoteAttCode];
  822. }
  823. else
  824. {
  825. return null;
  826. }
  827. }
  828. final static public function GetExtKeyFriends($sClass, $sExtKeyAttCode)
  829. {
  830. if (array_key_exists($sExtKeyAttCode, self::$m_aExtKeyFriends[$sClass]))
  831. {
  832. return self::$m_aExtKeyFriends[$sClass][$sExtKeyAttCode];
  833. }
  834. else
  835. {
  836. return array();
  837. }
  838. }
  839. protected static $m_aTrackForwardCache = array();
  840. /**
  841. * List external keys for which there is a LinkSet (direct or indirect) on the other end
  842. * For those external keys, a change will have a special meaning on the other end
  843. * in term of change tracking
  844. */
  845. final static public function GetTrackForwardExternalKeys($sClass)
  846. {
  847. if (!isset(self::$m_aTrackForwardCache[$sClass]))
  848. {
  849. $aRes = array();
  850. foreach (MetaModel::GetExternalKeys($sClass) as $sAttCode => $oAttDef)
  851. {
  852. $sRemoteClass = $oAttDef->GetTargetClass();
  853. foreach (MetaModel::ListAttributeDefs($sRemoteClass) as $sRemoteAttCode => $oRemoteAttDef)
  854. {
  855. if (!$oRemoteAttDef->IsLinkSet()) continue;
  856. if (!is_subclass_of($sClass, $oRemoteAttDef->GetLinkedClass()) && $oRemoteAttDef->GetLinkedClass() != $sClass) continue;
  857. if ($oRemoteAttDef->GetExtKeyToMe() != $sAttCode) continue;
  858. $aRes[$sAttCode] = $oRemoteAttDef;
  859. }
  860. }
  861. self::$m_aTrackForwardCache[$sClass] = $aRes;
  862. }
  863. return self::$m_aTrackForwardCache[$sClass];
  864. }
  865. /**
  866. * Get the attribute label
  867. * @param string sClass Persistent class
  868. * @param string sAttCodeEx Extended attribute code: attcode[->attcode]
  869. * @param bool $bShowMandatory If true, add a star character (at the end or before the ->) to show that the field is mandatory
  870. * @return string A user friendly format of the string: AttributeName or AttributeName->ExtAttributeName
  871. */
  872. public static function GetLabel($sClass, $sAttCodeEx, $bShowMandatory = false)
  873. {
  874. $sLabel = '';
  875. if (preg_match('/(.+)->(.+)/', $sAttCodeEx, $aMatches) > 0)
  876. {
  877. $sAttribute = $aMatches[1];
  878. $sField = $aMatches[2];
  879. $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttribute);
  880. $sMandatory = ($bShowMandatory && !$oAttDef->IsNullAllowed()) ? '*' : '';
  881. if ($oAttDef->IsExternalKey())
  882. {
  883. $sTargetClass = $oAttDef->GetTargetClass();
  884. $oTargetAttDef = MetaModel::GetAttributeDef($sTargetClass, $sField);
  885. $sLabel = $oAttDef->GetLabel().$sMandatory.'->'.$oTargetAttDef->GetLabel();
  886. }
  887. else
  888. {
  889. // Let's return something displayable... but this should never happen!
  890. $sLabel = $oAttDef->GetLabel().$sMandatory.'->'.$aMatches[2];
  891. }
  892. }
  893. else
  894. {
  895. if ($sAttCodeEx == 'id')
  896. {
  897. $sLabel = Dict::S('UI:CSVImport:idField');
  898. }
  899. else
  900. {
  901. $oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCodeEx);
  902. $sMandatory = ($bShowMandatory && !$oAttDef->IsNullAllowed()) ? '*' : '';
  903. $sLabel = $oAttDef->GetLabel().$sMandatory;
  904. }
  905. }
  906. return $sLabel;
  907. }
  908. public static function GetDescription($sClass, $sAttCode)
  909. {
  910. $oAttDef = self::GetAttributeDef($sClass, $sAttCode);
  911. if ($oAttDef) return $oAttDef->GetDescription();
  912. return "";
  913. }
  914. // Filters of a given class may contain filters defined in a parent class
  915. // - Some filters are a copy of the definition
  916. // - Some filters correspond to the upper class table definition (compound objects)
  917. // (see also attributes definition)
  918. private static $m_aFilterDefs = array(); // array of ("classname" => array filterdef)
  919. private static $m_aFilterOrigins = array(); // array of ("classname" => array of ("attcode"=>"sourceclass"))
  920. public static function GetClassFilterDefs($sClass)
  921. {
  922. self::_check_subclass($sClass);
  923. return self::$m_aFilterDefs[$sClass];
  924. }
  925. final static public function GetClassFilterDef($sClass, $sFilterCode)
  926. {
  927. self::_check_subclass($sClass);
  928. if (!array_key_exists($sFilterCode, self::$m_aFilterDefs[$sClass]))
  929. {
  930. throw new CoreException("Unknown filter code '$sFilterCode' for class '$sClass'");
  931. }
  932. return self::$m_aFilterDefs[$sClass][$sFilterCode];
  933. }
  934. public static function GetFilterLabel($sClass, $sFilterCode)
  935. {
  936. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  937. if ($oFilter) return $oFilter->GetLabel();
  938. return "";
  939. }
  940. public static function GetFilterDescription($sClass, $sFilterCode)
  941. {
  942. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  943. if ($oFilter) return $oFilter->GetDescription();
  944. return "";
  945. }
  946. // returns an array of opcode=>oplabel (e.g. "differs from")
  947. public static function GetFilterOperators($sClass, $sFilterCode)
  948. {
  949. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  950. if ($oFilter) return $oFilter->GetOperators();
  951. return array();
  952. }
  953. // returns an opcode
  954. public static function GetFilterLooseOperator($sClass, $sFilterCode)
  955. {
  956. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  957. if ($oFilter) return $oFilter->GetLooseOperator();
  958. return array();
  959. }
  960. public static function GetFilterOpDescription($sClass, $sFilterCode, $sOpCode)
  961. {
  962. $oFilter = self::GetClassFilterDef($sClass, $sFilterCode);
  963. if ($oFilter) return $oFilter->GetOpDescription($sOpCode);
  964. return "";
  965. }
  966. public static function GetFilterHTMLInput($sFilterCode)
  967. {
  968. return "<INPUT name=\"$sFilterCode\">";
  969. }
  970. // Lists of attributes/search filters
  971. //
  972. private static $m_aListInfos = array(); // array of ("listcode" => various info on the list, common to every classes)
  973. private static $m_aListData = array(); // array of ("classname" => array of "listcode" => list)
  974. // list may be an array of attcode / fltcode
  975. // list may be an array of "groupname" => (array of attcode / fltcode)
  976. public static function EnumZLists()
  977. {
  978. return array_keys(self::$m_aListInfos);
  979. }
  980. final static public function GetZListInfo($sListCode)
  981. {
  982. return self::$m_aListInfos[$sListCode];
  983. }
  984. public static function GetZListItems($sClass, $sListCode)
  985. {
  986. if (array_key_exists($sClass, self::$m_aListData))
  987. {
  988. if (array_key_exists($sListCode, self::$m_aListData[$sClass]))
  989. {
  990. return self::$m_aListData[$sClass][$sListCode];
  991. }
  992. }
  993. $sParentClass = self::GetParentPersistentClass($sClass);
  994. if (empty($sParentClass)) return array(); // nothing for the mother of all classes
  995. // Dig recursively
  996. return self::GetZListItems($sParentClass, $sListCode);
  997. }
  998. public static function IsAttributeInZList($sClass, $sListCode, $sAttCodeOrFltCode, $sGroup = null)
  999. {
  1000. $aZList = self::FlattenZlist(self::GetZListItems($sClass, $sListCode));
  1001. if (!$sGroup)
  1002. {
  1003. return (in_array($sAttCodeOrFltCode, $aZList));
  1004. }
  1005. return (in_array($sAttCodeOrFltCode, $aZList[$sGroup]));
  1006. }
  1007. //
  1008. // Relations
  1009. //
  1010. private static $m_aRelationInfos = array(); // array of ("relcode" => various info on the list, common to every classes)
  1011. public static function EnumRelations($sClass = '')
  1012. {
  1013. $aResult = array_keys(self::$m_aRelationInfos);
  1014. if (!empty($sClass))
  1015. {
  1016. // Return only the relations that have a meaning (i.e. for which at least one query is defined)
  1017. // for the specified class
  1018. $aClassRelations = array();
  1019. foreach($aResult as $sRelCode)
  1020. {
  1021. $aQueries = self::EnumRelationQueries($sClass, $sRelCode);
  1022. if (count($aQueries) > 0)
  1023. {
  1024. $aClassRelations[] = $sRelCode;
  1025. }
  1026. }
  1027. return $aClassRelations;
  1028. }
  1029. return $aResult;
  1030. }
  1031. public static function EnumRelationProperties($sRelCode)
  1032. {
  1033. MyHelpers::CheckKeyInArray('relation code', $sRelCode, self::$m_aRelationInfos);
  1034. return self::$m_aRelationInfos[$sRelCode];
  1035. }
  1036. final static public function GetRelationDescription($sRelCode)
  1037. {
  1038. return Dict::S("Relation:$sRelCode/Description");
  1039. }
  1040. final static public function GetRelationVerbUp($sRelCode)
  1041. {
  1042. return Dict::S("Relation:$sRelCode/VerbUp");
  1043. }
  1044. final static public function GetRelationVerbDown($sRelCode)
  1045. {
  1046. return Dict::S("Relation:$sRelCode/VerbDown");
  1047. }
  1048. public static function EnumRelationQueries($sClass, $sRelCode)
  1049. {
  1050. MyHelpers::CheckKeyInArray('relation code', $sRelCode, self::$m_aRelationInfos);
  1051. return call_user_func_array(array($sClass, 'GetRelationQueries'), array($sRelCode));
  1052. }
  1053. //
  1054. // Object lifecycle model
  1055. //
  1056. private static $m_aStates = array(); // array of ("classname" => array of "statecode"=>array('label'=>..., attribute_inherit=> attribute_list=>...))
  1057. private static $m_aStimuli = array(); // array of ("classname" => array of ("stimuluscode"=>array('label'=>...)))
  1058. 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)))
  1059. public static function EnumStates($sClass)
  1060. {
  1061. if (array_key_exists($sClass, self::$m_aStates))
  1062. {
  1063. return self::$m_aStates[$sClass];
  1064. }
  1065. else
  1066. {
  1067. return array();
  1068. }
  1069. }
  1070. /*
  1071. * Enumerate all possible initial states, including the default one
  1072. */
  1073. public static function EnumInitialStates($sClass)
  1074. {
  1075. if (array_key_exists($sClass, self::$m_aStates))
  1076. {
  1077. $aRet = array();
  1078. // Add the states for which the flag 'is_initial_state' is set to <true>
  1079. foreach(self::$m_aStates[$sClass] as $aStateCode => $aProps)
  1080. {
  1081. if (isset($aProps['initial_state_path']))
  1082. {
  1083. $aRet[$aStateCode] = $aProps['initial_state_path'];
  1084. }
  1085. }
  1086. // Add the default initial state
  1087. $sMainInitialState = self::GetDefaultState($sClass);
  1088. if (!isset($aRet[$sMainInitialState]))
  1089. {
  1090. $aRet[$sMainInitialState] = array();
  1091. }
  1092. return $aRet;
  1093. }
  1094. else
  1095. {
  1096. return array();
  1097. }
  1098. }
  1099. public static function EnumStimuli($sClass)
  1100. {
  1101. if (array_key_exists($sClass, self::$m_aStimuli))
  1102. {
  1103. return self::$m_aStimuli[$sClass];
  1104. }
  1105. else
  1106. {
  1107. return array();
  1108. }
  1109. }
  1110. public static function GetStateLabel($sClass, $sStateValue)
  1111. {
  1112. $sStateAttrCode = self::GetStateAttributeCode($sClass);
  1113. $oAttDef = self::GetAttributeDef($sClass, $sStateAttrCode);
  1114. return $oAttDef->GetValueLabel($sStateValue);
  1115. }
  1116. public static function GetStateDescription($sClass, $sStateValue)
  1117. {
  1118. $sStateAttrCode = self::GetStateAttributeCode($sClass);
  1119. $oAttDef = self::GetAttributeDef($sClass, $sStateAttrCode);
  1120. return $oAttDef->GetValueDescription($sStateValue);
  1121. }
  1122. public static function EnumTransitions($sClass, $sStateCode)
  1123. {
  1124. if (array_key_exists($sClass, self::$m_aTransitions))
  1125. {
  1126. if (array_key_exists($sStateCode, self::$m_aTransitions[$sClass]))
  1127. {
  1128. return self::$m_aTransitions[$sClass][$sStateCode];
  1129. }
  1130. }
  1131. return array();
  1132. }
  1133. public static function GetAttributeFlags($sClass, $sState, $sAttCode)
  1134. {
  1135. $iFlags = 0; // By default (if no life cycle) no flag at all
  1136. $sStateAttCode = self::GetStateAttributeCode($sClass);
  1137. if (!empty($sStateAttCode))
  1138. {
  1139. $aStates = MetaModel::EnumStates($sClass);
  1140. if (!array_key_exists($sState, $aStates))
  1141. {
  1142. throw new CoreException("Invalid state '$sState' for class '$sClass', expecting a value in {".implode(', ', array_keys($aStates))."}");
  1143. }
  1144. $aCurrentState = $aStates[$sState];
  1145. if ( (array_key_exists('attribute_list', $aCurrentState)) && (array_key_exists($sAttCode, $aCurrentState['attribute_list'])) )
  1146. {
  1147. $iFlags = $aCurrentState['attribute_list'][$sAttCode];
  1148. }
  1149. }
  1150. return $iFlags;
  1151. }
  1152. /**
  1153. * Combines the flags from the all states that compose the initial_state_path
  1154. */
  1155. public static function GetInitialStateAttributeFlags($sClass, $sState, $sAttCode)
  1156. {
  1157. $iFlags = self::GetAttributeFlags($sClass, $sState, $sAttCode); // Be default set the same flags as the 'target' state
  1158. $sStateAttCode = self::GetStateAttributeCode($sClass);
  1159. if (!empty($sStateAttCode))
  1160. {
  1161. $aStates = MetaModel::EnumInitialStates($sClass);
  1162. if (array_key_exists($sState, $aStates))
  1163. {
  1164. $bReadOnly = (($iFlags & OPT_ATT_READONLY) == OPT_ATT_READONLY);
  1165. $bHidden = (($iFlags & OPT_ATT_HIDDEN) == OPT_ATT_HIDDEN);
  1166. foreach($aStates[$sState] as $sPrevState)
  1167. {
  1168. $iPrevFlags = self::GetAttributeFlags($sClass, $sPrevState, $sAttCode);
  1169. if (($iPrevFlags & OPT_ATT_HIDDEN) != OPT_ATT_HIDDEN)
  1170. {
  1171. $bReadOnly = $bReadOnly && (($iPrevFlags & OPT_ATT_READONLY) == OPT_ATT_READONLY); // if it is/was not readonly => then it's not
  1172. }
  1173. $bHidden = $bHidden && (($iPrevFlags & OPT_ATT_HIDDEN) == OPT_ATT_HIDDEN); // if it is/was not hidden => then it's not
  1174. }
  1175. if ($bReadOnly)
  1176. {
  1177. $iFlags = $iFlags | OPT_ATT_READONLY;
  1178. }
  1179. else
  1180. {
  1181. $iFlags = $iFlags & ~OPT_ATT_READONLY;
  1182. }
  1183. if ($bHidden)
  1184. {
  1185. $iFlags = $iFlags | OPT_ATT_HIDDEN;
  1186. }
  1187. else
  1188. {
  1189. $iFlags = $iFlags & ~OPT_ATT_HIDDEN;
  1190. }
  1191. }
  1192. }
  1193. return $iFlags;
  1194. }
  1195. //
  1196. // Allowed values
  1197. //
  1198. public static function GetAllowedValues_att($sClass, $sAttCode, $aArgs = array(), $sContains = '')
  1199. {
  1200. $oAttDef = self::GetAttributeDef($sClass, $sAttCode);
  1201. return $oAttDef->GetAllowedValues($aArgs, $sContains);
  1202. }
  1203. public static function GetAllowedValues_flt($sClass, $sFltCode, $aArgs = array(), $sContains = '')
  1204. {
  1205. $oFltDef = self::GetClassFilterDef($sClass, $sFltCode);
  1206. return $oFltDef->GetAllowedValues($aArgs, $sContains);
  1207. }
  1208. public static function GetAllowedValuesAsObjectSet($sClass, $sAttCode, $aArgs = array(), $sContains = '')
  1209. {
  1210. $oAttDef = self::GetAttributeDef($sClass, $sAttCode);
  1211. return $oAttDef->GetAllowedValuesAsObjectSet($aArgs, $sContains);
  1212. }
  1213. //
  1214. // Businezz model declaration verbs (should be static)
  1215. //
  1216. public static function RegisterZList($sListCode, $aListInfo)
  1217. {
  1218. // Check mandatory params
  1219. $aMandatParams = array(
  1220. "description" => "detailed (though one line) description of the list",
  1221. "type" => "attributes | filters",
  1222. );
  1223. foreach($aMandatParams as $sParamName=>$sParamDesc)
  1224. {
  1225. if (!array_key_exists($sParamName, $aListInfo))
  1226. {
  1227. throw new CoreException("Declaration of list $sListCode - missing parameter $sParamName");
  1228. }
  1229. }
  1230. self::$m_aListInfos[$sListCode] = $aListInfo;
  1231. }
  1232. public static function RegisterRelation($sRelCode)
  1233. {
  1234. // Each item used to be an array of properties...
  1235. self::$m_aRelationInfos[$sRelCode] = $sRelCode;
  1236. }
  1237. // Must be called once and only once...
  1238. public static function InitClasses($sTablePrefix)
  1239. {
  1240. if (count(self::GetClasses()) > 0)
  1241. {
  1242. throw new CoreException("InitClasses should not be called more than once -skipped");
  1243. return;
  1244. }
  1245. self::$m_sTablePrefix = $sTablePrefix;
  1246. // Build the list of available extensions
  1247. //
  1248. $aInterfaces = array('iApplicationUIExtension', 'iApplicationObjectExtension', 'iQueryModifier', 'iOnClassInitialization', 'iPopupMenuExtension', 'iPageUIExtension');
  1249. foreach($aInterfaces as $sInterface)
  1250. {
  1251. self::$m_aExtensionClasses[$sInterface] = array();
  1252. }
  1253. foreach(get_declared_classes() as $sPHPClass)
  1254. {
  1255. $oRefClass = new ReflectionClass($sPHPClass);
  1256. $oExtensionInstance = null;
  1257. foreach($aInterfaces as $sInterface)
  1258. {
  1259. if ($oRefClass->implementsInterface($sInterface))
  1260. {
  1261. if (is_null($oExtensionInstance))
  1262. {
  1263. $oExtensionInstance = new $sPHPClass;
  1264. }
  1265. self::$m_aExtensionClasses[$sInterface][$sPHPClass] = $oExtensionInstance;
  1266. }
  1267. }
  1268. }
  1269. // Initialize the classes (declared attributes, etc.)
  1270. //
  1271. foreach(get_declared_classes() as $sPHPClass)
  1272. {
  1273. if (is_subclass_of($sPHPClass, 'DBObject'))
  1274. {
  1275. $sParent = get_parent_class($sPHPClass);
  1276. if (array_key_exists($sParent, self::$m_aIgnoredAttributes))
  1277. {
  1278. // Inherit info about attributes to ignore
  1279. self::$m_aIgnoredAttributes[$sPHPClass] = self::$m_aIgnoredAttributes[$sParent];
  1280. }
  1281. try
  1282. {
  1283. $oMethod = new ReflectionMethod($sPHPClass, 'Init');
  1284. if ($oMethod->getDeclaringClass()->name == $sPHPClass)
  1285. {
  1286. call_user_func(array($sPHPClass, 'Init'));
  1287. foreach (MetaModel::EnumPlugins('iOnClassInitialization') as $sPluginClass => $oClassInit)
  1288. {
  1289. $oClassInit->OnAfterClassInitialization($sPHPClass);
  1290. }
  1291. }
  1292. }
  1293. catch (ReflectionException $e)
  1294. {
  1295. // This class is only implementing methods, ignore it from the MetaModel perspective
  1296. }
  1297. }
  1298. }
  1299. // Add a 'class' attribute/filter to the root classes and their children
  1300. //
  1301. foreach(self::EnumRootClasses() as $sRootClass)
  1302. {
  1303. if (self::IsStandaloneClass($sRootClass)) continue;
  1304. $sDbFinalClassField = self::DBGetClassField($sRootClass);
  1305. if (strlen($sDbFinalClassField) == 0)
  1306. {
  1307. $sDbFinalClassField = 'finalclass';
  1308. self::$m_aClassParams[$sRootClass]["db_finalclass_field"] = 'finalclass';
  1309. }
  1310. $oClassAtt = new AttributeFinalClass('finalclass', array(
  1311. "sql"=>$sDbFinalClassField,
  1312. "default_value"=>$sRootClass,
  1313. "is_null_allowed"=>false,
  1314. "depends_on"=>array()
  1315. ));
  1316. $oClassAtt->SetHostClass($sRootClass);
  1317. self::$m_aAttribDefs[$sRootClass]['finalclass'] = $oClassAtt;
  1318. self::$m_aAttribOrigins[$sRootClass]['finalclass'] = $sRootClass;
  1319. $oClassFlt = new FilterFromAttribute($oClassAtt);
  1320. self::$m_aFilterDefs[$sRootClass]['finalclass'] = $oClassFlt;
  1321. self::$m_aFilterOrigins[$sRootClass]['finalclass'] = $sRootClass;
  1322. foreach(self::EnumChildClasses($sRootClass, ENUM_CHILD_CLASSES_EXCLUDETOP) as $sChildClass)
  1323. {
  1324. if (array_key_exists('finalclass', self::$m_aAttribDefs[$sChildClass]))
  1325. {
  1326. throw new CoreException("Class $sChildClass, 'finalclass' is a reserved keyword, it cannot be used as an attribute code");
  1327. }
  1328. if (array_key_exists('finalclass', self::$m_aFilterDefs[$sChildClass]))
  1329. {
  1330. throw new CoreException("Class $sChildClass, 'finalclass' is a reserved keyword, it cannot be used as a filter code");
  1331. }
  1332. $oCloned = clone $oClassAtt;
  1333. $oCloned->SetFixedValue($sChildClass);
  1334. self::$m_aAttribDefs[$sChildClass]['finalclass'] = $oCloned;
  1335. self::$m_aAttribOrigins[$sChildClass]['finalclass'] = $sRootClass;
  1336. $oClassFlt = new FilterFromAttribute($oClassAtt);
  1337. self::$m_aFilterDefs[$sChildClass]['finalclass'] = $oClassFlt;
  1338. self::$m_aFilterOrigins[$sChildClass]['finalclass'] = self::GetRootClass($sChildClass);
  1339. }
  1340. }
  1341. // Prepare external fields and filters
  1342. // Add final class to external keys
  1343. //
  1344. foreach (self::GetClasses() as $sClass)
  1345. {
  1346. // Create the friendly name attribute
  1347. $sFriendlyNameAttCode = 'friendlyname';
  1348. $oFriendlyName = new AttributeFriendlyName($sFriendlyNameAttCode, 'id');
  1349. $oFriendlyName->SetHostClass($sClass);
  1350. self::$m_aAttribDefs[$sClass][$sFriendlyNameAttCode] = $oFriendlyName;
  1351. self::$m_aAttribOrigins[$sClass][$sFriendlyNameAttCode] = $sClass;
  1352. $oFriendlyNameFlt = new FilterFromAttribute($oFriendlyName);
  1353. self::$m_aFilterDefs[$sClass][$sFriendlyNameAttCode] = $oFriendlyNameFlt;
  1354. self::$m_aFilterOrigins[$sClass][$sFriendlyNameAttCode] = $sClass;
  1355. self::$m_aExtKeyFriends[$sClass] = array();
  1356. foreach (self::$m_aAttribDefs[$sClass] as $sAttCode => $oAttDef)
  1357. {
  1358. // Compute the filter codes
  1359. //
  1360. foreach ($oAttDef->GetFilterDefinitions() as $sFilterCode => $oFilterDef)
  1361. {
  1362. self::$m_aFilterDefs[$sClass][$sFilterCode] = $oFilterDef;
  1363. if ($oAttDef->IsExternalField())
  1364. {
  1365. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  1366. $oKeyDef = self::GetAttributeDef($sClass, $sKeyAttCode);
  1367. self::$m_aFilterOrigins[$sClass][$sFilterCode] = $oKeyDef->GetTargetClass();
  1368. }
  1369. else
  1370. {
  1371. self::$m_aFilterOrigins[$sClass][$sFilterCode] = self::$m_aAttribOrigins[$sClass][$sAttCode];
  1372. }
  1373. }
  1374. // Compute the fields that will be used to display a pointer to another object
  1375. //
  1376. if ($oAttDef->IsExternalKey(EXTKEY_ABSOLUTE))
  1377. {
  1378. // oAttDef is either
  1379. // - an external KEY / FIELD (direct),
  1380. // - an external field pointing to an external KEY / FIELD
  1381. // - an external field pointing to an external field pointing to....
  1382. $sRemoteClass = $oAttDef->GetTargetClass();
  1383. if ($oAttDef->IsExternalField())
  1384. {
  1385. // This is a key, but the value comes from elsewhere
  1386. // Create an external field pointing to the remote friendly name attribute
  1387. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  1388. $sRemoteAttCode = $oAttDef->GetExtAttCode()."_friendlyname";
  1389. $sFriendlyNameAttCode = $sAttCode.'_friendlyname';
  1390. // propagate "is_null_allowed" ?
  1391. $oFriendlyName = new AttributeExternalField($sFriendlyNameAttCode, array("allowed_values"=>null, "extkey_attcode"=>$sKeyAttCode, "target_attcode"=>$sRemoteAttCode, "depends_on"=>array()));
  1392. $oFriendlyName->SetHostClass($sClass);
  1393. self::$m_aAttribDefs[$sClass][$sFriendlyNameAttCode] = $oFriendlyName;
  1394. self::$m_aAttribOrigins[$sClass][$sFriendlyNameAttCode] = $sRemoteClass;
  1395. $oFriendlyNameFlt = new FilterFromAttribute($oFriendlyName);
  1396. self::$m_aFilterDefs[$sClass][$sFriendlyNameAttCode] = $oFriendlyNameFlt;
  1397. self::$m_aFilterOrigins[$sClass][$sFriendlyNameAttCode] = $sRemoteClass;
  1398. }
  1399. else
  1400. {
  1401. // Create the friendly name attribute
  1402. $sFriendlyNameAttCode = $sAttCode.'_friendlyname';
  1403. $oFriendlyName = new AttributeFriendlyName($sFriendlyNameAttCode, $sAttCode);
  1404. $oFriendlyName->SetHostClass($sClass);
  1405. self::$m_aAttribDefs[$sClass][$sFriendlyNameAttCode] = $oFriendlyName;
  1406. self::$m_aAttribOrigins[$sClass][$sFriendlyNameAttCode] = $sRemoteClass;
  1407. $oFriendlyNameFlt = new FilterFromAttribute($oFriendlyName);
  1408. self::$m_aFilterDefs[$sClass][$sFriendlyNameAttCode] = $oFriendlyNameFlt;
  1409. self::$m_aFilterOrigins[$sClass][$sFriendlyNameAttCode] = $sRemoteClass;
  1410. if (self::HasChildrenClasses($sRemoteClass))
  1411. {
  1412. // First, create an external field attribute, that gets the final class
  1413. $sClassRecallAttCode = $sAttCode.'_finalclass_recall';
  1414. $oClassRecall = new AttributeExternalField($sClassRecallAttCode, array(
  1415. "allowed_values"=>null,
  1416. "extkey_attcode"=>$sAttCode,
  1417. "target_attcode"=>"finalclass",
  1418. "is_null_allowed"=>true,
  1419. "depends_on"=>array()
  1420. ));
  1421. $oClassRecall->SetHostClass($sClass);
  1422. self::$m_aAttribDefs[$sClass][$sClassRecallAttCode] = $oClassRecall;
  1423. self::$m_aAttribOrigins[$sClass][$sClassRecallAttCode] = $sRemoteClass;
  1424. $oClassFlt = new FilterFromAttribute($oClassRecall);
  1425. self::$m_aFilterDefs[$sClass][$sClassRecallAttCode] = $oClassFlt;
  1426. self::$m_aFilterOrigins[$sClass][$sClassRecallAttCode] = $sRemoteClass;
  1427. // Add it to the ZLists where the external key is present
  1428. //foreach(self::$m_aListData[$sClass] as $sListCode => $aAttributes)
  1429. $sListCode = 'list';
  1430. if (isset(self::$m_aListData[$sClass][$sListCode]))
  1431. {
  1432. $aAttributes = self::$m_aListData[$sClass][$sListCode];
  1433. // temporary.... no loop
  1434. {
  1435. if (in_array($sAttCode, $aAttributes))
  1436. {
  1437. $aNewList = array();
  1438. foreach($aAttributes as $iPos => $sAttToDisplay)
  1439. {
  1440. if (is_string($sAttToDisplay) && ($sAttToDisplay == $sAttCode))
  1441. {
  1442. // Insert the final class right before
  1443. $aNewList[] = $sClassRecallAttCode;
  1444. }
  1445. $aNewList[] = $sAttToDisplay;
  1446. }
  1447. self::$m_aListData[$sClass][$sListCode] = $aNewList;
  1448. }
  1449. }
  1450. }
  1451. }
  1452. }
  1453. // Get the real external key attribute
  1454. // It will be our reference to determine the other ext fields related to the same ext key
  1455. $oFinalKeyAttDef = $oAttDef->GetKeyAttDef(EXTKEY_ABSOLUTE);
  1456. self::$m_aExtKeyFriends[$sClass][$sAttCode] = array();
  1457. foreach (self::GetExternalFields($sClass, $oAttDef->GetKeyAttCode($sAttCode)) as $oExtField)
  1458. {
  1459. // skip : those extfields will be processed as external keys
  1460. if ($oExtField->IsExternalKey(EXTKEY_ABSOLUTE)) continue;
  1461. // Note: I could not compare the objects by the mean of '==='
  1462. // because they are copied for the inheritance, and the internal references are NOT updated
  1463. if ($oExtField->GetKeyAttDef(EXTKEY_ABSOLUTE) == $oFinalKeyAttDef)
  1464. {
  1465. self::$m_aExtKeyFriends[$sClass][$sAttCode][$oExtField->GetCode()] = $oExtField;
  1466. }
  1467. }
  1468. }
  1469. }
  1470. // Add a 'id' filter
  1471. //
  1472. if (array_key_exists('id', self::$m_aAttribDefs[$sClass]))
  1473. {
  1474. throw new CoreException("Class $sClass, 'id' is a reserved keyword, it cannot be used as an attribute code");
  1475. }
  1476. if (array_key_exists('id', self::$m_aFilterDefs[$sClass]))
  1477. {
  1478. throw new CoreException("Class $sClass, 'id' is a reserved keyword, it cannot be used as a filter code");
  1479. }
  1480. $oFilter = new FilterPrivateKey('id', array('id_field' => self::DBGetKey($sClass)));
  1481. self::$m_aFilterDefs[$sClass]['id'] = $oFilter;
  1482. self::$m_aFilterOrigins[$sClass]['id'] = $sClass;
  1483. // Define defaults values for the standard ZLists
  1484. //
  1485. //foreach (self::$m_aListInfos as $sListCode => $aListConfig)
  1486. //{
  1487. // if (!isset(self::$m_aListData[$sClass][$sListCode]))
  1488. // {
  1489. // $aAllAttributes = array_keys(self::$m_aAttribDefs[$sClass]);
  1490. // self::$m_aListData[$sClass][$sListCode] = $aAllAttributes;
  1491. // //echo "<p>$sClass: $sListCode (".count($aAllAttributes)." attributes)</p>\n";
  1492. // }
  1493. //}
  1494. }
  1495. }
  1496. // To be overriden, must be called for any object class (optimization)
  1497. public static function Init()
  1498. {
  1499. // In fact it is an ABSTRACT function, but this is not compatible with the fact that it is STATIC (error in E_STRICT interpretation)
  1500. }
  1501. // To be overloaded by biz model declarations
  1502. public static function GetRelationQueries($sRelCode)
  1503. {
  1504. // In fact it is an ABSTRACT function, but this is not compatible with the fact that it is STATIC (error in E_STRICT interpretation)
  1505. return array();
  1506. }
  1507. public static function Init_Params($aParams)
  1508. {
  1509. // Check mandatory params
  1510. $aMandatParams = array(
  1511. "category" => "group classes by modules defining their visibility in the UI",
  1512. "key_type" => "autoincrement | string",
  1513. "name_attcode" => "define wich attribute is the class name, may be an array of attributes (format specified in the dictionary as 'Class:myclass/Name' => '%1\$s %2\$s...'",
  1514. "state_attcode" => "define wich attribute is representing the state (object lifecycle)",
  1515. "reconc_keys" => "define the attributes that will 'almost uniquely' identify an object in batch processes",
  1516. "db_table" => "database table",
  1517. "db_key_field" => "database field which is the key",
  1518. "db_finalclass_field" => "database field wich is the reference to the actual class of the object, considering that this will be a compound class",
  1519. );
  1520. $sClass = self::GetCallersPHPClass("Init", self::$m_bTraceSourceFiles);
  1521. foreach($aMandatParams as $sParamName=>$sParamDesc)
  1522. {
  1523. if (!array_key_exists($sParamName, $aParams))
  1524. {
  1525. throw new CoreException("Declaration of class $sClass - missing parameter $sParamName");
  1526. }
  1527. }
  1528. $aCategories = explode(',', $aParams['category']);
  1529. foreach ($aCategories as $sCategory)
  1530. {
  1531. self::$m_Category2Class[$sCategory][] = $sClass;
  1532. }
  1533. self::$m_Category2Class[''][] = $sClass; // all categories, include this one
  1534. self::$m_aRootClasses[$sClass] = $sClass; // first, let consider that I am the root... updated on inheritance
  1535. self::$m_aParentClasses[$sClass] = array();
  1536. self::$m_aChildClasses[$sClass] = array();
  1537. self::$m_aClassParams[$sClass]= $aParams;
  1538. self::$m_aAttribDefs[$sClass] = array();
  1539. self::$m_aAttribOrigins[$sClass] = array();
  1540. self::$m_aExtKeyFriends[$sClass] = array();
  1541. self::$m_aFilterDefs[$sClass] = array();
  1542. self::$m_aFilterOrigins[$sClass] = array();
  1543. }
  1544. protected static function object_array_mergeclone($aSource1, $aSource2)
  1545. {
  1546. $aRes = array();
  1547. foreach ($aSource1 as $key=>$object)
  1548. {
  1549. $aRes[$key] = clone $object;
  1550. }
  1551. foreach ($aSource2 as $key=>$object)
  1552. {
  1553. $aRes[$key] = clone $object;
  1554. }
  1555. return $aRes;
  1556. }
  1557. public static function Init_InheritAttributes($sSourceClass = null)
  1558. {
  1559. $sTargetClass = self::GetCallersPHPClass("Init");
  1560. if (empty($sSourceClass))
  1561. {
  1562. // Default: inherit from parent class
  1563. $sSourceClass = self::GetParentPersistentClass($sTargetClass);
  1564. if (empty($sSourceClass)) return; // no attributes for the mother of all classes
  1565. }
  1566. if (isset(self::$m_aAttribDefs[$sSourceClass]))
  1567. {
  1568. if (!isset(self::$m_aAttribDefs[$sTargetClass]))
  1569. {
  1570. self::$m_aAttribDefs[$sTargetClass] = array();
  1571. self::$m_aAttribOrigins[$sTargetClass] = array();
  1572. }
  1573. self::$m_aAttribDefs[$sTargetClass] = self::object_array_mergeclone(self::$m_aAttribDefs[$sTargetClass], self::$m_aAttribDefs[$sSourceClass]);
  1574. foreach(self::$m_aAttribDefs[$sTargetClass] as $sAttCode => $oAttDef)
  1575. {
  1576. $oAttDef->SetHostClass($sTargetClass);
  1577. }
  1578. self::$m_aAttribOrigins[$sTargetClass] = array_merge(self::$m_aAttribOrigins[$sTargetClass], self::$m_aAttribOrigins[$sSourceClass]);
  1579. }
  1580. // Build root class information
  1581. if (array_key_exists($sSourceClass, self::$m_aRootClasses))
  1582. {
  1583. // Inherit...
  1584. self::$m_aRootClasses[$sTargetClass] = self::$m_aRootClasses[$sSourceClass];
  1585. }
  1586. else
  1587. {
  1588. // This class will be the root class
  1589. self::$m_aRootClasses[$sSourceClass] = $sSourceClass;
  1590. self::$m_aRootClasses[$sTargetClass] = $sSourceClass;
  1591. }
  1592. self::$m_aParentClasses[$sTargetClass] += self::$m_aParentClasses[$sSourceClass];
  1593. self::$m_aParentClasses[$sTargetClass][] = $sSourceClass;
  1594. // I am the child of each and every parent...
  1595. foreach(self::$m_aParentClasses[$sTargetClass] as $sAncestorClass)
  1596. {
  1597. self::$m_aChildClasses[$sAncestorClass][] = $sTargetClass;
  1598. }
  1599. }
  1600. protected static function Init_IsKnownClass($sClass)
  1601. {
  1602. // Differs from self::IsValidClass()
  1603. // because it is being called before all the classes have been initialized
  1604. if (!class_exists($sClass)) return false;
  1605. if (!is_subclass_of($sClass, 'DBObject')) return false;
  1606. return true;
  1607. }
  1608. public static function Init_AddAttribute(AttributeDefinition $oAtt, $sTargetClass = null)
  1609. {
  1610. if (!$sTargetClass)
  1611. {
  1612. $sTargetClass = self::GetCallersPHPClass("Init");
  1613. }
  1614. $sAttCode = $oAtt->GetCode();
  1615. if ($sAttCode == 'finalclass')
  1616. {
  1617. throw new Exception("Declaration of $sTargetClass: using the reserved keyword '$sAttCode' in attribute declaration");
  1618. }
  1619. if ($sAttCode == 'friendlyname')
  1620. {
  1621. throw new Exception("Declaration of $sTargetClass: using the reserved keyword '$sAttCode' in attribute declaration");
  1622. }
  1623. if (array_key_exists($sAttCode, self::$m_aAttribDefs[$sTargetClass]))
  1624. {
  1625. throw new Exception("Declaration of $sTargetClass: attempting to redeclare the inherited attribute '$sAttCode', originaly declared in ".self::$m_aAttribOrigins[$sTargetClass][$sAttCode]);
  1626. }
  1627. // Set the "host class" as soon as possible, since HierarchicalKeys use it for their 'target class' as well
  1628. // and this needs to be know early (for Init_IsKnowClass 19 lines below)
  1629. $oAtt->SetHostClass($sTargetClass);
  1630. // Some attributes could refer to a class
  1631. // declared in a module which is currently not installed/active
  1632. // We simply discard those attributes
  1633. //
  1634. if ($oAtt->IsLinkSet())
  1635. {
  1636. $sRemoteClass = $oAtt->GetLinkedClass();
  1637. if (!self::Init_IsKnownClass($sRemoteClass))
  1638. {
  1639. self::$m_aIgnoredAttributes[$sTargetClass][$oAtt->GetCode()] = $sRemoteClass;
  1640. return;
  1641. }
  1642. }
  1643. elseif($oAtt->IsExternalKey())
  1644. {
  1645. $sRemoteClass = $oAtt->GetTargetClass();
  1646. if (!self::Init_IsKnownClass($sRemoteClass))
  1647. {
  1648. self::$m_aIgnoredAttributes[$sTargetClass][$oAtt->GetCode()] = $sRemoteClass;
  1649. return;
  1650. }
  1651. }
  1652. elseif($oAtt->IsExternalField())
  1653. {
  1654. $sExtKeyAttCode = $oAtt->GetKeyAttCode();
  1655. if (isset(self::$m_aIgnoredAttributes[$sTargetClass][$sExtKeyAttCode]))
  1656. {
  1657. // The corresponding external key has already been ignored
  1658. self::$m_aIgnoredAttributes[$sTargetClass][$oAtt->GetCode()] = self::$m_aIgnoredAttributes[$sTargetClass][$sExtKeyAttCode];
  1659. return;
  1660. }
  1661. // #@# todo - Check if the target attribute is still there
  1662. // this is not simple to implement because is involves
  1663. // several passes (the load order has a significant influence on that)
  1664. }
  1665. self::$m_aAttribDefs[$sTargetClass][$oAtt->GetCode()] = $oAtt;
  1666. self::$m_aAttribOrigins[$sTargetClass][$oAtt->GetCode()] = $sTargetClass;
  1667. // Note: it looks redundant to put targetclass there, but a mix occurs when inheritance is used
  1668. }
  1669. public static function Init_SetZListItems($sListCode, $aItems, $sTargetClass = null)
  1670. {
  1671. MyHelpers::CheckKeyInArray('list code', $sListCode, self::$m_aListInfos);
  1672. if (!$sTargetClass)
  1673. {
  1674. $sTargetClass = self::GetCallersPHPClass("Init");
  1675. }
  1676. // Discard attributes that do not make sense
  1677. // (missing classes in the current module combination, resulting in irrelevant ext key or link set)
  1678. //
  1679. self::Init_CheckZListItems($aItems, $sTargetClass);
  1680. self::$m_aListData[$sTargetClass][$sListCode] = $aItems;
  1681. }
  1682. protected static function Init_CheckZListItems(&$aItems, $sTargetClass)
  1683. {
  1684. foreach($aItems as $iFoo => $attCode)
  1685. {
  1686. if (is_array($attCode))
  1687. {
  1688. // Note: to make sure that the values will be updated recursively,
  1689. // do not pass $attCode, but $aItems[$iFoo] instead
  1690. self::Init_CheckZListItems($aItems[$iFoo], $sTargetClass);
  1691. if (count($aItems[$iFoo]) == 0)
  1692. {
  1693. unset($aItems[$iFoo]);
  1694. }
  1695. }
  1696. else if (isset(self::$m_aIgnoredAttributes[$sTargetClass][$attCode]))
  1697. {
  1698. unset($aItems[$iFoo]);
  1699. }
  1700. }
  1701. }
  1702. public static function FlattenZList($aList)
  1703. {
  1704. $aResult = array();
  1705. foreach($aList as $value)
  1706. {
  1707. if (!is_array($value))
  1708. {
  1709. $aResult[] = $value;
  1710. }
  1711. else
  1712. {
  1713. $aResult = array_merge($aResult, self::FlattenZList($value));
  1714. }
  1715. }
  1716. return $aResult;
  1717. }
  1718. public static function Init_DefineState($sStateCode, $aStateDef)
  1719. {
  1720. $sTargetClass = self::GetCallersPHPClass("Init");
  1721. if (is_null($aStateDef['attribute_list'])) $aStateDef['attribute_list'] = array();
  1722. $sParentState = $aStateDef['attribute_inherit'];
  1723. if (!empty($sParentState))
  1724. {
  1725. // Inherit from the given state (must be defined !)
  1726. //
  1727. $aToInherit = self::$m_aStates[$sTargetClass][$sParentState];
  1728. // Reset the constraint when it was mandatory to set the value at the previous state
  1729. //
  1730. foreach ($aToInherit['attribute_list'] as $sState => $iFlags)
  1731. {
  1732. $iFlags = $iFlags & ~OPT_ATT_MUSTPROMPT;
  1733. $iFlags = $iFlags & ~OPT_ATT_MUSTCHANGE;
  1734. $aToInherit['attribute_list'][$sState] = $iFlags;
  1735. }
  1736. // The inherited configuration could be overriden
  1737. $aStateDef['attribute_list'] = array_merge($aToInherit['attribute_list'], $aStateDef['attribute_list']);
  1738. }
  1739. foreach($aStateDef['attribute_list'] as $sAttCode => $iFlags)
  1740. {
  1741. if (isset(self::$m_aIgnoredAttributes[$sTargetClass][$sAttCode]))
  1742. {
  1743. unset($aStateDef['attribute_list'][$sAttCode]);
  1744. }
  1745. }
  1746. self::$m_aStates[$sTargetClass][$sStateCode] = $aStateDef;
  1747. // by default, create an empty set of transitions associated to that state
  1748. self::$m_aTransitions[$sTargetClass][$sStateCode] = array();
  1749. }
  1750. public static function Init_OverloadStateAttribute($sStateCode, $sAttCode, $iFlags)
  1751. {
  1752. // Warning: this is not sufficient: the flags have to be copied to the states that are inheriting from this state
  1753. $sTargetClass = self::GetCallersPHPClass("Init");
  1754. self::$m_aStates[$sTargetClass][$sStateCode]['attribute_list'][$sAttCode] = $iFlags;
  1755. }
  1756. public static function Init_DefineStimulus($oStimulus)
  1757. {
  1758. $sTargetClass = self::GetCallersPHPClass("Init");
  1759. self::$m_aStimuli[$sTargetClass][$oStimulus->GetCode()] = $oStimulus;
  1760. // I wanted to simplify the syntax of the declaration of objects in the biz model
  1761. // Therefore, the reference to the host class is set there
  1762. $oStimulus->SetHostClass($sTargetClass);
  1763. }
  1764. public static function Init_DefineTransition($sStateCode, $sStimulusCode, $aTransitionDef)
  1765. {
  1766. $sTargetClass = self::GetCallersPHPClass("Init");
  1767. if (is_null($aTransitionDef['actions'])) $aTransitionDef['actions'] = array();
  1768. self::$m_aTransitions[$sTargetClass][$sStateCode][$sStimulusCode] = $aTransitionDef;
  1769. }
  1770. public static function Init_InheritLifecycle($sSourceClass = '')
  1771. {
  1772. $sTargetClass = self::GetCallersPHPClass("Init");
  1773. if (empty($sSourceClass))
  1774. {
  1775. // Default: inherit from parent class
  1776. $sSourceClass = self::GetParentPersistentClass($sTargetClass);
  1777. if (empty($sSourceClass)) return; // no attributes for the mother of all classes
  1778. }
  1779. self::$m_aClassParams[$sTargetClass]["state_attcode"] = self::$m_aClassParams[$sSourceClass]["state_attcode"];
  1780. self::$m_aStates[$sTargetClass] = self::$m_aStates[$sSourceClass];
  1781. // #@# Note: the aim is to clone the data, could be an issue if the simuli objects are changed
  1782. self::$m_aStimuli[$sTargetClass] = self::$m_aStimuli[$sSourceClass];
  1783. self::$m_aTransitions[$sTargetClass] = self::$m_aTransitions[$sSourceClass];
  1784. }
  1785. //
  1786. // Static API
  1787. //
  1788. public static function GetRootClass($sClass = null)
  1789. {
  1790. self::_check_subclass($sClass);
  1791. return self::$m_aRootClasses[$sClass];
  1792. }
  1793. public static function IsRootClass($sClass)
  1794. {
  1795. self::_check_subclass($sClass);
  1796. return (self::GetRootClass($sClass) == $sClass);
  1797. }
  1798. public static function GetParentClass($sClass)
  1799. {
  1800. if (count(self::$m_aParentClasses[$sClass]) == 0)
  1801. {
  1802. return null;
  1803. }
  1804. else
  1805. {
  1806. return end(self::$m_aParentClasses[$sClass]);
  1807. }
  1808. }
  1809. /**
  1810. * Tells if a class contains a hierarchical key, and if so what is its AttCode
  1811. * @return mixed String = sAttCode or false if the class is not part of a hierarchy
  1812. */
  1813. public static function IsHierarchicalClass($sClass)
  1814. {
  1815. $sHierarchicalKeyCode = false;
  1816. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAtt)
  1817. {
  1818. if ($oAtt->IsHierarchicalKey())
  1819. {
  1820. $sHierarchicalKeyCode = $sAttCode; // Found the hierarchical key, no need to continue
  1821. break;
  1822. }
  1823. }
  1824. return $sHierarchicalKeyCode;
  1825. }
  1826. public static function EnumRootClasses()
  1827. {
  1828. return array_unique(self::$m_aRootClasses);
  1829. }
  1830. public static function EnumParentClasses($sClass, $iOption = ENUM_PARENT_CLASSES_EXCLUDELEAF, $bRootFirst = true)
  1831. {
  1832. self::_check_subclass($sClass);
  1833. if ($bRootFirst)
  1834. {
  1835. $aRes = self::$m_aParentClasses[$sClass];
  1836. }
  1837. else
  1838. {
  1839. $aRes = array_reverse(self::$m_aParentClasses[$sClass], true);
  1840. }
  1841. if ($iOption != ENUM_PARENT_CLASSES_EXCLUDELEAF)
  1842. {
  1843. if ($bRootFirst)
  1844. {
  1845. // Leaf class at the end
  1846. $aRes[] = $sClass;
  1847. }
  1848. else
  1849. {
  1850. // Leaf class on top
  1851. array_unshift($aRes, $sClass);
  1852. }
  1853. }
  1854. return $aRes;
  1855. }
  1856. public static function EnumChildClasses($sClass, $iOption = ENUM_CHILD_CLASSES_EXCLUDETOP)
  1857. {
  1858. self::_check_subclass($sClass);
  1859. $aRes = self::$m_aChildClasses[$sClass];
  1860. if ($iOption != ENUM_CHILD_CLASSES_EXCLUDETOP)
  1861. {
  1862. // Add it to the list
  1863. $aRes[] = $sClass;
  1864. }
  1865. return $aRes;
  1866. }
  1867. public static function HasChildrenClasses($sClass)
  1868. {
  1869. return (count(self::$m_aChildClasses[$sClass]) > 0);
  1870. }
  1871. public static function EnumCategories()
  1872. {
  1873. return array_keys(self::$m_Category2Class);
  1874. }
  1875. // Note: use EnumChildClasses to take the compound objects into account
  1876. public static function GetSubclasses($sClass)
  1877. {
  1878. self::_check_subclass($sClass);
  1879. $aSubClasses = array();
  1880. foreach(self::$m_aClassParams as $sSubClass => $foo)
  1881. {
  1882. if (is_subclass_of($sSubClass, $sClass))
  1883. {
  1884. $aSubClasses[] = $sSubClass;
  1885. }
  1886. }
  1887. return $aSubClasses;
  1888. }
  1889. public static function GetClasses($sCategories = '', $bStrict = false)
  1890. {
  1891. $aCategories = explode(',', $sCategories);
  1892. $aClasses = array();
  1893. foreach($aCategories as $sCategory)
  1894. {
  1895. $sCategory = trim($sCategory);
  1896. if (strlen($sCategory) == 0)
  1897. {
  1898. return array_keys(self::$m_aClassParams);
  1899. }
  1900. if (array_key_exists($sCategory, self::$m_Category2Class))
  1901. {
  1902. $aClasses = array_merge($aClasses, self::$m_Category2Class[$sCategory]);
  1903. }
  1904. elseif ($bStrict)
  1905. {
  1906. throw new CoreException("unkown class category '$sCategory', expecting a value in {".implode(', ', array_keys(self::$m_Category2Class))."}");
  1907. }
  1908. }
  1909. return array_unique($aClasses);
  1910. }
  1911. public static function HasTable($sClass)
  1912. {
  1913. if (strlen(self::DBGetTable($sClass)) == 0) return false;
  1914. return true;
  1915. }
  1916. public static function IsAbstract($sClass)
  1917. {
  1918. $oReflection = new ReflectionClass($sClass);
  1919. return $oReflection->isAbstract();
  1920. }
  1921. protected static $m_aQueryStructCache = array();
  1922. public static function PrepareQueryArguments($aArgs)
  1923. {
  1924. // Translate any object into scalars
  1925. //
  1926. $aScalarArgs = array();
  1927. foreach($aArgs as $sArgName => $value)
  1928. {
  1929. if (self::IsValidObject($value))
  1930. {
  1931. if (strpos($sArgName, '->object()') === false)
  1932. {
  1933. // Lazy syntax - develop the object contextual parameters
  1934. $aScalarArgs = array_merge($aScalarArgs, $value->ToArgsForQuery($sArgName));
  1935. }
  1936. else
  1937. {
  1938. // Leave as is
  1939. $aScalarArgs[$sArgName] = $value;
  1940. }
  1941. }
  1942. else
  1943. {
  1944. if (is_scalar($value))
  1945. {
  1946. $aScalarArgs[$sArgName] = (string) $value;
  1947. }
  1948. }
  1949. }
  1950. // Add standard contextual arguments
  1951. //
  1952. $aScalarArgs['current_contact_id'] = UserRights::GetContactId();
  1953. return $aScalarArgs;
  1954. }
  1955. public static function MakeGroupByQuery(DBObjectSearch $oFilter, $aArgs, $aGroupByExpr, $bExcludeNullValues = false)
  1956. {
  1957. $aAttToLoad = array();
  1958. if ($bExcludeNullValues)
  1959. {
  1960. // Null values are not handled (though external keys set to 0 are allowed)
  1961. $oQueryFilter = $oFilter->DeepClone();
  1962. foreach ($aGroupByExpr as $oGroupByExp)
  1963. {
  1964. $oNull = new FunctionExpression('ISNULL', array($oGroupByExp));
  1965. $oNotNull = new BinaryExpression($oNull, '!=', new TrueExpression());
  1966. $oQueryFilter->AddConditionExpression($oNotNull);
  1967. }
  1968. }
  1969. else
  1970. {
  1971. $oQueryFilter = $oFilter;
  1972. }
  1973. $oSelect = self::MakeSelectStructure($oQueryFilter, array(), $aArgs, $aAttToLoad, null, 0, 0, false, $aGroupByExpr);
  1974. $aScalarArgs = array_merge(self::PrepareQueryArguments($aArgs), $oFilter->GetInternalParams());
  1975. try
  1976. {
  1977. $bBeautifulSQL = self::$m_bTraceQueries || self::$m_bDebugQuery || self::$m_bIndentQueries;
  1978. $sRes = $oSelect->RenderGroupBy($aScalarArgs, $bBeautifulSQL);
  1979. }
  1980. catch (MissingQueryArgument $e)
  1981. {
  1982. // Add some information...
  1983. $e->addInfo('OQL', $oFilter->ToOQL());
  1984. throw $e;
  1985. }
  1986. self::AddQueryTraceGroupBy($oFilter, $aArgs, $aGroupByExpr, $sRes);
  1987. return $sRes;
  1988. }
  1989. public static function MakeSelectQuery(DBObjectSearch $oFilter, $aOrderBy = array(), $aArgs = array(), $aAttToLoad = null, $aExtendedDataSpec = null, $iLimitCount = 0, $iLimitStart = 0, $bGetCount = false)
  1990. {
  1991. // Check the order by specification, and prefix with the class alias
  1992. // and make sure that the ordering columns are going to be selected
  1993. //
  1994. $sClass = $oFilter->GetClass();
  1995. $sClassAlias = $oFilter->GetClassAlias();
  1996. $aOrderSpec = array();
  1997. foreach ($aOrderBy as $sFieldAlias => $bAscending)
  1998. {
  1999. if ($sFieldAlias != 'id')
  2000. {
  2001. MyHelpers::CheckValueInArray('field name in ORDER BY spec', $sFieldAlias, self::GetAttributesList($sClass));
  2002. }
  2003. if (!is_bool($bAscending))
  2004. {
  2005. throw new CoreException("Wrong direction in ORDER BY spec, found '$bAscending' and expecting a boolean value");
  2006. }
  2007. if (self::IsValidAttCode($sClass, $sFieldAlias))
  2008. {
  2009. $oAttDef = self::GetAttributeDef($sClass, $sFieldAlias);
  2010. foreach($oAttDef->GetOrderBySQLExpressions($sClassAlias) as $sSQLExpression)
  2011. {
  2012. $aOrderSpec[$sSQLExpression] = $bAscending;
  2013. }
  2014. }
  2015. else
  2016. {
  2017. $aOrderSpec['`'.$sClassAlias.$sFieldAlias.'`'] = $bAscending;
  2018. }
  2019. // Make sure that the columns used for sorting are present in the loaded columns
  2020. if (!is_null($aAttToLoad) && !isset($aAttToLoad[$sClassAlias][$sFieldAlias]))
  2021. {
  2022. $aAttToLoad[$sClassAlias][$sFieldAlias] = MetaModel::GetAttributeDef($sClass, $sFieldAlias);
  2023. }
  2024. }
  2025. $oSelect = self::MakeSelectStructure($oFilter, $aOrderBy, $aArgs, $aAttToLoad, $aExtendedDataSpec, $iLimitCount, $iLimitStart, $bGetCount);
  2026. $aScalarArgs = array_merge(self::PrepareQueryArguments($aArgs), $oFilter->GetInternalParams());
  2027. try
  2028. {
  2029. $bBeautifulSQL = self::$m_bTraceQueries || self::$m_bDebugQuery || self::$m_bIndentQueries;
  2030. $sRes = $oSelect->RenderSelect($aOrderSpec, $aScalarArgs, $iLimitCount, $iLimitStart, $bGetCount, $bBeautifulSQL);
  2031. if ($sClassAlias == '_itop_')
  2032. {
  2033. echo $sRes."<br/>\n";
  2034. }
  2035. }
  2036. catch (MissingQueryArgument $e)
  2037. {
  2038. // Add some information...
  2039. $e->addInfo('OQL', $oFilter->ToOQL());
  2040. throw $e;
  2041. }
  2042. self::AddQueryTraceSelect($oFilter, $aOrderBy, $aArgs, $aAttToLoad, $aExtendedDataSpec, $iLimitCount, $iLimitStart, $bGetCount, $sRes);
  2043. return $sRes;
  2044. }
  2045. protected static function MakeSelectStructure(DBObjectSearch $oFilter, $aOrderBy, $aArgs, $aAttToLoad, $aExtendedDataSpec, $iLimitCount, $iLimitStart, $bGetCount, $aGroupByExpr = null)
  2046. {
  2047. // Hide objects that are not visible to the current user
  2048. //
  2049. if (!$oFilter->IsAllDataAllowed() && !$oFilter->IsDataFiltered())
  2050. {
  2051. $oVisibleObjects = UserRights::GetSelectFilter($oFilter->GetClass(), $oFilter->GetModifierProperties('UserRightsGetSelectFilter'));
  2052. if ($oVisibleObjects === false)
  2053. {
  2054. // Make sure this is a valid search object, saying NO for all
  2055. $oVisibleObjects = DBObjectSearch::FromEmptySet($oFilter->GetClass());
  2056. }
  2057. if (is_object($oVisibleObjects))
  2058. {
  2059. $oFilter->MergeWith($oVisibleObjects);
  2060. $oFilter->SetDataFiltered();
  2061. }
  2062. else
  2063. {
  2064. // should be true at this point, meaning that no additional filtering
  2065. // is required
  2066. }
  2067. }
  2068. // Compute query modifiers properties (can be set in the search itself, by the context, etc.)
  2069. //
  2070. $aModifierProperties = self::MakeModifierProperties($oFilter);
  2071. // Create a unique cache id
  2072. //
  2073. if (self::$m_bQueryCacheEnabled || self::$m_bTraceQueries)
  2074. {
  2075. // Need to identify the query
  2076. $sOqlQuery = $oFilter->ToOql();
  2077. if (count($aModifierProperties))
  2078. {
  2079. array_multisort($aModifierProperties);
  2080. $sModifierProperties = json_encode($aModifierProperties);
  2081. }
  2082. else
  2083. {
  2084. $sModifierProperties = '';
  2085. }
  2086. $sRawId = $sOqlQuery.$sModifierProperties;
  2087. if (!is_null($aAttToLoad))
  2088. {
  2089. $sRawId .= json_encode($aAttToLoad);
  2090. }
  2091. if (!is_null($aGroupByExpr))
  2092. {
  2093. foreach($aGroupByExpr as $sAlias => $oExpr)
  2094. {
  2095. $sRawId .= 'g:'.$sAlias.'!'.$oExpr->Render();
  2096. }
  2097. }
  2098. $sRawId .= $bGetCount;
  2099. $sOqlId = md5($sRawId);
  2100. }
  2101. else
  2102. {
  2103. $sOqlQuery = "SELECTING... ".$oFilter->GetClass();
  2104. $sOqlId = "query id ? n/a";
  2105. }
  2106. // Query caching
  2107. //
  2108. if (self::$m_bQueryCacheEnabled)
  2109. {
  2110. // Warning: using directly the query string as the key to the hash array can FAIL if the string
  2111. // is long and the differences are only near the end... so it's safer (but not bullet proof?)
  2112. // to use a hash (like md5) of the string as the key !
  2113. //
  2114. // Example of two queries that were found as similar by the hash array:
  2115. // 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
  2116. // and
  2117. // 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
  2118. // the only difference is R instead or O at position 285 (TTR instead of TTO)...
  2119. //
  2120. if (array_key_exists($sOqlId, self::$m_aQueryStructCache))
  2121. {
  2122. // hit!
  2123. $oSelect = unserialize(serialize(self::$m_aQueryStructCache[$sOqlId]));
  2124. // Note: cloning is not enough because the subtree is made of objects
  2125. }
  2126. elseif (self::$m_bUseAPCCache)
  2127. {
  2128. // Note: For versions of APC older than 3.0.17, fetch() accepts only one parameter
  2129. //
  2130. $sOqlAPCCacheId = 'itop-'.MetaModel::GetEnvironmentId().'-query-cache-'.$sOqlId;
  2131. $oKPI = new ExecutionKPI();
  2132. $result = apc_fetch($sOqlAPCCacheId);
  2133. $oKPI->ComputeStats('Query APC (fetch)', $sOqlQuery);
  2134. if (is_object($result))
  2135. {
  2136. $oSelect = $result;
  2137. self::$m_aQueryStructCache[$sOqlId] = $oSelect;
  2138. }
  2139. }
  2140. }
  2141. if (!isset($oSelect))
  2142. {
  2143. $oBuild = new QueryBuilderContext($oFilter, $aModifierProperties, $aGroupByExpr);
  2144. $oKPI = new ExecutionKPI();
  2145. $oSelect = self::MakeQuery($oBuild, $oFilter, $aAttToLoad, array(), true /* main query */);
  2146. $oSelect->SetCondition($oBuild->m_oQBExpressions->GetCondition());
  2147. $oSelect->SetSourceOQL($sOqlQuery);
  2148. if ($aGroupByExpr)
  2149. {
  2150. $aCols = $oBuild->m_oQBExpressions->GetGroupBy();
  2151. $oSelect->SetGroupBy($aCols);
  2152. $oSelect->SetSelect($aCols);
  2153. }
  2154. else
  2155. {
  2156. $oSelect->SetSelect($oBuild->m_oQBExpressions->GetSelect());
  2157. }
  2158. if (self::$m_bOptimizeQueries)
  2159. {
  2160. if ($bGetCount)
  2161. {
  2162. // Simplify the query if just getting the count
  2163. $oSelect->SetSelect(array());
  2164. }
  2165. $oBuild->m_oQBExpressions->GetMandatoryTables($aMandatoryTables);
  2166. $oSelect->OptimizeJoins($aMandatoryTables);
  2167. }
  2168. $oKPI->ComputeStats('MakeQuery (select)', $sOqlQuery);
  2169. if (self::$m_bQueryCacheEnabled)
  2170. {
  2171. if (self::$m_bUseAPCCache)
  2172. {
  2173. $oKPI = new ExecutionKPI();
  2174. apc_store($sOqlAPCCacheId, $oSelect, self::$m_iQueryCacheTTL);
  2175. $oKPI->ComputeStats('Query APC (store)', $sOqlQuery);
  2176. }
  2177. self::$m_aQueryStructCache[$sOqlId] = $oSelect->DeepClone();
  2178. }
  2179. }
  2180. // Join to an additional table, if required...
  2181. //
  2182. if ($aExtendedDataSpec != null)
  2183. {
  2184. $sTableAlias = '_extended_data_';
  2185. $aExtendedFields = array();
  2186. foreach($aExtendedDataSpec['fields'] as $sColumn)
  2187. {
  2188. $sColRef = $oFilter->GetClassAlias().'_extdata_'.$sColumn;
  2189. $aExtendedFields[$sColRef] = new FieldExpressionResolved($sColumn, $sTableAlias);
  2190. }
  2191. $oSelectExt = new SQLQuery($aExtendedDataSpec['table'], $sTableAlias, $aExtendedFields);
  2192. $oSelect->AddInnerJoin($oSelectExt, 'id', $aExtendedDataSpec['join_key'] /*, $sTableAlias*/);
  2193. }
  2194. return $oSelect;
  2195. }
  2196. protected static function AddQueryTraceSelect($oFilter, $aOrderBy, $aArgs, $aAttToLoad, $aExtendedDataSpec, $iLimitCount, $iLimitStart, $bGetCount, $sSql)
  2197. {
  2198. if (self::$m_bTraceQueries)
  2199. {
  2200. $aQueryData = array(
  2201. 'type' => 'select',
  2202. 'filter' => $oFilter,
  2203. 'order_by' => $aOrderBy,
  2204. 'args' => $aArgs,
  2205. 'att_to_load' => $aAttToLoad,
  2206. 'extended_data_spec' => $aExtendedDataSpec,
  2207. 'limit_count' => $iLimitCount,
  2208. 'limit_start' => $iLimitStart,
  2209. 'is_count' => $bGetCount
  2210. );
  2211. $sOql = $oFilter->ToOQL(true, $aArgs);
  2212. self::AddQueryTrace($aQueryData, $sOql, $sSql);
  2213. }
  2214. }
  2215. protected static function AddQueryTraceGroupBy($oFilter, $aArgs, $aGroupByExpr, $sSql)
  2216. {
  2217. if (self::$m_bTraceQueries)
  2218. {
  2219. $aQueryData = array(
  2220. 'type' => 'group_by',
  2221. 'filter' => $oFilter,
  2222. 'args' => $aArgs,
  2223. 'group_by_expr' => $aGroupByExpr
  2224. );
  2225. $sOql = $oFilter->ToOQL(true, $aArgs);
  2226. self::AddQueryTrace($aQueryData, $sOql, $sSql);
  2227. }
  2228. }
  2229. protected static function AddQueryTrace($aQueryData, $sOql, $sSql)
  2230. {
  2231. if (self::$m_bTraceQueries)
  2232. {
  2233. $sQueryId = md5(serialize($aQueryData));
  2234. $sMySQLQueryId = md5($sSql);
  2235. if(!isset(self::$m_aQueriesLog[$sQueryId]))
  2236. {
  2237. self::$m_aQueriesLog[$sQueryId]['data'] = serialize($aQueryData);
  2238. self::$m_aQueriesLog[$sQueryId]['oql'] = $sOql;
  2239. self::$m_aQueriesLog[$sQueryId]['hits'] = 1;
  2240. }
  2241. else
  2242. {
  2243. self::$m_aQueriesLog[$sQueryId]['hits']++;
  2244. }
  2245. if(!isset(self::$m_aQueriesLog[$sQueryId]['queries'][$sMySQLQueryId]))
  2246. {
  2247. self::$m_aQueriesLog[$sQueryId]['queries'][$sMySQLQueryId]['sql'] = $sSql;
  2248. self::$m_aQueriesLog[$sQueryId]['queries'][$sMySQLQueryId]['count'] = 1;
  2249. $iTableCount = count(CMDBSource::ExplainQuery($sSql));
  2250. self::$m_aQueriesLog[$sQueryId]['queries'][$sMySQLQueryId]['table_count'] = $iTableCount;
  2251. }
  2252. else
  2253. {
  2254. self::$m_aQueriesLog[$sQueryId]['queries'][$sMySQLQueryId]['count']++;
  2255. }
  2256. }
  2257. }
  2258. public static function RecordQueryTrace()
  2259. {
  2260. if (!self::$m_bTraceQueries) return;
  2261. $iOqlCount = count(self::$m_aQueriesLog);
  2262. $iSqlCount = 0;
  2263. foreach (self::$m_aQueriesLog as $sQueryId => $aOqlData)
  2264. {
  2265. $iSqlCount += $aOqlData['hits'];
  2266. }
  2267. $sHtml = "<h2>Stats on SELECT queries: OQL=$iOqlCount, SQL=$iSqlCount</h2>\n";
  2268. foreach (self::$m_aQueriesLog as $sQueryId => $aOqlData)
  2269. {
  2270. $sOql = $aOqlData['oql'];
  2271. $sHits = $aOqlData['hits'];
  2272. $sHtml .= "<p><b>$sHits</b> hits for OQL query: $sOql</p>\n";
  2273. $sHtml .= "<ul id=\"ClassesRelationships\" class=\"treeview\">\n";
  2274. foreach($aOqlData['queries'] as $aSqlData)
  2275. {
  2276. $sQuery = $aSqlData['sql'];
  2277. $sSqlHits = $aSqlData['count'];
  2278. $iTableCount = $aSqlData['table_count'];
  2279. $sHtml .= "<li><b>$sSqlHits</b> hits for SQL ($iTableCount tables): <pre style=\"font-size:60%\">$sQuery</pre></li>\n";
  2280. }
  2281. $sHtml .= "</ul>\n";
  2282. }
  2283. $sLogFile = 'queries.latest';
  2284. file_put_contents(APPROOT.'data/'.$sLogFile.'.html', $sHtml);
  2285. $sLog = "<?php\n\$aQueriesLog = ".var_export(self::$m_aQueriesLog, true).";";
  2286. file_put_contents(APPROOT.'data/'.$sLogFile.'.log', $sLog);
  2287. // Cumulate the queries
  2288. $sAllQueries = APPROOT.'data/queries.log';
  2289. if (file_exists($sAllQueries))
  2290. {
  2291. // Merge the new queries into the existing log
  2292. include($sAllQueries);
  2293. foreach (self::$m_aQueriesLog as $sQueryId => $aOqlData)
  2294. {
  2295. if (!array_key_exists($sQueryId, $aQueriesLog))
  2296. {
  2297. $aQueriesLog[$sQueryId] = $aOqlData;
  2298. }
  2299. }
  2300. }
  2301. else
  2302. {
  2303. $aQueriesLog = self::$m_aQueriesLog;
  2304. }
  2305. $sLog = "<?php\n\$aQueriesLog = ".var_export($aQueriesLog, true).";";
  2306. file_put_contents($sAllQueries, $sLog);
  2307. }
  2308. protected static function MakeModifierProperties($oFilter)
  2309. {
  2310. // Compute query modifiers properties (can be set in the search itself, by the context, etc.)
  2311. //
  2312. $aModifierProperties = array();
  2313. foreach (MetaModel::EnumPlugins('iQueryModifier') as $sPluginClass => $oQueryModifier)
  2314. {
  2315. // Lowest precedence: the application context
  2316. $aPluginProps = ApplicationContext::GetPluginProperties($sPluginClass);
  2317. // Highest precedence: programmatically specified (or OQL)
  2318. foreach($oFilter->GetModifierProperties($sPluginClass) as $sProp => $value)
  2319. {
  2320. $aPluginProps[$sProp] = $value;
  2321. }
  2322. if (count($aPluginProps) > 0)
  2323. {
  2324. $aModifierProperties[$sPluginClass] = $aPluginProps;
  2325. }
  2326. }
  2327. return $aModifierProperties;
  2328. }
  2329. public static function MakeDeleteQuery(DBObjectSearch $oFilter, $aArgs = array())
  2330. {
  2331. $aModifierProperties = self::MakeModifierProperties($oFilter);
  2332. $oBuild = new QueryBuilderContext($oFilter, $aModifierProperties);
  2333. $oSelect = self::MakeQuery($oBuild, $oFilter, null, array(), true /* main query */);
  2334. $oSelect->SetCondition($oBuild->m_oQBExpressions->GetCondition());
  2335. $oSelect->SetSelect($oBuild->m_oQBExpressions->GetSelect());
  2336. $aScalarArgs = array_merge(self::PrepareQueryArguments($aArgs), $oFilter->GetInternalParams());
  2337. return $oSelect->RenderDelete($aScalarArgs);
  2338. }
  2339. public static function MakeUpdateQuery(DBObjectSearch $oFilter, $aValues, $aArgs = array())
  2340. {
  2341. // $aValues is an array of $sAttCode => $value
  2342. $aModifierProperties = self::MakeModifierProperties($oFilter);
  2343. $oBuild = new QueryBuilderContext($oFilter, $aModifierProperties);
  2344. $oSelect = self::MakeQuery($oBuild, $oFilter, null, $aValues, true /* main query */);
  2345. $oSelect->SetCondition($oBuild->m_oQBExpressions->GetCondition());
  2346. $oSelect->SetSelect($oBuild->m_oQBExpressions->GetSelect());
  2347. $aScalarArgs = array_merge(self::PrepareQueryArguments($aArgs), $oFilter->GetInternalParams());
  2348. return $oSelect->RenderUpdate($aScalarArgs);
  2349. }
  2350. private static function MakeQuery(&$oBuild, DBObjectSearch $oFilter, $aAttToLoad = null, $aValues = array(), $bIsMainQueryUNUSED = false)
  2351. {
  2352. // Note: query class might be different than the class of the filter
  2353. // -> this occurs when we are linking our class to an external class (referenced by, or pointing to)
  2354. $sClass = $oFilter->GetFirstJoinedClass();
  2355. $sClassAlias = $oFilter->GetFirstJoinedClassAlias();
  2356. $bIsOnQueriedClass = array_key_exists($sClassAlias, $oBuild->GetRootFilter()->GetSelectedClasses());
  2357. self::DbgTrace("Entering: ".$oFilter->ToOQL().", ".($bIsOnQueriedClass ? "MAIN" : "SECONDARY"));
  2358. $sRootClass = self::GetRootClass($sClass);
  2359. $sKeyField = self::DBGetKey($sClass);
  2360. if ($bIsOnQueriedClass)
  2361. {
  2362. // default to the whole list of attributes + the very std id/finalclass
  2363. $oBuild->m_oQBExpressions->AddSelect($sClassAlias.'id', new FieldExpression('id', $sClassAlias));
  2364. if (is_null($aAttToLoad) || !array_key_exists($sClassAlias, $aAttToLoad))
  2365. {
  2366. $aAttList = self::ListAttributeDefs($sClass);
  2367. }
  2368. else
  2369. {
  2370. $aAttList = $aAttToLoad[$sClassAlias];
  2371. }
  2372. foreach ($aAttList as $sAttCode => $oAttDef)
  2373. {
  2374. if (!$oAttDef->IsScalar()) continue;
  2375. // keep because it can be used for sorting - if (!$oAttDef->LoadInObject()) continue;
  2376. foreach ($oAttDef->GetSQLExpressions() as $sColId => $sSQLExpr)
  2377. {
  2378. $oBuild->m_oQBExpressions->AddSelect($sClassAlias.$sAttCode.$sColId, new FieldExpression($sAttCode.$sColId, $sClassAlias));
  2379. }
  2380. }
  2381. // Transform the full text condition into additional condition expression
  2382. $aFullText = $oFilter->GetCriteria_FullText();
  2383. if (count($aFullText) > 0)
  2384. {
  2385. $aFullTextFields = array();
  2386. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
  2387. {
  2388. if (!$oAttDef->IsScalar()) continue;
  2389. if ($oAttDef->IsExternalKey()) continue;
  2390. $aFullTextFields[] = new FieldExpression($sAttCode, $sClassAlias);
  2391. }
  2392. $oTextFields = new CharConcatWSExpression(' ', $aFullTextFields);
  2393. foreach($aFullText as $sFTNeedle)
  2394. {
  2395. $oNewCond = new BinaryExpression($oTextFields, 'LIKE', new ScalarExpression("%$sFTNeedle%"));
  2396. $oBuild->m_oQBExpressions->AddCondition($oNewCond);
  2397. }
  2398. }
  2399. }
  2400. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."</pre></p>\n";
  2401. $aExpectedAtts = array(); // array of (attcode => fieldexpression)
  2402. //echo "<p>".__LINE__.": GetUnresolvedFields($sClassAlias, ...)</p>\n";
  2403. $oBuild->m_oQBExpressions->GetUnresolvedFields($sClassAlias, $aExpectedAtts);
  2404. // Compute a clear view of required joins (from the current class)
  2405. // Build the list of external keys:
  2406. // -> ext keys required by an explicit join
  2407. // -> ext keys mentionned in a 'pointing to' condition
  2408. // -> ext keys required for an external field
  2409. // -> ext keys required for a friendly name
  2410. //
  2411. $aExtKeys = array(); // array of sTableClass => array of (sAttCode (keys) => array of (sAttCode (fields)=> oAttDef))
  2412. //
  2413. // Optimization: could be partially computed once for all (cached) ?
  2414. //
  2415. if ($bIsOnQueriedClass)
  2416. {
  2417. // Get all Ext keys for the queried class (??)
  2418. foreach(self::GetKeysList($sClass) as $sKeyAttCode)
  2419. {
  2420. $sKeyTableClass = self::$m_aAttribOrigins[$sClass][$sKeyAttCode];
  2421. $aExtKeys[$sKeyTableClass][$sKeyAttCode] = array();
  2422. }
  2423. }
  2424. // Get all Ext keys used by the filter
  2425. foreach ($oFilter->GetCriteria_PointingTo() as $sKeyAttCode => $aPointingTo)
  2426. {
  2427. if (array_key_exists(TREE_OPERATOR_EQUALS, $aPointingTo))
  2428. {
  2429. $sKeyTableClass = self::$m_aAttribOrigins[$sClass][$sKeyAttCode];
  2430. $aExtKeys[$sKeyTableClass][$sKeyAttCode] = array();
  2431. }
  2432. }
  2433. $aFNJoinAlias = array(); // array of (subclass => alias)
  2434. if (array_key_exists('friendlyname', $aExpectedAtts))
  2435. {
  2436. // To optimize: detect a restriction on child classes in the condition expression
  2437. // e.g. SELECT FunctionalCI WHERE finalclass IN ('Server', 'VirtualMachine')
  2438. $oNameExpression = self::GetExtendedNameExpression($sClass);
  2439. $aNameFields = array();
  2440. $oNameExpression->GetUnresolvedFields('', $aNameFields);
  2441. $aTranslateNameFields = array();
  2442. foreach($aNameFields as $sSubClass => $aFields)
  2443. {
  2444. foreach($aFields as $sAttCode => $oField)
  2445. {
  2446. $oAttDef = self::GetAttributeDef($sSubClass, $sAttCode);
  2447. if ($oAttDef->IsExternalKey())
  2448. {
  2449. $sClassOfAttribute = self::$m_aAttribOrigins[$sSubClass][$sAttCode];
  2450. $aExtKeys[$sClassOfAttribute][$sAttCode] = array();
  2451. }
  2452. elseif ($oAttDef->IsExternalField() || ($oAttDef instanceof AttributeFriendlyName))
  2453. {
  2454. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  2455. $sClassOfAttribute = self::$m_aAttribOrigins[$sSubClass][$sKeyAttCode];
  2456. $aExtKeys[$sClassOfAttribute][$sKeyAttCode][$sAttCode] = $oAttDef;
  2457. }
  2458. else
  2459. {
  2460. $sClassOfAttribute = self::GetAttributeOrigin($sSubClass, $sAttCode);
  2461. }
  2462. if (self::IsParentClass($sClassOfAttribute, $sClass))
  2463. {
  2464. // The attribute is part of the standard query
  2465. //
  2466. $sAliasForAttribute = $sClassAlias;
  2467. }
  2468. else
  2469. {
  2470. // The attribute will be available from an additional outer join
  2471. // For each subclass (table) one single join is enough
  2472. //
  2473. if (!array_key_exists($sClassOfAttribute, $aFNJoinAlias))
  2474. {
  2475. $sAliasForAttribute = $oBuild->GenerateClassAlias($sClassAlias.'_fn_'.$sClassOfAttribute, $sClassOfAttribute);
  2476. $aFNJoinAlias[$sClassOfAttribute] = $sAliasForAttribute;
  2477. }
  2478. else
  2479. {
  2480. $sAliasForAttribute = $aFNJoinAlias[$sClassOfAttribute];
  2481. }
  2482. }
  2483. $aTranslateNameFields[$sSubClass][$sAttCode] = new FieldExpression($sAttCode, $sAliasForAttribute);
  2484. }
  2485. }
  2486. $oNameExpression = $oNameExpression->Translate($aTranslateNameFields, false);
  2487. $aTranslateNow = array();
  2488. $aTranslateNow[$sClassAlias]['friendlyname'] = $oNameExpression;
  2489. $oBuild->m_oQBExpressions->Translate($aTranslateNow, false);
  2490. }
  2491. // Add the ext fields used in the select (eventually adds an external key)
  2492. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  2493. {
  2494. if ($oAttDef->IsExternalField() || ($oAttDef instanceof AttributeFriendlyName))
  2495. {
  2496. if (array_key_exists($sAttCode, $aExpectedAtts))
  2497. {
  2498. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  2499. if ($sKeyAttCode != 'id')
  2500. {
  2501. // Add the external attribute
  2502. $sKeyTableClass = self::$m_aAttribOrigins[$sClass][$sKeyAttCode];
  2503. $aExtKeys[$sKeyTableClass][$sKeyAttCode][$sAttCode] = $oAttDef;
  2504. }
  2505. }
  2506. }
  2507. }
  2508. // First query built upon on the leaf (ie current) class
  2509. //
  2510. self::DbgTrace("Main (=leaf) class, call MakeQuerySingleTable()");
  2511. if (self::HasTable($sClass))
  2512. {
  2513. $oSelectBase = self::MakeQuerySingleTable($oBuild, $oFilter, $sClass, $aExtKeys, $aValues);
  2514. }
  2515. else
  2516. {
  2517. $oSelectBase = null;
  2518. // As the join will not filter on the expected classes, we have to specify it explicitely
  2519. $sExpectedClasses = implode("', '", self::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL));
  2520. $oFinalClassRestriction = Expression::FromOQL("`$sClassAlias`.finalclass IN ('$sExpectedClasses')");
  2521. $oBuild->m_oQBExpressions->AddCondition($oFinalClassRestriction);
  2522. }
  2523. // Then we join the queries of the eventual parent classes (compound model)
  2524. foreach(self::EnumParentClasses($sClass) as $sParentClass)
  2525. {
  2526. if (!self::HasTable($sParentClass)) continue;
  2527. self::DbgTrace("Parent class: $sParentClass... let's call MakeQuerySingleTable()");
  2528. $oSelectParentTable = self::MakeQuerySingleTable($oBuild, $oFilter, $sParentClass, $aExtKeys, $aValues);
  2529. if (is_null($oSelectBase))
  2530. {
  2531. $oSelectBase = $oSelectParentTable;
  2532. }
  2533. else
  2534. {
  2535. $oSelectBase->AddInnerJoin($oSelectParentTable, $sKeyField, self::DBGetKey($sParentClass));
  2536. }
  2537. }
  2538. // Filter on objects referencing me
  2539. foreach ($oFilter->GetCriteria_ReferencedBy() as $sForeignClass => $aKeysAndFilters)
  2540. {
  2541. foreach ($aKeysAndFilters as $sForeignKeyAttCode => $oForeignFilter)
  2542. {
  2543. $oForeignKeyAttDef = self::GetAttributeDef($sForeignClass, $sForeignKeyAttCode);
  2544. self::DbgTrace("Referenced by foreign key: $sForeignKeyAttCode... let's call MakeQuery()");
  2545. //self::DbgTrace($oForeignFilter);
  2546. //self::DbgTrace($oForeignFilter->ToOQL());
  2547. //self::DbgTrace($oSelectForeign);
  2548. //self::DbgTrace($oSelectForeign->RenderSelect(array()));
  2549. $sForeignClassAlias = $oForeignFilter->GetFirstJoinedClassAlias();
  2550. $oBuild->m_oQBExpressions->PushJoinField(new FieldExpression($sForeignKeyAttCode, $sForeignClassAlias));
  2551. $oSelectForeign = self::MakeQuery($oBuild, $oForeignFilter, $aAttToLoad);
  2552. $oJoinExpr = $oBuild->m_oQBExpressions->PopJoinField();
  2553. $sForeignKeyTable = $oJoinExpr->GetParent();
  2554. $sForeignKeyColumn = $oJoinExpr->GetName();
  2555. $oSelectBase->AddInnerJoin($oSelectForeign, $sKeyField, $sForeignKeyColumn, $sForeignKeyTable);
  2556. }
  2557. }
  2558. // Filter on related objects
  2559. //
  2560. foreach ($oFilter->GetCriteria_RelatedTo() as $aCritInfo)
  2561. {
  2562. $oSubFilter = $aCritInfo['flt'];
  2563. $sRelCode = $aCritInfo['relcode'];
  2564. $iMaxDepth = $aCritInfo['maxdepth'];
  2565. // Get the starting point objects
  2566. $oStartSet = new CMDBObjectSet($oSubFilter);
  2567. // Get the objects related to those objects... recursively...
  2568. $aRelatedObjs = $oStartSet->GetRelatedObjects($sRelCode, $iMaxDepth);
  2569. $aRestriction = array_key_exists($sRootClass, $aRelatedObjs) ? $aRelatedObjs[$sRootClass] : array();
  2570. // #@# todo - related objects and expressions...
  2571. // Create condition
  2572. if (count($aRestriction) > 0)
  2573. {
  2574. $oSelectBase->AddCondition($sKeyField.' IN ('.implode(', ', CMDBSource::Quote(array_keys($aRestriction), true)).')');
  2575. }
  2576. else
  2577. {
  2578. // Quick N'dirty -> generate an empty set
  2579. $oSelectBase->AddCondition('false');
  2580. }
  2581. }
  2582. // Additional JOINS for Friendly names
  2583. //
  2584. foreach ($aFNJoinAlias as $sSubClass => $sSubClassAlias)
  2585. {
  2586. $oSubClassFilter = new DBObjectSearch($sSubClass, $sSubClassAlias);
  2587. $oSelectFN = self::MakeQuerySingleTable($oBuild, $oSubClassFilter, $sSubClass, $aExtKeys, array());
  2588. $oSelectBase->AddLeftJoin($oSelectFN, $sKeyField, self::DBGetKey($sSubClass));
  2589. }
  2590. // That's all... cross fingers and we'll get some working query
  2591. //MyHelpers::var_dump_html($oSelectBase, true);
  2592. //MyHelpers::var_dump_html($oSelectBase->RenderSelect(), true);
  2593. if (self::$m_bDebugQuery) $oSelectBase->DisplayHtml();
  2594. return $oSelectBase;
  2595. }
  2596. protected static function MakeQuerySingleTable(&$oBuild, $oFilter, $sTableClass, $aExtKeys, $aValues)
  2597. {
  2598. // $aExtKeys is an array of sTableClass => array of (sAttCode (keys) => array of sAttCode (fields))
  2599. //echo "MAKEQUERY($sTableClass)-liste des clefs externes($sTableClass): <pre>".print_r($aExtKeys, true)."</pre><br/>\n";
  2600. // Prepare the query for a single table (compound objects)
  2601. // Ignores the items (attributes/filters) that are not on the target table
  2602. // Perform an (inner or left) join for every external key (and specify the expected fields)
  2603. //
  2604. // Returns an SQLQuery
  2605. //
  2606. $sTargetClass = $oFilter->GetFirstJoinedClass();
  2607. $sTargetAlias = $oFilter->GetFirstJoinedClassAlias();
  2608. $sTable = self::DBGetTable($sTableClass);
  2609. $sTableAlias = $oBuild->GenerateTableAlias($sTargetAlias.'_'.$sTable, $sTable);
  2610. $aTranslation = array();
  2611. $aExpectedAtts = array();
  2612. $oBuild->m_oQBExpressions->GetUnresolvedFields($sTargetAlias, $aExpectedAtts);
  2613. $bIsOnQueriedClass = array_key_exists($sTargetAlias, $oBuild->GetRootFilter()->GetSelectedClasses());
  2614. self::DbgTrace("Entering: tableclass=$sTableClass, filter=".$oFilter->ToOQL().", ".($bIsOnQueriedClass ? "MAIN" : "SECONDARY"));
  2615. // 1 - SELECT and UPDATE
  2616. //
  2617. // Note: no need for any values nor fields for foreign Classes (ie not the queried Class)
  2618. //
  2619. $aUpdateValues = array();
  2620. // 1/a - Get the key and friendly name
  2621. //
  2622. // We need one pkey to be the key, let's take the first one available
  2623. $oSelectedIdField = null;
  2624. $oIdField = new FieldExpressionResolved(self::DBGetKey($sTableClass), $sTableAlias);
  2625. $aTranslation[$sTargetAlias]['id'] = $oIdField;
  2626. if ($bIsOnQueriedClass)
  2627. {
  2628. // Add this field to the list of queried fields (required for the COUNT to work fine)
  2629. $oSelectedIdField = $oIdField;
  2630. }
  2631. // 1/b - Get the other attributes
  2632. //
  2633. foreach(self::ListAttributeDefs($sTableClass) as $sAttCode=>$oAttDef)
  2634. {
  2635. // Skip this attribute if not defined in this table
  2636. if (self::$m_aAttribOrigins[$sTargetClass][$sAttCode] != $sTableClass) continue;
  2637. // Skip this attribute if not made of SQL columns
  2638. if (count($oAttDef->GetSQLExpressions()) == 0) continue;
  2639. // Update...
  2640. //
  2641. if ($bIsOnQueriedClass && array_key_exists($sAttCode, $aValues))
  2642. {
  2643. assert ($oAttDef->IsDirectField());
  2644. foreach ($oAttDef->GetSQLValues($aValues[$sAttCode]) as $sColumn => $sValue)
  2645. {
  2646. $aUpdateValues[$sColumn] = $sValue;
  2647. }
  2648. }
  2649. }
  2650. // 2 - The SQL query, for this table only
  2651. //
  2652. $oSelectBase = new SQLQuery($sTable, $sTableAlias, array(), $bIsOnQueriedClass, $aUpdateValues, $oSelectedIdField);
  2653. // 3 - Resolve expected expressions (translation table: alias.attcode => table.column)
  2654. //
  2655. foreach(self::ListAttributeDefs($sTableClass) as $sAttCode=>$oAttDef)
  2656. {
  2657. // Skip this attribute if not defined in this table
  2658. if (self::$m_aAttribOrigins[$sTargetClass][$sAttCode] != $sTableClass) continue;
  2659. // Select...
  2660. //
  2661. if ($oAttDef->IsExternalField())
  2662. {
  2663. // skip, this will be handled in the joined tables (done hereabove)
  2664. }
  2665. else
  2666. {
  2667. //echo "<p>MakeQuerySingleTable: Field $sAttCode is part of the table $sTable (named: $sTableAlias)</p>";
  2668. // standard field, or external key
  2669. // add it to the output
  2670. foreach ($oAttDef->GetSQLExpressions() as $sColId => $sSQLExpr)
  2671. {
  2672. if (array_key_exists($sAttCode.$sColId, $aExpectedAtts))
  2673. {
  2674. $oFieldSQLExp = new FieldExpressionResolved($sSQLExpr, $sTableAlias);
  2675. foreach (MetaModel::EnumPlugins('iQueryModifier') as $sPluginClass => $oQueryModifier)
  2676. {
  2677. $oFieldSQLExp = $oQueryModifier->GetFieldExpression($oBuild, $sTargetClass, $sAttCode, $sColId, $oFieldSQLExp, $oSelectBase);
  2678. }
  2679. $aTranslation[$sTargetAlias][$sAttCode.$sColId] = $oFieldSQLExp;
  2680. }
  2681. }
  2682. }
  2683. }
  2684. //echo "MAKEQUERY- Classe $sTableClass<br/>\n";
  2685. // 4 - The external keys -> joins...
  2686. //
  2687. $aAllPointingTo = $oFilter->GetCriteria_PointingTo();
  2688. if (array_key_exists($sTableClass, $aExtKeys))
  2689. {
  2690. foreach ($aExtKeys[$sTableClass] as $sKeyAttCode => $aExtFields)
  2691. {
  2692. $oKeyAttDef = self::GetAttributeDef($sTableClass, $sKeyAttCode);
  2693. $aPointingTo = $oFilter->GetCriteria_PointingTo($sKeyAttCode);
  2694. //echo "MAKEQUERY-Cle '$sKeyAttCode'<br/>\n";
  2695. if (!array_key_exists(TREE_OPERATOR_EQUALS, $aPointingTo))
  2696. {
  2697. //echo "MAKEQUERY-Ajoutons l'operateur TREE_OPERATOR_EQUALS pour $sKeyAttCode<br/>\n";
  2698. // The join was not explicitely defined in the filter,
  2699. // we need to do it now
  2700. $sKeyClass = $oKeyAttDef->GetTargetClass();
  2701. $sKeyClassAlias = $oBuild->GenerateClassAlias($sKeyClass.'_'.$sKeyAttCode, $sKeyClass);
  2702. $oExtFilter = new DBObjectSearch($sKeyClass, $sKeyClassAlias);
  2703. $aAllPointingTo[$sKeyAttCode][TREE_OPERATOR_EQUALS][$sKeyClassAlias] = $oExtFilter;
  2704. }
  2705. }
  2706. }
  2707. //echo "MAKEQUERY-liste des clefs de jointure: <pre>".print_r(array_keys($aAllPointingTo), true)."</pre><br/>\n";
  2708. foreach ($aAllPointingTo as $sKeyAttCode => $aPointingTo)
  2709. {
  2710. foreach($aPointingTo as $iOperatorCode => $aFilter)
  2711. {
  2712. foreach($aFilter as $oExtFilter)
  2713. {
  2714. if (!MetaModel::IsValidAttCode($sTableClass, $sKeyAttCode)) continue; // Not defined in the class, skip it
  2715. // The aliases should not conflict because normalization occured while building the filter
  2716. $oKeyAttDef = self::GetAttributeDef($sTableClass, $sKeyAttCode);
  2717. $sKeyClass = $oExtFilter->GetFirstJoinedClass();
  2718. $sKeyClassAlias = $oExtFilter->GetFirstJoinedClassAlias();
  2719. //echo "MAKEQUERY-$sTableClass::$sKeyAttCode Foreach PointingTo($iOperatorCode) <span style=\"color:red\">$sKeyClass (alias:$sKeyClassAlias)</span><br/>\n";
  2720. // Note: there is no search condition in $oExtFilter, because normalization did merge the condition onto the top of the filter tree
  2721. //echo "MAKEQUERY-array_key_exists($sTableClass, \$aExtKeys)<br/>\n";
  2722. if ($iOperatorCode == TREE_OPERATOR_EQUALS)
  2723. {
  2724. if (array_key_exists($sTableClass, $aExtKeys) && array_key_exists($sKeyAttCode, $aExtKeys[$sTableClass]))
  2725. {
  2726. // Specify expected attributes for the target class query
  2727. // ... and use the current alias !
  2728. $aTranslateNow = array(); // Translation for external fields - must be performed before the join is done (recursion...)
  2729. foreach($aExtKeys[$sTableClass][$sKeyAttCode] as $sAttCode => $oAtt)
  2730. {
  2731. //echo "MAKEQUERY aExtKeys[$sTableClass][$sKeyAttCode] => $sAttCode-oAtt: <pre>".print_r($oAtt, true)."</pre><br/>\n";
  2732. if ($oAtt instanceof AttributeFriendlyName)
  2733. {
  2734. // Note: for a given ext key, there is one single attribute "friendly name"
  2735. $aTranslateNow[$sTargetAlias][$sAttCode] = new FieldExpression('friendlyname', $sKeyClassAlias);
  2736. //echo "<p><b>aTranslateNow[$sTargetAlias][$sAttCode] = new FieldExpression('friendlyname', $sKeyClassAlias);</b></p>\n";
  2737. }
  2738. else
  2739. {
  2740. $sExtAttCode = $oAtt->GetExtAttCode();
  2741. // Translate mainclass.extfield => remoteclassalias.remotefieldcode
  2742. $oRemoteAttDef = self::GetAttributeDef($sKeyClass, $sExtAttCode);
  2743. foreach ($oRemoteAttDef->GetSQLExpressions() as $sColID => $sRemoteAttExpr)
  2744. {
  2745. $aTranslateNow[$sTargetAlias][$sAttCode.$sColId] = new FieldExpression($sExtAttCode, $sKeyClassAlias);
  2746. //echo "<p><b>aTranslateNow[$sTargetAlias][$sAttCode.$sColId] = new FieldExpression($sExtAttCode, $sKeyClassAlias);</b></p>\n";
  2747. }
  2748. //echo "<p><b>ExtAttr2: $sTargetAlias.$sAttCode to $sKeyClassAlias.$sRemoteAttExpr (class: $sKeyClass)</b></p>\n";
  2749. }
  2750. }
  2751. // Translate prior to recursing
  2752. //
  2753. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."\n".print_r($aTranslateNow, true)."</pre></p>\n";
  2754. $oBuild->m_oQBExpressions->Translate($aTranslateNow, false);
  2755. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."</pre></p>\n";
  2756. //echo "<p>External key $sKeyAttCode (class: $sKeyClass), call MakeQuery()/p>\n";
  2757. self::DbgTrace("External key $sKeyAttCode (class: $sKeyClass), call MakeQuery()");
  2758. $oBuild->m_oQBExpressions->PushJoinField(new FieldExpression('id', $sKeyClassAlias));
  2759. //echo "<p>Recursive MakeQuery ".__LINE__.": <pre>\n".print_r($oBuild->GetRootFilter()->GetSelectedClasses(), true)."</pre></p>\n";
  2760. $oSelectExtKey = self::MakeQuery($oBuild, $oExtFilter);
  2761. $oJoinExpr = $oBuild->m_oQBExpressions->PopJoinField();
  2762. $sExternalKeyTable = $oJoinExpr->GetParent();
  2763. $sExternalKeyField = $oJoinExpr->GetName();
  2764. $aCols = $oKeyAttDef->GetSQLExpressions(); // Workaround a PHP bug: sometimes issuing a Notice if invoking current(somefunc())
  2765. $sLocalKeyField = current($aCols); // get the first column for an external key
  2766. self::DbgTrace("External key $sKeyAttCode, Join on $sLocalKeyField = $sExternalKeyField");
  2767. if ($oKeyAttDef->IsNullAllowed())
  2768. {
  2769. $oSelectBase->AddLeftJoin($oSelectExtKey, $sLocalKeyField, $sExternalKeyField, $sExternalKeyTable);
  2770. }
  2771. else
  2772. {
  2773. $oSelectBase->AddInnerJoin($oSelectExtKey, $sLocalKeyField, $sExternalKeyField, $sExternalKeyTable);
  2774. }
  2775. }
  2776. }
  2777. elseif(self::$m_aAttribOrigins[$sKeyClass][$sKeyAttCode] == $sTableClass)
  2778. {
  2779. $oBuild->m_oQBExpressions->PushJoinField(new FieldExpression($sKeyAttCode, $sKeyClassAlias));
  2780. $oSelectExtKey = self::MakeQuery($oBuild, $oExtFilter);
  2781. $oJoinExpr = $oBuild->m_oQBExpressions->PopJoinField();
  2782. //echo "MAKEQUERY-PopJoinField pour $sKeyAttCode, $sKeyClassAlias: <pre>".print_r($oJoinExpr, true)."</pre><br/>\n";
  2783. $sExternalKeyTable = $oJoinExpr->GetParent();
  2784. $sExternalKeyField = $oJoinExpr->GetName();
  2785. $sLeftIndex = $sExternalKeyField.'_left'; // TODO use GetSQLLeft()
  2786. $sRightIndex = $sExternalKeyField.'_right'; // TODO use GetSQLRight()
  2787. $LocalKeyLeft = $oKeyAttDef->GetSQLLeft();
  2788. $LocalKeyRight = $oKeyAttDef->GetSQLRight();
  2789. //echo "MAKEQUERY-LocalKeyLeft pour $sKeyAttCode => $LocalKeyLeft<br/>\n";
  2790. $oSelectBase->AddInnerJoinTree($oSelectExtKey, $LocalKeyLeft, $LocalKeyRight, $sLeftIndex, $sRightIndex, $sExternalKeyTable, $iOperatorCode);
  2791. }
  2792. }
  2793. }
  2794. }
  2795. // Translate the selected columns
  2796. //
  2797. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."</pre></p>\n";
  2798. $oBuild->m_oQBExpressions->Translate($aTranslation, false);
  2799. //echo "<p>oQBExpr ".__LINE__.": <pre>\n".print_r($oBuild->m_oQBExpressions, true)."</pre></p>\n";
  2800. //MyHelpers::var_dump_html($oSelectBase->RenderSelect());
  2801. return $oSelectBase;
  2802. }
  2803. /**
  2804. * Special processing for the hierarchical keys stored as nested sets
  2805. * @param $iId integer The identifier of the parent
  2806. * @param $oAttDef AttributeDefinition The attribute corresponding to the hierarchical key
  2807. * @param $stable string The name of the database table containing the hierarchical key
  2808. */
  2809. public static function HKInsertChildUnder($iId, $oAttDef, $sTable)
  2810. {
  2811. // Get the parent id.right value
  2812. if ($iId == 0)
  2813. {
  2814. // No parent, insert completely at the right of the tree
  2815. $sSQL = "SELECT max(`".$oAttDef->GetSQLRight()."`) AS max FROM `$sTable`";
  2816. $aRes = CMDBSource::QueryToArray($sSQL);
  2817. if (count($aRes) == 0)
  2818. {
  2819. $iMyRight = 1;
  2820. }
  2821. else
  2822. {
  2823. $iMyRight = $aRes[0]['max']+1;
  2824. }
  2825. }
  2826. else
  2827. {
  2828. $sSQL = "SELECT `".$oAttDef->GetSQLRight()."` FROM `$sTable` WHERE id=".$iId;
  2829. $iMyRight = CMDBSource::QueryToScalar($sSQL);
  2830. $sSQLUpdateRight = "UPDATE `$sTable` SET `".$oAttDef->GetSQLRight()."` = `".$oAttDef->GetSQLRight()."` + 2 WHERE `".$oAttDef->GetSQLRight()."` >= $iMyRight";
  2831. CMDBSource::Query($sSQLUpdateRight);
  2832. $sSQLUpdateLeft = "UPDATE `$sTable` SET `".$oAttDef->GetSQLLeft()."` = `".$oAttDef->GetSQLLeft()."` + 2 WHERE `".$oAttDef->GetSQLLeft()."` > $iMyRight";
  2833. CMDBSource::Query($sSQLUpdateLeft);
  2834. }
  2835. return array($oAttDef->GetSQLRight() => $iMyRight+1, $oAttDef->GetSQLLeft() => $iMyRight);
  2836. }
  2837. /**
  2838. * Special processing for the hierarchical keys stored as nested sets: temporary remove the branch
  2839. * @param $iId integer The identifier of the parent
  2840. * @param $oAttDef AttributeDefinition The attribute corresponding to the hierarchical key
  2841. * @param $sTable string The name of the database table containing the hierarchical key
  2842. */
  2843. public static function HKTemporaryCutBranch($iMyLeft, $iMyRight, $oAttDef, $sTable)
  2844. {
  2845. $iDelta = $iMyRight - $iMyLeft + 1;
  2846. $sSQL = "UPDATE `$sTable` SET `".$oAttDef->GetSQLRight()."` = $iMyLeft - `".$oAttDef->GetSQLRight()."`, `".$oAttDef->GetSQLLeft()."` = $iMyLeft - `".$oAttDef->GetSQLLeft();
  2847. $sSQL .= "` WHERE `".$oAttDef->GetSQLLeft()."`> $iMyLeft AND `".$oAttDef->GetSQLRight()."`< $iMyRight";
  2848. CMDBSource::Query($sSQL);
  2849. $sSQL = "UPDATE `$sTable` SET `".$oAttDef->GetSQLLeft()."` = `".$oAttDef->GetSQLLeft()."` - $iDelta WHERE `".$oAttDef->GetSQLLeft()."` > $iMyRight";
  2850. CMDBSource::Query($sSQL);
  2851. $sSQL = "UPDATE `$sTable` SET `".$oAttDef->GetSQLRight()."` = `".$oAttDef->GetSQLRight()."` - $iDelta WHERE `".$oAttDef->GetSQLRight()."` > $iMyRight";
  2852. CMDBSource::Query($sSQL);
  2853. }
  2854. /**
  2855. * Special processing for the hierarchical keys stored as nested sets: replug the temporary removed branch
  2856. * @param $iId integer The identifier of the parent
  2857. * @param $oAttDef AttributeDefinition The attribute corresponding to the hierarchical key
  2858. * @param $sTable string The name of the database table containing the hierarchical key
  2859. */
  2860. public static function HKReplugBranch($iNewLeft, $iNewRight, $oAttDef, $sTable)
  2861. {
  2862. $iDelta = $iNewRight - $iNewLeft + 1;
  2863. $sSQL = "UPDATE `$sTable` SET `".$oAttDef->GetSQLLeft()."` = `".$oAttDef->GetSQLLeft()."` + $iDelta WHERE `".$oAttDef->GetSQLLeft()."` > $iNewLeft";
  2864. CMDBSource::Query($sSQL);
  2865. $sSQL = "UPDATE `$sTable` SET `".$oAttDef->GetSQLRight()."` = `".$oAttDef->GetSQLRight()."` + $iDelta WHERE `".$oAttDef->GetSQLRight()."` >= $iNewLeft";
  2866. CMDBSource::Query($sSQL);
  2867. $sSQL = "UPDATE `$sTable` SET `".$oAttDef->GetSQLRight()."` = $iNewLeft - `".$oAttDef->GetSQLRight()."`, `".$oAttDef->GetSQLLeft()."` = $iNewLeft - `".$oAttDef->GetSQLLeft()."` WHERE `".$oAttDef->GetSQLRight()."`< 0";
  2868. CMDBSource::Query($sSQL);
  2869. }
  2870. /**
  2871. * Check (and updates if needed) the hierarchical keys
  2872. * @param $bDiagnosticsOnly boolean If true only a diagnostic pass will be run, returning true or false
  2873. * @param $bVerbose boolean Displays some information about what is done/what needs to be done
  2874. * @param $bForceComputation boolean If true, the _left and _right parameters will be recomputed even if some values already exist in the DB
  2875. */
  2876. public static function CheckHKeys($bDiagnosticsOnly = false, $bVerbose = false, $bForceComputation = false)
  2877. {
  2878. $bChangeNeeded = false;
  2879. foreach (self::GetClasses() as $sClass)
  2880. {
  2881. if (!self::HasTable($sClass)) continue;
  2882. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  2883. {
  2884. // Check (once) all the attributes that are hierarchical keys
  2885. if((self::GetAttributeOrigin($sClass, $sAttCode) == $sClass) && $oAttDef->IsHierarchicalKey())
  2886. {
  2887. if ($bVerbose)
  2888. {
  2889. echo "The attribute $sAttCode from $sClass is a hierarchical key.\n";
  2890. }
  2891. $bResult = self::HKInit($sClass, $sAttCode, $bDiagnosticsOnly, $bVerbose, $bForceComputation);
  2892. $bChangeNeeded |= $bResult;
  2893. if ($bVerbose && !$bResult)
  2894. {
  2895. echo "Ok, the attribute $sAttCode from class $sClass seems up to date.\n";
  2896. }
  2897. }
  2898. }
  2899. }
  2900. return $bChangeNeeded;
  2901. }
  2902. /**
  2903. * Initializes (i.e converts) a hierarchy stored using a 'parent_id' external key
  2904. * into a hierarchy stored with a HierarchicalKey, by initializing the _left and _right values
  2905. * to correspond to the existing hierarchy in the database
  2906. * @param $sClass string Name of the class to process
  2907. * @param $sAttCode string Code of the attribute to process
  2908. * @param $bDiagnosticsOnly boolean If true only a diagnostic pass will be run, returning true or false
  2909. * @param $bVerbose boolean Displays some information about what is done/what needs to be done
  2910. * @param $bForceComputation boolean If true, the _left and _right parameters will be recomputed even if some values already exist in the DB
  2911. * @return true if an update is needed (diagnostics only) / was performed
  2912. */
  2913. public static function HKInit($sClass, $sAttCode, $bDiagnosticsOnly = false, $bVerbose = false, $bForceComputation = false)
  2914. {
  2915. $idx = 1;
  2916. $bUpdateNeeded = $bForceComputation;
  2917. $oAttDef = self::GetAttributeDef($sClass, $sAttCode);
  2918. $sTable = self::DBGetTable($sClass, $sAttCode);
  2919. if ($oAttDef->IsHierarchicalKey())
  2920. {
  2921. // Check if some values already exist in the table for the _right value, if so, do nothing
  2922. $sRight = $oAttDef->GetSQLRight();
  2923. $sSQL = "SELECT MAX(`$sRight`) AS MaxRight FROM `$sTable`";
  2924. $iMaxRight = CMDBSource::QueryToScalar($sSQL);
  2925. $sSQL = "SELECT COUNT(*) AS Count FROM `$sTable`"; // Note: COUNT(field) returns zero if the given field contains only NULLs
  2926. $iCount = CMDBSource::QueryToScalar($sSQL);
  2927. if (!$bForceComputation && ($iCount != 0) && ($iMaxRight == 0))
  2928. {
  2929. $bUpdateNeeded = true;
  2930. if ($bVerbose)
  2931. {
  2932. echo "The table '$sTable' must be updated to compute the fields $sRight and ".$oAttDef->GetSQLLeft()."\n";
  2933. }
  2934. }
  2935. if ($bForceComputation && !$bDiagnosticsOnly)
  2936. {
  2937. echo "Rebuilding the fields $sRight and ".$oAttDef->GetSQLLeft()." from table '$sTable'...\n";
  2938. }
  2939. if ($bUpdateNeeded && !$bDiagnosticsOnly)
  2940. {
  2941. try
  2942. {
  2943. CMDBSource::Query('START TRANSACTION');
  2944. self::HKInitChildren($sTable, $sAttCode, $oAttDef, 0, $idx);
  2945. CMDBSource::Query('COMMIT');
  2946. if ($bVerbose)
  2947. {
  2948. echo "Ok, table '$sTable' successfully updated.\n";
  2949. }
  2950. }
  2951. catch(Exception $e)
  2952. {
  2953. CMDBSource::Query('ROLLBACK');
  2954. throw new Exception("An error occured (".$e->getMessage().") while initializing the hierarchy for ($sClass, $sAttCode). The database was not modified.");
  2955. }
  2956. }
  2957. }
  2958. return $bUpdateNeeded;
  2959. }
  2960. /**
  2961. * Recursive helper function called by HKInit
  2962. */
  2963. protected static function HKInitChildren($sTable, $sAttCode, $oAttDef, $iId, &$iCurrIndex)
  2964. {
  2965. $sSQL = "SELECT id FROM `$sTable` WHERE `$sAttCode` = $iId";
  2966. $aRes = CMDBSource::QueryToArray($sSQL);
  2967. $aTree = array();
  2968. $sLeft = $oAttDef->GetSQLLeft();
  2969. $sRight = $oAttDef->GetSQLRight();
  2970. foreach($aRes as $aValues)
  2971. {
  2972. $iChildId = $aValues['id'];
  2973. $iLeft = $iCurrIndex++;
  2974. $aChildren = self::HKInitChildren($sTable, $sAttCode, $oAttDef, $iChildId, $iCurrIndex);
  2975. $iRight = $iCurrIndex++;
  2976. $sSQL = "UPDATE `$sTable` SET `$sLeft` = $iLeft, `$sRight` = $iRight WHERE id= $iChildId";
  2977. CMDBSource::Query($sSQL);
  2978. }
  2979. }
  2980. public static function CheckDataSources($bDiagnostics, $bVerbose)
  2981. {
  2982. $sOQL = 'SELECT SynchroDataSource';
  2983. $oSet = new DBObjectSet(DBObjectSearch::FromOQL($sOQL));
  2984. $bFixNeeded = false;
  2985. if ($bVerbose && $oSet->Count() == 0)
  2986. {
  2987. echo "There are no Data Sources in the database.\n";
  2988. }
  2989. while($oSource = $oSet->Fetch())
  2990. {
  2991. if ($bVerbose)
  2992. {
  2993. echo "Checking Data Source '".$oSource->GetName()."'...\n";
  2994. $bFixNeeded = $bFixNeeded | $oSource->CheckDBConsistency($bDiagnostics, $bVerbose);
  2995. }
  2996. }
  2997. if (!$bFixNeeded && $bVerbose)
  2998. {
  2999. echo "Ok.\n";
  3000. }
  3001. return $bFixNeeded;
  3002. }
  3003. public static function GenerateUniqueAlias(&$aAliases, $sNewName, $sRealName)
  3004. {
  3005. if (!array_key_exists($sNewName, $aAliases))
  3006. {
  3007. $aAliases[$sNewName] = $sRealName;
  3008. return $sNewName;
  3009. }
  3010. for ($i = 1 ; $i < 100 ; $i++)
  3011. {
  3012. $sAnAlias = $sNewName.$i;
  3013. if (!array_key_exists($sAnAlias, $aAliases))
  3014. {
  3015. // Create that new alias
  3016. $aAliases[$sAnAlias] = $sRealName;
  3017. return $sAnAlias;
  3018. }
  3019. }
  3020. throw new CoreException('Failed to create an alias', array('aliases' => $aAliases, 'new'=>$sNewName));
  3021. }
  3022. public static function CheckDefinitions($bExitOnError = true)
  3023. {
  3024. if (count(self::GetClasses()) == 0)
  3025. {
  3026. throw new CoreException("MetaModel::InitClasses() has not been called, or no class has been declared ?!?!");
  3027. }
  3028. $aErrors = array();
  3029. $aSugFix = array();
  3030. foreach (self::GetClasses() as $sClass)
  3031. {
  3032. $sTable = self::DBGetTable($sClass);
  3033. $sTableLowercase = strtolower($sTable);
  3034. if ($sTableLowercase != $sTable)
  3035. {
  3036. $aErrors[$sClass][] = "Table name '".$sTable."' has upper case characters. You might encounter issues when moving your installation between Linux and Windows.";
  3037. $aSugFix[$sClass][] = "Use '$sTableLowercase' instead. Step 1: If already installed, then rename manually in the DB: RENAME TABLE `$sTable` TO `{$sTableLowercase}_tempname`, `{$sTableLowercase}_tempname` TO `$sTableLowercase`; Step 2: Rename the table in the datamodel and compile the application. Note: the MySQL statement provided in step 1 has been designed to be compatible with Windows or Linux.";
  3038. }
  3039. $aNameSpec = self::GetNameSpec($sClass);
  3040. foreach($aNameSpec[1] as $i => $sAttCode)
  3041. {
  3042. if(!self::IsValidAttCode($sClass, $sAttCode))
  3043. {
  3044. $aErrors[$sClass][] = "Unknown attribute code '".$sAttCode."' for the name definition";
  3045. $aSugFix[$sClass][] = "Expecting a value in ".implode(", ", self::GetAttributesList($sClass));
  3046. }
  3047. }
  3048. foreach(self::GetReconcKeys($sClass) as $sReconcKeyAttCode)
  3049. {
  3050. if (!empty($sReconcKeyAttCode) && !self::IsValidAttCode($sClass, $sReconcKeyAttCode))
  3051. {
  3052. $aErrors[$sClass][] = "Unknown attribute code '".$sReconcKeyAttCode."' in the list of reconciliation keys";
  3053. $aSugFix[$sClass][] = "Expecting a value in ".implode(", ", self::GetAttributesList($sClass));
  3054. }
  3055. }
  3056. $bHasWritableAttribute = false;
  3057. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  3058. {
  3059. // It makes no sense to check the attributes again and again in the subclasses
  3060. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  3061. if ($oAttDef->IsExternalKey())
  3062. {
  3063. if (!self::IsValidClass($oAttDef->GetTargetClass()))
  3064. {
  3065. $aErrors[$sClass][] = "Unknown class '".$oAttDef->GetTargetClass()."' for the external key '$sAttCode'";
  3066. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetClasses())."}";
  3067. }
  3068. }
  3069. elseif ($oAttDef->IsExternalField())
  3070. {
  3071. $sKeyAttCode = $oAttDef->GetKeyAttCode();
  3072. if (!self::IsValidAttCode($sClass, $sKeyAttCode) || !self::IsValidKeyAttCode($sClass, $sKeyAttCode))
  3073. {
  3074. $aErrors[$sClass][] = "Unknown key attribute code '".$sKeyAttCode."' for the external field $sAttCode";
  3075. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetKeysList($sClass))."}";
  3076. }
  3077. else
  3078. {
  3079. $oKeyAttDef = self::GetAttributeDef($sClass, $sKeyAttCode);
  3080. $sTargetClass = $oKeyAttDef->GetTargetClass();
  3081. $sExtAttCode = $oAttDef->GetExtAttCode();
  3082. if (!self::IsValidAttCode($sTargetClass, $sExtAttCode))
  3083. {
  3084. $aErrors[$sClass][] = "Unknown key attribute code '".$sExtAttCode."' for the external field $sAttCode";
  3085. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetKeysList($sTargetClass))."}";
  3086. }
  3087. }
  3088. }
  3089. else if ($oAttDef->IsLinkSet())
  3090. {
  3091. // Do nothing...
  3092. }
  3093. else // standard attributes
  3094. {
  3095. // Check that the default values definition is a valid object!
  3096. $oValSetDef = $oAttDef->GetValuesDef();
  3097. if (!is_null($oValSetDef) && !$oValSetDef instanceof ValueSetDefinition)
  3098. {
  3099. $aErrors[$sClass][] = "Allowed values for attribute $sAttCode is not of the relevant type";
  3100. $aSugFix[$sClass][] = "Please set it as an instance of a ValueSetDefinition object.";
  3101. }
  3102. else
  3103. {
  3104. // Default value must be listed in the allowed values (if defined)
  3105. $aAllowedValues = self::GetAllowedValues_att($sClass, $sAttCode);
  3106. if (!is_null($aAllowedValues))
  3107. {
  3108. $sDefaultValue = $oAttDef->GetDefaultValue();
  3109. if (is_string($sDefaultValue) && !array_key_exists($sDefaultValue, $aAllowedValues))
  3110. {
  3111. $aErrors[$sClass][] = "Default value '".$sDefaultValue."' for attribute $sAttCode is not an allowed value";
  3112. $aSugFix[$sClass][] = "Please pickup the default value out of {'".implode(", ", array_keys($aAllowedValues))."'}";
  3113. }
  3114. }
  3115. }
  3116. }
  3117. // Check dependencies
  3118. if ($oAttDef->IsWritable())
  3119. {
  3120. $bHasWritableAttribute = true;
  3121. foreach ($oAttDef->GetPrerequisiteAttributes() as $sDependOnAttCode)
  3122. {
  3123. if (!self::IsValidAttCode($sClass, $sDependOnAttCode))
  3124. {
  3125. $aErrors[$sClass][] = "Unknown attribute code '".$sDependOnAttCode."' in the list of prerequisite attributes";
  3126. $aSugFix[$sClass][] = "Expecting a value in ".implode(", ", self::GetAttributesList($sClass));
  3127. }
  3128. }
  3129. }
  3130. }
  3131. foreach(self::GetClassFilterDefs($sClass) as $sFltCode=>$oFilterDef)
  3132. {
  3133. if (method_exists($oFilterDef, '__GetRefAttribute'))
  3134. {
  3135. $oAttDef = $oFilterDef->__GetRefAttribute();
  3136. if (!self::IsValidAttCode($sClass, $oAttDef->GetCode()))
  3137. {
  3138. $aErrors[$sClass][] = "Wrong attribute code '".$oAttDef->GetCode()."' (wrong class) for the \"basic\" filter $sFltCode";
  3139. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetAttributesList($sClass))."}";
  3140. }
  3141. }
  3142. }
  3143. // Lifecycle
  3144. //
  3145. $sStateAttCode = self::GetStateAttributeCode($sClass);
  3146. if (strlen($sStateAttCode) > 0)
  3147. {
  3148. // Lifecycle - check that the state attribute does exist as an attribute
  3149. if (!self::IsValidAttCode($sClass, $sStateAttCode))
  3150. {
  3151. $aErrors[$sClass][] = "Unknown attribute code '".$sStateAttCode."' for the state definition";
  3152. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetAttributesList($sClass))."}";
  3153. }
  3154. else
  3155. {
  3156. // Lifecycle - check that there is a value set constraint on the state attribute
  3157. $aAllowedValuesRaw = self::GetAllowedValues_att($sClass, $sStateAttCode);
  3158. $aStates = array_keys(self::EnumStates($sClass));
  3159. if (is_null($aAllowedValuesRaw))
  3160. {
  3161. $aErrors[$sClass][] = "Attribute '".$sStateAttCode."' will reflect the state of the object. It must be restricted to a set of values";
  3162. $aSugFix[$sClass][] = "Please define its allowed_values property as [new ValueSetEnum('".implode(", ", $aStates)."')]";
  3163. }
  3164. else
  3165. {
  3166. $aAllowedValues = array_keys($aAllowedValuesRaw);
  3167. // Lifecycle - check the the state attribute allowed values are defined states
  3168. foreach($aAllowedValues as $sValue)
  3169. {
  3170. if (!in_array($sValue, $aStates))
  3171. {
  3172. $aErrors[$sClass][] = "Attribute '".$sStateAttCode."' (object state) has an allowed value ($sValue) which is not a known state";
  3173. $aSugFix[$sClass][] = "You may define its allowed_values property as [new ValueSetEnum('".implode(", ", $aStates)."')], or reconsider the list of states";
  3174. }
  3175. }
  3176. // Lifecycle - check that defined states are allowed values
  3177. foreach($aStates as $sStateValue)
  3178. {
  3179. if (!in_array($sStateValue, $aAllowedValues))
  3180. {
  3181. $aErrors[$sClass][] = "Attribute '".$sStateAttCode."' (object state) has a state ($sStateValue) which is not an allowed value";
  3182. $aSugFix[$sClass][] = "You may define its allowed_values property as [new ValueSetEnum('".implode(", ", $aStates)."')], or reconsider the list of states";
  3183. }
  3184. }
  3185. }
  3186. // Lifcycle - check that the action handlers are defined
  3187. foreach (self::EnumStates($sClass) as $sStateCode => $aStateDef)
  3188. {
  3189. foreach(self::EnumTransitions($sClass, $sStateCode) as $sStimulusCode => $aTransitionDef)
  3190. {
  3191. foreach ($aTransitionDef['actions'] as $sActionHandler)
  3192. {
  3193. if (!method_exists($sClass, $sActionHandler))
  3194. {
  3195. $aErrors[$sClass][] = "Unknown function '$sActionHandler' in transition [$sStateCode/$sStimulusCode] for state attribute '$sStateAttCode'";
  3196. $aSugFix[$sClass][] = "Specify a function which prototype is in the form [public function $sActionHandler(\$sStimulusCode){return true;}]";
  3197. }
  3198. }
  3199. }
  3200. }
  3201. }
  3202. }
  3203. if ($bHasWritableAttribute)
  3204. {
  3205. if (!self::HasTable($sClass))
  3206. {
  3207. $aErrors[$sClass][] = "No table has been defined for this class";
  3208. $aSugFix[$sClass][] = "Either define a table name or move the attributes elsewhere";
  3209. }
  3210. }
  3211. // ZList
  3212. //
  3213. foreach(self::EnumZLists() as $sListCode)
  3214. {
  3215. foreach (self::FlattenZList(self::GetZListItems($sClass, $sListCode)) as $sMyAttCode)
  3216. {
  3217. if (!self::IsValidAttCode($sClass, $sMyAttCode))
  3218. {
  3219. $aErrors[$sClass][] = "Unknown attribute code '".$sMyAttCode."' from ZList '$sListCode'";
  3220. $aSugFix[$sClass][] = "Expecting a value in {".implode(", ", self::GetAttributesList($sClass))."}";
  3221. }
  3222. }
  3223. }
  3224. // Check unicity of the SQL columns
  3225. //
  3226. if (self::HasTable($sClass))
  3227. {
  3228. $aTableColumns = array(); // array of column => attcode (the column is used by this attribute)
  3229. $aTableColumns[self::DBGetKey($sClass)] = 'id';
  3230. // Check that SQL columns are declared only once
  3231. //
  3232. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  3233. {
  3234. // Skip this attribute if not originaly defined in this class
  3235. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  3236. foreach($oAttDef->GetSQLColumns() as $sField => $sDBFieldType)
  3237. {
  3238. if (array_key_exists($sField, $aTableColumns))
  3239. {
  3240. $aErrors[$sClass][] = "Column '$sField' declared for attribute $sAttCode, but already used for attribute ".$aTableColumns[$sField];
  3241. $aSugFix[$sClass][] = "Please find another name for the SQL column";
  3242. }
  3243. else
  3244. {
  3245. $aTableColumns[$sField] = $sAttCode;
  3246. }
  3247. }
  3248. }
  3249. }
  3250. } // foreach class
  3251. if (count($aErrors) > 0)
  3252. {
  3253. echo "<div style=\"width:100%;padding:10px;background:#FFAAAA;display:;\">";
  3254. echo "<h3>Business model inconsistencies have been found</h3>\n";
  3255. // #@# later -> this is the responsibility of the caller to format the output
  3256. foreach ($aErrors as $sClass => $aMessages)
  3257. {
  3258. echo "<p>Wrong declaration for class <b>$sClass</b></p>\n";
  3259. echo "<ul class=\"treeview\">\n";
  3260. $i = 0;
  3261. foreach ($aMessages as $sMsg)
  3262. {
  3263. echo "<li>$sMsg ({$aSugFix[$sClass][$i]})</li>\n";
  3264. $i++;
  3265. }
  3266. echo "</ul>\n";
  3267. }
  3268. if ($bExitOnError) echo "<p>Aborting...</p>\n";
  3269. echo "</div>\n";
  3270. if ($bExitOnError) exit;
  3271. }
  3272. }
  3273. public static function DBShowApplyForm($sRepairUrl, $sSQLStatementArgName, $aSQLFixes)
  3274. {
  3275. if (empty($sRepairUrl)) return;
  3276. // By design, some queries might be blank, we have to ignore them
  3277. $aCleanFixes = array();
  3278. foreach($aSQLFixes as $sSQLFix)
  3279. {
  3280. if (!empty($sSQLFix))
  3281. {
  3282. $aCleanFixes[] = $sSQLFix;
  3283. }
  3284. }
  3285. if (count($aCleanFixes) == 0) return;
  3286. echo "<form action=\"$sRepairUrl\" method=\"POST\">\n";
  3287. echo " <input type=\"hidden\" name=\"$sSQLStatementArgName\" value=\"".htmlentities(implode("##SEP##", $aCleanFixes), ENT_QUOTES, 'UTF-8')."\">\n";
  3288. echo " <input type=\"submit\" value=\" Apply changes (".count($aCleanFixes)." queries) \">\n";
  3289. echo "</form>\n";
  3290. }
  3291. public static function DBExists($bMustBeComplete = true)
  3292. {
  3293. // returns true if at least one table exists
  3294. //
  3295. if (!CMDBSource::IsDB(self::$m_sDBName))
  3296. {
  3297. return false;
  3298. }
  3299. CMDBSource::SelectDB(self::$m_sDBName);
  3300. $aFound = array();
  3301. $aMissing = array();
  3302. foreach (self::DBEnumTables() as $sTable => $aClasses)
  3303. {
  3304. if (CMDBSource::IsTable($sTable))
  3305. {
  3306. $aFound[] = $sTable;
  3307. }
  3308. else
  3309. {
  3310. $aMissing[] = $sTable;
  3311. }
  3312. }
  3313. if (count($aFound) == 0)
  3314. {
  3315. // no expected table has been found
  3316. return false;
  3317. }
  3318. else
  3319. {
  3320. if (count($aMissing) == 0)
  3321. {
  3322. // the database is complete (still, could be some fields missing!)
  3323. return true;
  3324. }
  3325. else
  3326. {
  3327. // not all the tables, could be an older version
  3328. if ($bMustBeComplete)
  3329. {
  3330. return false;
  3331. }
  3332. else
  3333. {
  3334. return true;
  3335. }
  3336. }
  3337. }
  3338. }
  3339. public static function DBDrop()
  3340. {
  3341. $bDropEntireDB = true;
  3342. if (!empty(self::$m_sTablePrefix))
  3343. {
  3344. // Do drop only tables corresponding to the sub-database (table prefix)
  3345. // then possibly drop the DB itself (if no table remain)
  3346. foreach (CMDBSource::EnumTables() as $sTable)
  3347. {
  3348. // perform a case insensitive test because on Windows the table names become lowercase :-(
  3349. if (strtolower(substr($sTable, 0, strlen(self::$m_sTablePrefix))) == strtolower(self::$m_sTablePrefix))
  3350. {
  3351. CMDBSource::DropTable($sTable);
  3352. }
  3353. else
  3354. {
  3355. // There is at least one table which is out of the scope of the current application
  3356. $bDropEntireDB = false;
  3357. }
  3358. }
  3359. }
  3360. if ($bDropEntireDB)
  3361. {
  3362. CMDBSource::DropDB(self::$m_sDBName);
  3363. }
  3364. }
  3365. public static function DBCreate()
  3366. {
  3367. // Note: we have to check if the DB does exist, because we may share the DB
  3368. // with other applications (in which case the DB does exist, not the tables with the given prefix)
  3369. if (!CMDBSource::IsDB(self::$m_sDBName))
  3370. {
  3371. CMDBSource::CreateDB(self::$m_sDBName);
  3372. }
  3373. self::DBCreateTables();
  3374. self::DBCreateViews();
  3375. }
  3376. protected static function DBCreateTables()
  3377. {
  3378. list($aErrors, $aSugFix, $aCondensedQueries) = self::DBCheckFormat();
  3379. //$sSQL = implode('; ', $aCondensedQueries); Does not work - multiple queries not allowed
  3380. foreach($aCondensedQueries as $sQuery)
  3381. {
  3382. CMDBSource::CreateTable($sQuery);
  3383. }
  3384. }
  3385. protected static function DBCreateViews()
  3386. {
  3387. list($aErrors, $aSugFix) = self::DBCheckViews();
  3388. $aSQL = array();
  3389. foreach ($aSugFix as $sClass => $aTarget)
  3390. {
  3391. foreach ($aTarget as $aQueries)
  3392. {
  3393. foreach ($aQueries as $sQuery)
  3394. {
  3395. if (!empty($sQuery))
  3396. {
  3397. //$aSQL[] = $sQuery;
  3398. // forces a refresh of cached information
  3399. CMDBSource::CreateTable($sQuery);
  3400. }
  3401. }
  3402. }
  3403. }
  3404. }
  3405. public static function DBDump()
  3406. {
  3407. $aDataDump = array();
  3408. foreach (self::DBEnumTables() as $sTable => $aClasses)
  3409. {
  3410. $aRows = CMDBSource::DumpTable($sTable);
  3411. $aDataDump[$sTable] = $aRows;
  3412. }
  3413. return $aDataDump;
  3414. }
  3415. /*
  3416. * Determines wether the target DB is frozen or not
  3417. */
  3418. public static function DBIsReadOnly()
  3419. {
  3420. // Improvement: check the mySQL variable -> Read-only
  3421. if (UserRights::IsAdministrator())
  3422. {
  3423. return (!self::DBHasAccess(ACCESS_ADMIN_WRITE));
  3424. }
  3425. else
  3426. {
  3427. return (!self::DBHasAccess(ACCESS_USER_WRITE));
  3428. }
  3429. }
  3430. public static function DBHasAccess($iRequested = ACCESS_FULL)
  3431. {
  3432. $iMode = self::$m_oConfig->Get('access_mode');
  3433. if (($iMode & $iRequested) == 0) return false;
  3434. return true;
  3435. }
  3436. protected static function MakeDictEntry($sKey, $sValueFromOldSystem, $sDefaultValue, &$bNotInDico)
  3437. {
  3438. $sValue = Dict::S($sKey, 'x-no-nothing');
  3439. if ($sValue == 'x-no-nothing')
  3440. {
  3441. $bNotInDico = true;
  3442. $sValue = $sValueFromOldSystem;
  3443. if (strlen($sValue) == 0)
  3444. {
  3445. $sValue = $sDefaultValue;
  3446. }
  3447. }
  3448. return " '$sKey' => '".str_replace("'", "\\'", $sValue)."',\n";
  3449. }
  3450. public static function MakeDictionaryTemplate($sModules = '', $sOutputFilter = 'NotInDictionary')
  3451. {
  3452. $sRes = '';
  3453. $sRes .= "// Dictionnay conventions\n";
  3454. $sRes .= htmlentities("// Class:<class_name>\n", ENT_QUOTES, 'UTF-8');
  3455. $sRes .= htmlentities("// Class:<class_name>+\n", ENT_QUOTES, 'UTF-8');
  3456. $sRes .= htmlentities("// Class:<class_name>/Attribute:<attribute_code>\n", ENT_QUOTES, 'UTF-8');
  3457. $sRes .= htmlentities("// Class:<class_name>/Attribute:<attribute_code>+\n", ENT_QUOTES, 'UTF-8');
  3458. $sRes .= htmlentities("// Class:<class_name>/Attribute:<attribute_code>/Value:<value>\n", ENT_QUOTES, 'UTF-8');
  3459. $sRes .= htmlentities("// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+\n", ENT_QUOTES, 'UTF-8');
  3460. $sRes .= htmlentities("// Class:<class_name>/Stimulus:<stimulus_code>\n", ENT_QUOTES, 'UTF-8');
  3461. $sRes .= htmlentities("// Class:<class_name>/Stimulus:<stimulus_code>+\n", ENT_QUOTES, 'UTF-8');
  3462. $sRes .= "\n";
  3463. // Note: I did not use EnumCategories(), because a given class maybe found in several categories
  3464. // Need to invent the "module", to characterize the origins of a class
  3465. if (strlen($sModules) == 0)
  3466. {
  3467. $aModules = array('bizmodel', 'core/cmdb', 'gui' , 'application', 'addon/userrights');
  3468. }
  3469. else
  3470. {
  3471. $aModules = explode(', ', $sModules);
  3472. }
  3473. $sRes .= "//////////////////////////////////////////////////////////////////////\n";
  3474. $sRes .= "// Note: The classes have been grouped by categories: ".implode(', ', $aModules)."\n";
  3475. $sRes .= "//////////////////////////////////////////////////////////////////////\n";
  3476. foreach ($aModules as $sCategory)
  3477. {
  3478. $sRes .= "//////////////////////////////////////////////////////////////////////\n";
  3479. $sRes .= "// Classes in '<em>$sCategory</em>'\n";
  3480. $sRes .= "//////////////////////////////////////////////////////////////////////\n";
  3481. $sRes .= "//\n";
  3482. $sRes .= "\n";
  3483. foreach (self::GetClasses($sCategory) as $sClass)
  3484. {
  3485. if (!self::HasTable($sClass)) continue;
  3486. $bNotInDico = false;
  3487. $sClassRes = "//\n";
  3488. $sClassRes .= "// Class: $sClass\n";
  3489. $sClassRes .= "//\n";
  3490. $sClassRes .= "\n";
  3491. $sClassRes .= "Dict::Add('EN US', 'English', 'English', array(\n";
  3492. $sClassRes .= self::MakeDictEntry("Class:$sClass", self::GetName_Obsolete($sClass), $sClass, $bNotInDico);
  3493. $sClassRes .= self::MakeDictEntry("Class:$sClass+", self::GetClassDescription_Obsolete($sClass), '', $bNotInDico);
  3494. foreach(self::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
  3495. {
  3496. // Skip this attribute if not originaly defined in this class
  3497. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  3498. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode", $oAttDef->GetLabel_Obsolete(), $sAttCode, $bNotInDico);
  3499. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode+", $oAttDef->GetDescription_Obsolete(), '', $bNotInDico);
  3500. if ($oAttDef instanceof AttributeEnum)
  3501. {
  3502. if (self::GetStateAttributeCode($sClass) == $sAttCode)
  3503. {
  3504. foreach (self::EnumStates($sClass) as $sStateCode => $aStateData)
  3505. {
  3506. if (array_key_exists('label', $aStateData))
  3507. {
  3508. $sValue = $aStateData['label'];
  3509. }
  3510. else
  3511. {
  3512. $sValue = MetaModel::GetStateLabel($sClass, $sStateCode);
  3513. }
  3514. if (array_key_exists('description', $aStateData))
  3515. {
  3516. $sValuePlus = $aStateData['description'];
  3517. }
  3518. else
  3519. {
  3520. $sValuePlus = MetaModel::GetStateDescription($sClass, $sStateCode);
  3521. }
  3522. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode/Value:$sStateCode", $sValue, '', $bNotInDico);
  3523. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode/Value:$sStateCode+", $sValuePlus, '', $bNotInDico);
  3524. }
  3525. }
  3526. else
  3527. {
  3528. foreach ($oAttDef->GetAllowedValues() as $sKey => $value)
  3529. {
  3530. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode/Value:$sKey", $value, '', $bNotInDico);
  3531. $sClassRes .= self::MakeDictEntry("Class:$sClass/Attribute:$sAttCode/Value:$sKey+", $value, '', $bNotInDico);
  3532. }
  3533. }
  3534. }
  3535. }
  3536. foreach(self::EnumStimuli($sClass) as $sStimulusCode => $oStimulus)
  3537. {
  3538. $sClassRes .= self::MakeDictEntry("Class:$sClass/Stimulus:$sStimulusCode", $oStimulus->GetLabel_Obsolete(), '', $bNotInDico);
  3539. $sClassRes .= self::MakeDictEntry("Class:$sClass/Stimulus:$sStimulusCode+", $oStimulus->GetDescription_Obsolete(), '', $bNotInDico);
  3540. }
  3541. $sClassRes .= "));\n";
  3542. $sClassRes .= "\n";
  3543. if ($bNotInDico || ($sOutputFilter != 'NotInDictionary'))
  3544. {
  3545. $sRes .= $sClassRes;
  3546. }
  3547. }
  3548. }
  3549. return $sRes;
  3550. }
  3551. public static function DBCheckFormat()
  3552. {
  3553. $aErrors = array();
  3554. $aSugFix = array();
  3555. // A new way of representing things to be done - quicker to execute !
  3556. $aCreateTable = array(); // array of <table> => <table options>
  3557. $aCreateTableItems = array(); // array of <table> => array of <create definition>
  3558. $aAlterTableItems = array(); // array of <table> => <alter specification>
  3559. foreach (self::GetClasses() as $sClass)
  3560. {
  3561. if (!self::HasTable($sClass)) continue;
  3562. // Check that the table exists
  3563. //
  3564. $sTable = self::DBGetTable($sClass);
  3565. $sKeyField = self::DBGetKey($sClass);
  3566. $sAutoIncrement = (self::IsAutoIncrementKey($sClass) ? "AUTO_INCREMENT" : "");
  3567. $sKeyFieldDefinition = "`$sKeyField` INT(11) NOT NULL $sAutoIncrement PRIMARY KEY";
  3568. if (!CMDBSource::IsTable($sTable))
  3569. {
  3570. $aErrors[$sClass]['*'][] = "table '$sTable' could not be found into the DB";
  3571. $aSugFix[$sClass]['*'][] = "CREATE TABLE `$sTable` ($sKeyFieldDefinition) ENGINE = ".MYSQL_ENGINE." CHARACTER SET utf8 COLLATE utf8_unicode_ci";
  3572. $aCreateTable[$sTable] = "ENGINE = ".MYSQL_ENGINE." CHARACTER SET utf8 COLLATE utf8_unicode_ci";
  3573. $aCreateTableItems[$sTable][$sKeyField] = $sKeyFieldDefinition;
  3574. }
  3575. // Check that the key field exists
  3576. //
  3577. elseif (!CMDBSource::IsField($sTable, $sKeyField))
  3578. {
  3579. $aErrors[$sClass]['id'][] = "key '$sKeyField' (table $sTable) could not be found";
  3580. $aSugFix[$sClass]['id'][] = "ALTER TABLE `$sTable` ADD $sKeyFieldDefinition";
  3581. if (!array_key_exists($sTable, $aCreateTable))
  3582. {
  3583. $aAlterTableItems[$sTable][$sKeyField] = "ADD $sKeyFieldDefinition";
  3584. }
  3585. }
  3586. else
  3587. {
  3588. // Check the key field properties
  3589. //
  3590. if (!CMDBSource::IsKey($sTable, $sKeyField))
  3591. {
  3592. $aErrors[$sClass]['id'][] = "key '$sKeyField' is not a key for table '$sTable'";
  3593. $aSugFix[$sClass]['id'][] = "ALTER TABLE `$sTable`, DROP PRIMARY KEY, ADD PRIMARY key(`$sKeyField`)";
  3594. if (!array_key_exists($sTable, $aCreateTable))
  3595. {
  3596. $aAlterTableItems[$sTable][$sKeyField] = "CHANGE `$sKeyField` $sKeyFieldDefinition";
  3597. }
  3598. }
  3599. if (self::IsAutoIncrementKey($sClass) && !CMDBSource::IsAutoIncrement($sTable, $sKeyField))
  3600. {
  3601. $aErrors[$sClass]['id'][] = "key '$sKeyField' (table $sTable) is not automatically incremented";
  3602. $aSugFix[$sClass]['id'][] = "ALTER TABLE `$sTable` CHANGE `$sKeyField` $sKeyFieldDefinition";
  3603. if (!array_key_exists($sTable, $aCreateTable))
  3604. {
  3605. $aAlterTableItems[$sTable][$sKeyField] = "CHANGE `$sKeyField` $sKeyFieldDefinition";
  3606. }
  3607. }
  3608. }
  3609. // Check that any defined field exists
  3610. //
  3611. $aTableInfo = CMDBSource::GetTableInfo($sTable);
  3612. $aTableInfo['Fields'][$sKeyField]['used'] = true;
  3613. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  3614. {
  3615. // Skip this attribute if not originaly defined in this class
  3616. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  3617. foreach($oAttDef->GetSQLColumns() as $sField => $sDBFieldType)
  3618. {
  3619. // Keep track of columns used by iTop
  3620. $aTableInfo['Fields'][$sField]['used'] = true;
  3621. $bIndexNeeded = $oAttDef->RequiresIndex();
  3622. $sFieldDefinition = "`$sField` ".($oAttDef->IsNullAllowed() ? "$sDBFieldType NULL" : "$sDBFieldType NOT NULL");
  3623. if (!CMDBSource::IsField($sTable, $sField))
  3624. {
  3625. $aErrors[$sClass][$sAttCode][] = "field '$sField' could not be found in table '$sTable'";
  3626. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` ADD $sFieldDefinition";
  3627. if ($bIndexNeeded)
  3628. {
  3629. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` ADD INDEX (`$sField`)";
  3630. }
  3631. if (array_key_exists($sTable, $aCreateTable))
  3632. {
  3633. $aCreateTableItems[$sTable][$sField] = $sFieldDefinition;
  3634. if ($bIndexNeeded)
  3635. {
  3636. $aCreateTableItems[$sTable][] = "INDEX (`$sField`)";
  3637. }
  3638. }
  3639. else
  3640. {
  3641. $aAlterTableItems[$sTable][$sField] = "ADD $sFieldDefinition";
  3642. if ($bIndexNeeded)
  3643. {
  3644. $aAlterTableItems[$sTable][] = "ADD INDEX (`$sField`)";
  3645. }
  3646. }
  3647. }
  3648. else
  3649. {
  3650. // The field already exists, does it have the relevant properties?
  3651. //
  3652. $bToBeChanged = false;
  3653. if ($oAttDef->IsNullAllowed() != CMDBSource::IsNullAllowed($sTable, $sField))
  3654. {
  3655. $bToBeChanged = true;
  3656. if ($oAttDef->IsNullAllowed())
  3657. {
  3658. $aErrors[$sClass][$sAttCode][] = "field '$sField' in table '$sTable' could be NULL";
  3659. }
  3660. else
  3661. {
  3662. $aErrors[$sClass][$sAttCode][] = "field '$sField' in table '$sTable' could NOT be NULL";
  3663. }
  3664. }
  3665. $sActualFieldType = CMDBSource::GetFieldType($sTable, $sField);
  3666. if (strcasecmp($sDBFieldType, $sActualFieldType) != 0)
  3667. {
  3668. $bToBeChanged = true;
  3669. $aErrors[$sClass][$sAttCode][] = "field '$sField' in table '$sTable' has a wrong type: found '$sActualFieldType' while expecting '$sDBFieldType'";
  3670. }
  3671. if ($bToBeChanged)
  3672. {
  3673. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` CHANGE `$sField` $sFieldDefinition";
  3674. $aAlterTableItems[$sTable][$sField] = "CHANGE `$sField` $sFieldDefinition";
  3675. }
  3676. // Create indexes (external keys only... so far)
  3677. //
  3678. if ($bIndexNeeded && !CMDBSource::HasIndex($sTable, $sField, array($sField)))
  3679. {
  3680. $aErrors[$sClass][$sAttCode][] = "Foreign key '$sField' in table '$sTable' should have an index";
  3681. if (CMDBSource::HasIndex($sTable, $sField))
  3682. {
  3683. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` DROP INDEX `$sField`, ADD INDEX (`$sField`)";
  3684. $aAlterTableItems[$sTable][] = "DROP INDEX `$sField`";
  3685. $aAlterTableItems[$sTable][] = "ADD INDEX (`$sField`)";
  3686. }
  3687. else
  3688. {
  3689. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` ADD INDEX (`$sField`)";
  3690. $aAlterTableItems[$sTable][] = "ADD INDEX (`$sField`)";
  3691. }
  3692. }
  3693. }
  3694. }
  3695. }
  3696. // Check indexes
  3697. foreach (self::DBGetIndexes($sClass) as $aColumns)
  3698. {
  3699. $sIndexId = implode('_', $aColumns);
  3700. if(!CMDBSource::HasIndex($sTable, $sIndexId, $aColumns))
  3701. {
  3702. $sColumns = "`".implode("`, `", $aColumns)."`";
  3703. if (CMDBSource::HasIndex($sTable, $sIndexId))
  3704. {
  3705. $aErrors[$sClass]['*'][] = "Wrong index '$sIndexId' ($sColumns) in table '$sTable'";
  3706. $aSugFix[$sClass]['*'][] = "ALTER TABLE `$sTable` DROP INDEX `$sIndexId`, ADD INDEX `$sIndexId` ($sColumns)";
  3707. }
  3708. else
  3709. {
  3710. $aErrors[$sClass]['*'][] = "Missing index '$sIndexId' ($sColumns) in table '$sTable'";
  3711. $aSugFix[$sClass]['*'][] = "ALTER TABLE `$sTable` ADD INDEX `$sIndexId` ($sColumns)";
  3712. }
  3713. if (array_key_exists($sTable, $aCreateTable))
  3714. {
  3715. $aCreateTableItems[$sTable][] = "INDEX `$sIndexId` ($sColumns)";
  3716. }
  3717. else
  3718. {
  3719. if (CMDBSource::HasIndex($sTable, $sIndexId))
  3720. {
  3721. $aAlterTableItems[$sTable][] = "DROP INDEX `$sIndexId`";
  3722. }
  3723. $aAlterTableItems[$sTable][] = "ADD INDEX `$sIndexId` ($sColumns)";
  3724. }
  3725. }
  3726. }
  3727. // Find out unused columns
  3728. //
  3729. foreach($aTableInfo['Fields'] as $sField => $aFieldData)
  3730. {
  3731. if (!isset($aFieldData['used']) || !$aFieldData['used'])
  3732. {
  3733. $aErrors[$sClass]['*'][] = "Column '$sField' in table '$sTable' is not used";
  3734. if (!CMDBSource::IsNullAllowed($sTable, $sField))
  3735. {
  3736. // Allow null values so that new record can be inserted
  3737. // without specifying the value of this unknown column
  3738. $sFieldDefinition = "`$sField` ".CMDBSource::GetFieldType($sTable, $sField).' NULL';
  3739. $aSugFix[$sClass][$sAttCode][] = "ALTER TABLE `$sTable` CHANGE `$sField` $sFieldDefinition";
  3740. $aAlterTableItems[$sTable][$sField] = "CHANGE `$sField` $sFieldDefinition";
  3741. }
  3742. }
  3743. }
  3744. }
  3745. $aCondensedQueries = array();
  3746. foreach($aCreateTable as $sTable => $sTableOptions)
  3747. {
  3748. $sTableItems = implode(', ', $aCreateTableItems[$sTable]);
  3749. $aCondensedQueries[] = "CREATE TABLE `$sTable` ($sTableItems) $sTableOptions";
  3750. }
  3751. foreach($aAlterTableItems as $sTable => $aChangeList)
  3752. {
  3753. $sChangeList = implode(', ', $aChangeList);
  3754. $aCondensedQueries[] = "ALTER TABLE `$sTable` $sChangeList";
  3755. }
  3756. return array($aErrors, $aSugFix, $aCondensedQueries);
  3757. }
  3758. public static function DBCheckViews()
  3759. {
  3760. $aErrors = array();
  3761. $aSugFix = array();
  3762. // Reporting views (must be created after any other table)
  3763. //
  3764. foreach (self::GetClasses('bizmodel') as $sClass)
  3765. {
  3766. $sView = self::DBGetView($sClass);
  3767. if (CMDBSource::IsTable($sView))
  3768. {
  3769. // Check that the view is complete
  3770. //
  3771. // Note: checking the list of attributes is not enough because the columns can be stable while the SELECT is not stable
  3772. // Example: new way to compute the friendly name
  3773. // The correct comparison algorithm is to compare the queries,
  3774. // by using "SHOW CREATE VIEW" (MySQL 5.0.1 required) or to look into INFORMATION_SCHEMA/views
  3775. // both requiring some privileges
  3776. // Decision: to simplify, let's consider the views as being wrong anytime
  3777. if (true)
  3778. {
  3779. // Rework the view
  3780. //
  3781. $oFilter = new DBObjectSearch($sClass, '');
  3782. $oFilter->AllowAllData();
  3783. $sSQL = self::MakeSelectQuery($oFilter);
  3784. $aErrors[$sClass]['*'][] = "Redeclare view '$sView' (systematic - to support an eventual change in the friendly name computation)";
  3785. $aSugFix[$sClass]['*'][] = "ALTER VIEW `$sView` AS $sSQL";
  3786. }
  3787. }
  3788. else
  3789. {
  3790. // Create the view
  3791. //
  3792. $oFilter = new DBObjectSearch($sClass, '');
  3793. $oFilter->AllowAllData();
  3794. $sSQL = self::MakeSelectQuery($oFilter);
  3795. $aErrors[$sClass]['*'][] = "Missing view for class: $sClass";
  3796. $aSugFix[$sClass]['*'][] = "DROP VIEW IF EXISTS `$sView`";
  3797. $aSugFix[$sClass]['*'][] = "CREATE VIEW `$sView` AS $sSQL";
  3798. }
  3799. }
  3800. return array($aErrors, $aSugFix);
  3801. }
  3802. private static function DBCheckIntegrity_Check2Delete($sSelWrongRecs, $sErrorDesc, $sClass, &$aErrorsAndFixes, &$iNewDelCount, &$aPlannedDel, $bProcessingFriends = false)
  3803. {
  3804. $sRootClass = self::GetRootClass($sClass);
  3805. $sTable = self::DBGetTable($sClass);
  3806. $sKeyField = self::DBGetKey($sClass);
  3807. if (array_key_exists($sTable, $aPlannedDel) && count($aPlannedDel[$sTable]) > 0)
  3808. {
  3809. $sSelWrongRecs .= " AND maintable.`$sKeyField` NOT IN ('".implode("', '", $aPlannedDel[$sTable])."')";
  3810. }
  3811. $aWrongRecords = CMDBSource::QueryToCol($sSelWrongRecs, "id");
  3812. if (count($aWrongRecords) == 0) return;
  3813. if (!array_key_exists($sRootClass, $aErrorsAndFixes)) $aErrorsAndFixes[$sRootClass] = array();
  3814. if (!array_key_exists($sTable, $aErrorsAndFixes[$sRootClass])) $aErrorsAndFixes[$sRootClass][$sTable] = array();
  3815. foreach ($aWrongRecords as $iRecordId)
  3816. {
  3817. if (array_key_exists($iRecordId, $aErrorsAndFixes[$sRootClass][$sTable]))
  3818. {
  3819. switch ($aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action'])
  3820. {
  3821. case 'Delete':
  3822. // Already planned for a deletion
  3823. // Let's concatenate the errors description together
  3824. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Reason'] .= ', '.$sErrorDesc;
  3825. break;
  3826. case 'Update':
  3827. // Let's plan a deletion
  3828. break;
  3829. }
  3830. }
  3831. else
  3832. {
  3833. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Reason'] = $sErrorDesc;
  3834. }
  3835. if (!$bProcessingFriends)
  3836. {
  3837. if (!array_key_exists($sTable, $aPlannedDel) || !in_array($iRecordId, $aPlannedDel[$sTable]))
  3838. {
  3839. // Something new to be deleted...
  3840. $iNewDelCount++;
  3841. }
  3842. }
  3843. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action'] = 'Delete';
  3844. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action_Details'] = array();
  3845. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Pass'] = 123;
  3846. $aPlannedDel[$sTable][] = $iRecordId;
  3847. }
  3848. // Now make sure that we would delete the records of the other tables for that class
  3849. //
  3850. if (!$bProcessingFriends)
  3851. {
  3852. $sDeleteKeys = "'".implode("', '", $aWrongRecords)."'";
  3853. foreach (self::EnumChildClasses($sRootClass, ENUM_CHILD_CLASSES_ALL) as $sFriendClass)
  3854. {
  3855. $sFriendTable = self::DBGetTable($sFriendClass);
  3856. $sFriendKey = self::DBGetKey($sFriendClass);
  3857. // skip the current table
  3858. if ($sFriendTable == $sTable) continue;
  3859. $sFindRelatedRec = "SELECT DISTINCT maintable.`$sFriendKey` AS id FROM `$sFriendTable` AS maintable WHERE maintable.`$sFriendKey` IN ($sDeleteKeys)";
  3860. self::DBCheckIntegrity_Check2Delete($sFindRelatedRec, "Cascading deletion of record in friend table `<em>$sTable</em>`", $sFriendClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel, true);
  3861. }
  3862. }
  3863. }
  3864. private static function DBCheckIntegrity_Check2Update($sSelWrongRecs, $sErrorDesc, $sColumn, $sNewValue, $sClass, &$aErrorsAndFixes, &$iNewDelCount, &$aPlannedDel)
  3865. {
  3866. $sRootClass = self::GetRootClass($sClass);
  3867. $sTable = self::DBGetTable($sClass);
  3868. $sKeyField = self::DBGetKey($sClass);
  3869. if (array_key_exists($sTable, $aPlannedDel) && count($aPlannedDel[$sTable]) > 0)
  3870. {
  3871. $sSelWrongRecs .= " AND maintable.`$sKeyField` NOT IN ('".implode("', '", $aPlannedDel[$sTable])."')";
  3872. }
  3873. $aWrongRecords = CMDBSource::QueryToCol($sSelWrongRecs, "id");
  3874. if (count($aWrongRecords) == 0) return;
  3875. if (!array_key_exists($sRootClass, $aErrorsAndFixes)) $aErrorsAndFixes[$sRootClass] = array();
  3876. if (!array_key_exists($sTable, $aErrorsAndFixes[$sRootClass])) $aErrorsAndFixes[$sRootClass][$sTable] = array();
  3877. foreach ($aWrongRecords as $iRecordId)
  3878. {
  3879. if (array_key_exists($iRecordId, $aErrorsAndFixes[$sRootClass][$sTable]))
  3880. {
  3881. switch ($aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action'])
  3882. {
  3883. case 'Delete':
  3884. // No need to update, the record will be deleted!
  3885. break;
  3886. case 'Update':
  3887. // Already planned for an update
  3888. // Add this new update spec to the list
  3889. $bFoundSameSpec = false;
  3890. foreach ($aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action_Details'] as $aUpdateSpec)
  3891. {
  3892. if (($sColumn == $aUpdateSpec['column']) && ($sNewValue == $aUpdateSpec['newvalue']))
  3893. {
  3894. $bFoundSameSpec = true;
  3895. }
  3896. }
  3897. if (!$bFoundSameSpec)
  3898. {
  3899. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action_Details'][] = (array('column' => $sColumn, 'newvalue'=>$sNewValue));
  3900. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Reason'] .= ', '.$sErrorDesc;
  3901. }
  3902. break;
  3903. }
  3904. }
  3905. else
  3906. {
  3907. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Reason'] = $sErrorDesc;
  3908. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action'] = 'Update';
  3909. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Action_Details'] = array(array('column' => $sColumn, 'newvalue'=>$sNewValue));
  3910. $aErrorsAndFixes[$sRootClass][$sTable][$iRecordId]['Pass'] = 123;
  3911. }
  3912. }
  3913. }
  3914. // returns the count of records found for deletion
  3915. public static function DBCheckIntegrity_SinglePass(&$aErrorsAndFixes, &$iNewDelCount, &$aPlannedDel)
  3916. {
  3917. foreach (self::GetClasses() as $sClass)
  3918. {
  3919. if (!self::HasTable($sClass)) continue;
  3920. $sRootClass = self::GetRootClass($sClass);
  3921. $sTable = self::DBGetTable($sClass);
  3922. $sKeyField = self::DBGetKey($sClass);
  3923. if (!self::IsStandaloneClass($sClass))
  3924. {
  3925. if (self::IsRootClass($sClass))
  3926. {
  3927. // Check that the final class field contains the name of a class which inherited from the current class
  3928. //
  3929. $sFinalClassField = self::DBGetClassField($sClass);
  3930. $aAllowedValues = self::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL);
  3931. $sAllowedValues = implode(",", CMDBSource::Quote($aAllowedValues, true));
  3932. $sSelWrongRecs = "SELECT DISTINCT maintable.`$sKeyField` AS id FROM `$sTable` AS maintable WHERE `$sFinalClassField` NOT IN ($sAllowedValues)";
  3933. self::DBCheckIntegrity_Check2Delete($sSelWrongRecs, "final class (field `<em>$sFinalClassField</em>`) is wrong (expected a value in {".$sAllowedValues."})", $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  3934. }
  3935. else
  3936. {
  3937. $sRootTable = self::DBGetTable($sRootClass);
  3938. $sRootKey = self::DBGetKey($sRootClass);
  3939. $sFinalClassField = self::DBGetClassField($sRootClass);
  3940. $aExpectedClasses = self::EnumChildClasses($sClass, ENUM_CHILD_CLASSES_ALL);
  3941. $sExpectedClasses = implode(",", CMDBSource::Quote($aExpectedClasses, true));
  3942. // Check that any record found here has its counterpart in the root table
  3943. // and which refers to a child class
  3944. //
  3945. $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";
  3946. 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);
  3947. // Check that any record found in the root table and referring to a child class
  3948. // has its counterpart here (detect orphan nodes -root or in the middle of the hierarchy)
  3949. //
  3950. $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)";
  3951. 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);
  3952. }
  3953. }
  3954. foreach(self::ListAttributeDefs($sClass) as $sAttCode=>$oAttDef)
  3955. {
  3956. // Skip this attribute if not defined in this table
  3957. if (self::$m_aAttribOrigins[$sClass][$sAttCode] != $sClass) continue;
  3958. if ($oAttDef->IsExternalKey())
  3959. {
  3960. // Check that any external field is pointing to an existing object
  3961. //
  3962. $sRemoteClass = $oAttDef->GetTargetClass();
  3963. $sRemoteTable = self::DBGetTable($sRemoteClass);
  3964. $sRemoteKey = self::DBGetKey($sRemoteClass);
  3965. $aCols = $oAttDef->GetSQLExpressions(); // Workaround a PHP bug: sometimes issuing a Notice if invoking current(somefunc())
  3966. $sExtKeyField = current($aCols); // get the first column for an external key
  3967. // Note: a class/table may have an external key on itself
  3968. $sSelBase = "SELECT DISTINCT maintable.`$sKeyField` AS id, maintable.`$sExtKeyField` AS extkey FROM `$sTable` AS maintable LEFT JOIN `$sRemoteTable` ON maintable.`$sExtKeyField` = `$sRemoteTable`.`$sRemoteKey`";
  3969. $sSelWrongRecs = $sSelBase." WHERE `$sRemoteTable`.`$sRemoteKey` IS NULL";
  3970. if ($oAttDef->IsNullAllowed())
  3971. {
  3972. // Exclude the records pointing to 0/null from the errors
  3973. $sSelWrongRecs .= " AND maintable.`$sExtKeyField` IS NOT NULL";
  3974. $sSelWrongRecs .= " AND maintable.`$sExtKeyField` != 0";
  3975. self::DBCheckIntegrity_Check2Update($sSelWrongRecs, "Record pointing to (external key '<em>$sAttCode</em>') non existing objects", $sExtKeyField, 'null', $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  3976. }
  3977. else
  3978. {
  3979. self::DBCheckIntegrity_Check2Delete($sSelWrongRecs, "Record pointing to (external key '<em>$sAttCode</em>') non existing objects", $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  3980. }
  3981. // Do almost the same, taking into account the records planned for deletion
  3982. if (array_key_exists($sRemoteTable, $aPlannedDel) && count($aPlannedDel[$sRemoteTable]) > 0)
  3983. {
  3984. // This could be done by the mean of a 'OR ... IN (aIgnoreRecords)
  3985. // but in that case you won't be able to track the root cause (cascading)
  3986. $sSelWrongRecs = $sSelBase." WHERE maintable.`$sExtKeyField` IN ('".implode("', '", $aPlannedDel[$sRemoteTable])."')";
  3987. if ($oAttDef->IsNullAllowed())
  3988. {
  3989. // Exclude the records pointing to 0/null from the errors
  3990. $sSelWrongRecs .= " AND maintable.`$sExtKeyField` IS NOT NULL";
  3991. $sSelWrongRecs .= " AND maintable.`$sExtKeyField` != 0";
  3992. self::DBCheckIntegrity_Check2Update($sSelWrongRecs, "Record pointing to (external key '<em>$sAttCode</em>') a record planned for deletion", $sExtKeyField, 'null', $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  3993. }
  3994. else
  3995. {
  3996. self::DBCheckIntegrity_Check2Delete($sSelWrongRecs, "Record pointing to (external key '<em>$sAttCode</em>') a record planned for deletion", $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  3997. }
  3998. }
  3999. }
  4000. else if ($oAttDef->IsDirectField())
  4001. {
  4002. // Check that the values fit the allowed values
  4003. //
  4004. $aAllowedValues = self::GetAllowedValues_att($sClass, $sAttCode);
  4005. if (!is_null($aAllowedValues) && count($aAllowedValues) > 0)
  4006. {
  4007. $sExpectedValues = implode(",", CMDBSource::Quote(array_keys($aAllowedValues), true));
  4008. $aCols = $oAttDef->GetSQLExpressions(); // Workaround a PHP bug: sometimes issuing a Notice if invoking current(somefunc())
  4009. $sMyAttributeField = current($aCols); // get the first column for the moment
  4010. $sDefaultValue = $oAttDef->GetDefaultValue();
  4011. $sSelWrongRecs = "SELECT DISTINCT maintable.`$sKeyField` AS id FROM `$sTable` AS maintable WHERE maintable.`$sMyAttributeField` NOT IN ($sExpectedValues)";
  4012. self::DBCheckIntegrity_Check2Update($sSelWrongRecs, "Record having a column ('<em>$sAttCode</em>') with an unexpected value", $sMyAttributeField, CMDBSource::Quote($sDefaultValue), $sClass, $aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  4013. }
  4014. }
  4015. }
  4016. }
  4017. }
  4018. public static function DBCheckIntegrity($sRepairUrl = "", $sSQLStatementArgName = "")
  4019. {
  4020. // Records in error, and action to be taken: delete or update
  4021. // by RootClass/Table/Record
  4022. $aErrorsAndFixes = array();
  4023. // Records to be ignored in the current/next pass
  4024. // by Table = array of RecordId
  4025. $aPlannedDel = array();
  4026. // Count of errors in the next pass: no error means that we can leave...
  4027. $iErrorCount = 0;
  4028. // Limit in case of a bug in the algorythm
  4029. $iLoopCount = 0;
  4030. $iNewDelCount = 1; // startup...
  4031. while ($iNewDelCount > 0)
  4032. {
  4033. $iNewDelCount = 0;
  4034. self::DBCheckIntegrity_SinglePass($aErrorsAndFixes, $iNewDelCount, $aPlannedDel);
  4035. $iErrorCount += $iNewDelCount;
  4036. // Safety net #1 - limit the planned deletions
  4037. //
  4038. $iMaxDel = 1000;
  4039. $iPlannedDel = 0;
  4040. foreach ($aPlannedDel as $sTable => $aPlannedDelOnTable)
  4041. {
  4042. $iPlannedDel += count($aPlannedDelOnTable);
  4043. }
  4044. if ($iPlannedDel > $iMaxDel)
  4045. {
  4046. throw new CoreWarning("DB Integrity Check safety net - Exceeding the limit of $iMaxDel planned record deletion");
  4047. break;
  4048. }
  4049. // Safety net #2 - limit the iterations
  4050. //
  4051. $iLoopCount++;
  4052. $iMaxLoops = 10;
  4053. if ($iLoopCount > $iMaxLoops)
  4054. {
  4055. throw new CoreWarning("DB Integrity Check safety net - Reached the limit of $iMaxLoops loops");
  4056. break;
  4057. }
  4058. }
  4059. // Display the results
  4060. //
  4061. $iIssueCount = 0;
  4062. $aFixesDelete = array();
  4063. $aFixesUpdate = array();
  4064. foreach ($aErrorsAndFixes as $sRootClass => $aTables)
  4065. {
  4066. foreach ($aTables as $sTable => $aRecords)
  4067. {
  4068. foreach ($aRecords as $iRecord => $aError)
  4069. {
  4070. $sAction = $aError['Action'];
  4071. $sReason = $aError['Reason'];
  4072. $iPass = $aError['Pass'];
  4073. switch ($sAction)
  4074. {
  4075. case 'Delete':
  4076. $sActionDetails = "";
  4077. $aFixesDelete[$sTable][] = $iRecord;
  4078. break;
  4079. case 'Update':
  4080. $aUpdateDesc = array();
  4081. foreach($aError['Action_Details'] as $aUpdateSpec)
  4082. {
  4083. $aUpdateDesc[] = $aUpdateSpec['column']." -&gt; ".$aUpdateSpec['newvalue'];
  4084. $aFixesUpdate[$sTable][$aUpdateSpec['column']][$aUpdateSpec['newvalue']][] = $iRecord;
  4085. }
  4086. $sActionDetails = "Set ".implode(", ", $aUpdateDesc);
  4087. break;
  4088. default:
  4089. $sActionDetails = "bug: unknown action '$sAction'";
  4090. }
  4091. $aIssues[] = "$sRootClass / $sTable / $iRecord / $sReason / $sAction / $sActionDetails";
  4092. $iIssueCount++;
  4093. }
  4094. }
  4095. }
  4096. if ($iIssueCount > 0)
  4097. {
  4098. // Build the queries to fix in the database
  4099. //
  4100. // First step, be able to get class data out of the table name
  4101. // Could be optimized, because we've made the job earlier... but few benefits, so...
  4102. $aTable2ClassProp = array();
  4103. foreach (self::GetClasses() as $sClass)
  4104. {
  4105. if (!self::HasTable($sClass)) continue;
  4106. $sRootClass = self::GetRootClass($sClass);
  4107. $sTable = self::DBGetTable($sClass);
  4108. $sKeyField = self::DBGetKey($sClass);
  4109. $aErrorsAndFixes[$sRootClass][$sTable] = array();
  4110. $aTable2ClassProp[$sTable] = array('rootclass'=>$sRootClass, 'class'=>$sClass, 'keyfield'=>$sKeyField);
  4111. }
  4112. // Second step, build a flat list of SQL queries
  4113. $aSQLFixes = array();
  4114. $iPlannedUpdate = 0;
  4115. foreach ($aFixesUpdate as $sTable => $aColumns)
  4116. {
  4117. foreach ($aColumns as $sColumn => $aNewValues)
  4118. {
  4119. foreach ($aNewValues as $sNewValue => $aRecords)
  4120. {
  4121. $iPlannedUpdate += count($aRecords);
  4122. $sWrongRecords = "'".implode("', '", $aRecords)."'";
  4123. $sKeyField = $aTable2ClassProp[$sTable]['keyfield'];
  4124. $aSQLFixes[] = "UPDATE `$sTable` SET `$sColumn` = $sNewValue WHERE `$sKeyField` IN ($sWrongRecords)";
  4125. }
  4126. }
  4127. }
  4128. $iPlannedDel = 0;
  4129. foreach ($aFixesDelete as $sTable => $aRecords)
  4130. {
  4131. $iPlannedDel += count($aRecords);
  4132. $sWrongRecords = "'".implode("', '", $aRecords)."'";
  4133. $sKeyField = $aTable2ClassProp[$sTable]['keyfield'];
  4134. $aSQLFixes[] = "DELETE FROM `$sTable` WHERE `$sKeyField` IN ($sWrongRecords)";
  4135. }
  4136. // Report the results
  4137. //
  4138. echo "<div style=\"width:100%;padding:10px;background:#FFAAAA;display:;\">";
  4139. echo "<h3>Database corruption error(s): $iErrorCount issues have been encountered. $iPlannedDel records will be deleted, $iPlannedUpdate records will be updated:</h3>\n";
  4140. // #@# later -> this is the responsibility of the caller to format the output
  4141. echo "<ul class=\"treeview\">\n";
  4142. foreach ($aIssues as $sIssueDesc)
  4143. {
  4144. echo "<li>$sIssueDesc</li>\n";
  4145. }
  4146. echo "</ul>\n";
  4147. self::DBShowApplyForm($sRepairUrl, $sSQLStatementArgName, $aSQLFixes);
  4148. echo "<p>Aborting...</p>\n";
  4149. echo "</div>\n";
  4150. exit;
  4151. }
  4152. }
  4153. public static function Startup($config, $bModelOnly = false, $bAllowCache = true, $bTraceSourceFiles = false)
  4154. {
  4155. if (!defined('MODULESROOT'))
  4156. {
  4157. define('MODULESROOT', APPROOT.'env-'.utils::GetCurrentEnvironment().'/');
  4158. self::$m_bTraceSourceFiles = $bTraceSourceFiles;
  4159. // $config can be either a filename, or a Configuration object (volatile!)
  4160. if ($config instanceof Config)
  4161. {
  4162. self::LoadConfig($config, $bAllowCache);
  4163. }
  4164. else
  4165. {
  4166. self::LoadConfig(new Config($config), $bAllowCache);
  4167. }
  4168. if ($bModelOnly) return;
  4169. }
  4170. CMDBSource::SelectDB(self::$m_sDBName);
  4171. foreach(get_declared_classes() as $sPHPClass)
  4172. {
  4173. if (is_subclass_of($sPHPClass, 'ModuleHandlerAPI'))
  4174. {
  4175. $aCallSpec = array($sPHPClass, 'OnMetaModelStarted');
  4176. call_user_func_array($aCallSpec, array());
  4177. }
  4178. }
  4179. if (false)
  4180. {
  4181. echo "Debug<br/>\n";
  4182. self::static_var_dump();
  4183. }
  4184. }
  4185. public static function LoadConfig($oConfiguration, $bAllowCache = false)
  4186. {
  4187. self::$m_oConfig = $oConfiguration;
  4188. // Set log ASAP
  4189. if (self::$m_oConfig->GetLogGlobal())
  4190. {
  4191. if (self::$m_oConfig->GetLogIssue())
  4192. {
  4193. self::$m_bLogIssue = true;
  4194. IssueLog::Enable(APPROOT.'log/error.log');
  4195. }
  4196. self::$m_bLogNotification = self::$m_oConfig->GetLogNotification();
  4197. self::$m_bLogWebService = self::$m_oConfig->GetLogWebService();
  4198. ToolsLog::Enable(APPROOT.'log/tools.log');
  4199. }
  4200. else
  4201. {
  4202. self::$m_bLogIssue = false;
  4203. self::$m_bLogNotification = false;
  4204. self::$m_bLogWebService = false;
  4205. }
  4206. ExecutionKPI::EnableDuration(self::$m_oConfig->Get('log_kpi_duration'));
  4207. ExecutionKPI::EnableMemory(self::$m_oConfig->Get('log_kpi_memory'));
  4208. ExecutionKPI::SetAllowedUser(self::$m_oConfig->Get('log_kpi_user_id'));
  4209. self::$m_bTraceQueries = self::$m_oConfig->GetLogQueries();
  4210. self::$m_bIndentQueries = self::$m_oConfig->Get('query_indentation_enabled');
  4211. self::$m_bQueryCacheEnabled = self::$m_oConfig->GetQueryCacheEnabled();
  4212. self::$m_bOptimizeQueries = self::$m_oConfig->Get('query_optimization_enabled');
  4213. self::$m_bSkipCheckToWrite = self::$m_oConfig->Get('skip_check_to_write');
  4214. self::$m_bSkipCheckExtKeys = self::$m_oConfig->Get('skip_check_ext_keys');
  4215. self::$m_bUseAPCCache = $bAllowCache
  4216. && self::$m_oConfig->Get('apc_cache.enabled')
  4217. && function_exists('apc_fetch')
  4218. && function_exists('apc_store');
  4219. self::$m_iQueryCacheTTL = self::$m_oConfig->Get('apc_cache.query_ttl');
  4220. // PHP timezone first...
  4221. //
  4222. $sPHPTimezone = self::$m_oConfig->Get('timezone');
  4223. if ($sPHPTimezone == '')
  4224. {
  4225. // Leave as is... up to the admin to set a value somewhere...
  4226. //$sPHPTimezone = date_default_timezone_get();
  4227. }
  4228. else
  4229. {
  4230. date_default_timezone_set($sPHPTimezone);
  4231. }
  4232. // Note: load the dictionary as soon as possible, because it might be
  4233. // needed when some error occur
  4234. $sAppIdentity = 'itop-'.MetaModel::GetEnvironmentId();
  4235. $bDictInitializedFromData = false;
  4236. if (!self::$m_bUseAPCCache || !Dict::InCache($sAppIdentity))
  4237. {
  4238. $bDictInitializedFromData = true;
  4239. foreach (self::$m_oConfig->GetDictionaries() as $sModule => $sToInclude)
  4240. {
  4241. self::IncludeModule('dictionaries', $sToInclude);
  4242. }
  4243. }
  4244. // Set the language... after the dictionaries have been loaded!
  4245. Dict::SetDefaultLanguage(self::$m_oConfig->GetDefaultLanguage());
  4246. // Romain: this is the only way I've found to cope with the fact that
  4247. // classes have to be derived from cmdbabstract (to be editable in the UI)
  4248. require_once(APPROOT.'/application/cmdbabstract.class.inc.php');
  4249. foreach (self::$m_oConfig->GetAppModules() as $sModule => $sToInclude)
  4250. {
  4251. self::IncludeModule('application', $sToInclude);
  4252. }
  4253. foreach (self::$m_oConfig->GetDataModels() as $sModule => $sToInclude)
  4254. {
  4255. self::IncludeModule('business', $sToInclude);
  4256. }
  4257. foreach (self::$m_oConfig->GetWebServiceCategories() as $sModule => $sToInclude)
  4258. {
  4259. self::IncludeModule('webservice', $sToInclude);
  4260. }
  4261. foreach (self::$m_oConfig->GetAddons() as $sModule => $sToInclude)
  4262. {
  4263. self::IncludeModule('addons', $sToInclude);
  4264. }
  4265. $sServer = self::$m_oConfig->GetDBHost();
  4266. $sUser = self::$m_oConfig->GetDBUser();
  4267. $sPwd = self::$m_oConfig->GetDBPwd();
  4268. $sSource = self::$m_oConfig->GetDBName();
  4269. $sTablePrefix = self::$m_oConfig->GetDBSubname();
  4270. $sCharacterSet = self::$m_oConfig->GetDBCharacterSet();
  4271. $sCollation = self::$m_oConfig->GetDBCollation();
  4272. if (self::$m_bUseAPCCache)
  4273. {
  4274. $oKPI = new ExecutionKPI();
  4275. // Note: For versions of APC older than 3.0.17, fetch() accepts only one parameter
  4276. //
  4277. $sOqlAPCCacheId = 'itop-'.MetaModel::GetEnvironmentId().'-metamodel';
  4278. $result = apc_fetch($sOqlAPCCacheId);
  4279. if (is_array($result))
  4280. {
  4281. // todo - verifier que toutes les classes mentionnees ici sont chargees dans InitClasses()
  4282. self::$m_aExtensionClasses = $result['m_aExtensionClasses'];
  4283. self::$m_Category2Class = $result['m_Category2Class'];
  4284. self::$m_aRootClasses = $result['m_aRootClasses'];
  4285. self::$m_aParentClasses = $result['m_aParentClasses'];
  4286. self::$m_aChildClasses = $result['m_aChildClasses'];
  4287. self::$m_aClassParams = $result['m_aClassParams'];
  4288. self::$m_aAttribDefs = $result['m_aAttribDefs'];
  4289. self::$m_aAttribOrigins = $result['m_aAttribOrigins'];
  4290. self::$m_aExtKeyFriends = $result['m_aExtKeyFriends'];
  4291. self::$m_aIgnoredAttributes = $result['m_aIgnoredAttributes'];
  4292. self::$m_aFilterDefs = $result['m_aFilterDefs'];
  4293. self::$m_aFilterOrigins = $result['m_aFilterOrigins'];
  4294. self::$m_aListInfos = $result['m_aListInfos'];
  4295. self::$m_aListData = $result['m_aListData'];
  4296. self::$m_aRelationInfos = $result['m_aRelationInfos'];
  4297. self::$m_aStates = $result['m_aStates'];
  4298. self::$m_aStimuli = $result['m_aStimuli'];
  4299. self::$m_aTransitions = $result['m_aTransitions'];
  4300. }
  4301. $oKPI->ComputeAndReport('Metamodel APC (fetch + read)');
  4302. }
  4303. if (count(self::$m_aAttribDefs) == 0)
  4304. {
  4305. // The includes have been included, let's browse the existing classes and
  4306. // develop some data based on the proposed model
  4307. $oKPI = new ExecutionKPI();
  4308. self::InitClasses($sTablePrefix);
  4309. $oKPI->ComputeAndReport('Initialization of Data model structures');
  4310. if (self::$m_bUseAPCCache)
  4311. {
  4312. $oKPI = new ExecutionKPI();
  4313. $aCache = array();
  4314. $aCache['m_aExtensionClasses'] = self::$m_aExtensionClasses;
  4315. $aCache['m_Category2Class'] = self::$m_Category2Class;
  4316. $aCache['m_aRootClasses'] = self::$m_aRootClasses; // array of "classname" => "rootclass"
  4317. $aCache['m_aParentClasses'] = self::$m_aParentClasses; // array of ("classname" => array of "parentclass")
  4318. $aCache['m_aChildClasses'] = self::$m_aChildClasses; // array of ("classname" => array of "childclass")
  4319. $aCache['m_aClassParams'] = self::$m_aClassParams; // array of ("classname" => array of class information)
  4320. $aCache['m_aAttribDefs'] = self::$m_aAttribDefs; // array of ("classname" => array of attributes)
  4321. $aCache['m_aAttribOrigins'] = self::$m_aAttribOrigins; // array of ("classname" => array of ("attcode"=>"sourceclass"))
  4322. $aCache['m_aExtKeyFriends'] = self::$m_aExtKeyFriends; // array of ("classname" => array of ("indirect ext key attcode"=> array of ("relative ext field")))
  4323. $aCache['m_aIgnoredAttributes'] = self::$m_aIgnoredAttributes; //array of ("classname" => array of ("attcode")
  4324. $aCache['m_aFilterDefs'] = self::$m_aFilterDefs; // array of ("classname" => array filterdef)
  4325. $aCache['m_aFilterOrigins'] = self::$m_aFilterOrigins; // array of ("classname" => array of ("attcode"=>"sourceclass"))
  4326. $aCache['m_aListInfos'] = self::$m_aListInfos; // array of ("listcode" => various info on the list, common to every classes)
  4327. $aCache['m_aListData'] = self::$m_aListData; // array of ("classname" => array of "listcode" => list)
  4328. $aCache['m_aRelationInfos'] = self::$m_aRelationInfos; // array of ("relcode" => various info on the list, common to every classes)
  4329. $aCache['m_aStates'] = self::$m_aStates; // array of ("classname" => array of "statecode"=>array('label'=>..., attribute_inherit=> attribute_list=>...))
  4330. $aCache['m_aStimuli'] = self::$m_aStimuli; // array of ("classname" => array of ("stimuluscode"=>array('label'=>...)))
  4331. $aCache['m_aTransitions'] = self::$m_aTransitions; // array of ("classname" => array of ("statcode_from"=>array of ("stimuluscode" => array('target_state'=>..., 'actions'=>array of handlers procs, 'user_restriction'=>TBD)))
  4332. apc_store($sOqlAPCCacheId, $aCache);
  4333. $oKPI->ComputeAndReport('Metamodel APC (store)');
  4334. }
  4335. }
  4336. if (self::$m_bUseAPCCache && $bDictInitializedFromData)
  4337. {
  4338. Dict::InitCache($sAppIdentity);
  4339. }
  4340. self::$m_sDBName = $sSource;
  4341. self::$m_sTablePrefix = $sTablePrefix;
  4342. CMDBSource::Init($sServer, $sUser, $sPwd); // do not select the DB (could not exist)
  4343. CMDBSource::SetCharacterSet($sCharacterSet, $sCollation);
  4344. // Later when timezone implementation is correctly done: CMDBSource::SetTimezone($sDBTimezone);
  4345. }
  4346. public static function GetModuleSetting($sModule, $sProperty, $defaultvalue = null)
  4347. {
  4348. return self::$m_oConfig->GetModuleSetting($sModule, $sProperty, $defaultvalue);
  4349. }
  4350. public static function GetConfig()
  4351. {
  4352. return self::$m_oConfig;
  4353. }
  4354. public static function GetEnvironmentId()
  4355. {
  4356. return md5(APPROOT).'-'.utils::GetCurrentEnvironment();
  4357. }
  4358. protected static $m_aExtensionClasses = array();
  4359. protected static function IncludeModule($sModuleType, $sToInclude)
  4360. {
  4361. $sFirstChar = substr($sToInclude, 0, 1);
  4362. $sSecondChar = substr($sToInclude, 1, 1);
  4363. if (($sFirstChar != '/') && ($sFirstChar != '\\') && ($sSecondChar != ':'))
  4364. {
  4365. // It is a relative path, prepend APPROOT
  4366. if (substr($sToInclude, 0, 3) == '../')
  4367. {
  4368. // Preserve compatibility with config files written before 1.0.1
  4369. // Replace '../' by '<root>/'
  4370. $sFile = APPROOT.'/'.substr($sToInclude, 3);
  4371. }
  4372. else
  4373. {
  4374. $sFile = APPROOT.'/'.$sToInclude;
  4375. }
  4376. }
  4377. else
  4378. {
  4379. // Leave as is - should be an absolute path
  4380. $sFile = $sToInclude;
  4381. }
  4382. if (!file_exists($sFile))
  4383. {
  4384. $sConfigFile = self::$m_oConfig->GetLoadedFile();
  4385. throw new CoreException('Wrong filename in configuration file', array('file' => $sConfigFile, 'module' => $sModuleType, 'filename' => $sFile));
  4386. }
  4387. // Note: We do not expect the modules to output characters while loading them.
  4388. // Therefore, and because unexpected characters can corrupt the output,
  4389. // they must be trashed here.
  4390. // Additionnaly, pages aiming at delivering data in their output can call WebPage::TrashUnexpectedOutput()
  4391. // to get rid of chars that could be generated during the execution of the code
  4392. ob_start();
  4393. require_once($sFile);
  4394. $sPreviousContent = ob_get_clean();
  4395. if (self::$m_oConfig->Get('debug_report_spurious_chars'))
  4396. {
  4397. if ($sPreviousContent != '')
  4398. {
  4399. IssueLog::Error("Spurious characters injected by $sModuleType/$sToInclude");
  4400. }
  4401. }
  4402. }
  4403. // Building an object
  4404. //
  4405. //
  4406. private static $aQueryCacheGetObject = array();
  4407. private static $aQueryCacheGetObjectHits = array();
  4408. public static function GetQueryCacheStatus()
  4409. {
  4410. $aRes = array();
  4411. $iTotalHits = 0;
  4412. foreach(self::$aQueryCacheGetObjectHits as $sClassSign => $iHits)
  4413. {
  4414. $aRes[] = "$sClassSign: $iHits";
  4415. $iTotalHits += $iHits;
  4416. }
  4417. return $iTotalHits.' ('.implode(', ', $aRes).')';
  4418. }
  4419. public static function MakeSingleRow($sClass, $iKey, $bMustBeFound = true, $bAllowAllData = false, $aModifierProperties = null)
  4420. {
  4421. // Build the query cache signature
  4422. //
  4423. $sQuerySign = $sClass;
  4424. if($bAllowAllData)
  4425. {
  4426. $sQuerySign .= '_all_';
  4427. }
  4428. if (count($aModifierProperties))
  4429. {
  4430. array_multisort($aModifierProperties);
  4431. $sModifierProperties = json_encode($aModifierProperties);
  4432. $sQuerySign .= '_all_'.md5($sModifierProperties);
  4433. }
  4434. if (!array_key_exists($sQuerySign, self::$aQueryCacheGetObject))
  4435. {
  4436. // NOTE: Quick and VERY dirty caching mechanism which relies on
  4437. // the fact that the string '987654321' will never appear in the
  4438. // standard query
  4439. // This could be simplified a little, relying solely on the query cache,
  4440. // but this would slow down -by how much time?- the application
  4441. $oFilter = new DBObjectSearch($sClass);
  4442. $oFilter->AddCondition('id', 987654321, '=');
  4443. if ($aModifierProperties)
  4444. {
  4445. foreach ($aModifierProperties as $sPluginClass => $aProperties)
  4446. {
  4447. foreach ($aProperties as $sProperty => $value)
  4448. {
  4449. $oFilter->SetModifierProperty($sPluginClass, $sProperty, $value);
  4450. }
  4451. }
  4452. }
  4453. if ($bAllowAllData)
  4454. {
  4455. $oFilter->AllowAllData();
  4456. }
  4457. $sSQL = self::MakeSelectQuery($oFilter);
  4458. self::$aQueryCacheGetObject[$sQuerySign] = $sSQL;
  4459. self::$aQueryCacheGetObjectHits[$sQuerySign] = 0;
  4460. }
  4461. else
  4462. {
  4463. $sSQL = self::$aQueryCacheGetObject[$sQuerySign];
  4464. self::$aQueryCacheGetObjectHits[$sQuerySign] += 1;
  4465. // echo " -load $sClass/$iKey- ".self::$aQueryCacheGetObjectHits[$sQuerySign]."<br/>\n";
  4466. }
  4467. $sSQL = str_replace(CMDBSource::Quote(987654321), CMDBSource::Quote($iKey), $sSQL);
  4468. $res = CMDBSource::Query($sSQL);
  4469. $aRow = CMDBSource::FetchArray($res);
  4470. CMDBSource::FreeResult($res);
  4471. if ($bMustBeFound && empty($aRow))
  4472. {
  4473. throw new CoreException("No result for the single row query: '$sSQL'");
  4474. }
  4475. return $aRow;
  4476. }
  4477. public static function GetObjectByRow($sClass, $aRow, $sClassAlias = '', $aAttToLoad = null, $aExtendedDataSpec = null)
  4478. {
  4479. self::_check_subclass($sClass);
  4480. if (strlen($sClassAlias) == 0)
  4481. {
  4482. $sClassAlias = $sClass;
  4483. }
  4484. // Compound objects: if available, get the final object class
  4485. //
  4486. if (!array_key_exists($sClassAlias."finalclass", $aRow))
  4487. {
  4488. // Either this is a bug (forgot to specify a root class with a finalclass field
  4489. // Or this is the expected behavior, because the object is not made of several tables
  4490. }
  4491. elseif (empty($aRow[$sClassAlias."finalclass"]))
  4492. {
  4493. // The data is missing in the DB
  4494. // @#@ possible improvement: check that the class is valid !
  4495. $sRootClass = self::GetRootClass($sClass);
  4496. $sFinalClassField = self::DBGetClassField($sRootClass);
  4497. throw new CoreException("Empty class name for object $sClass::{$aRow["id"]} (root class '$sRootClass', field '{$sFinalClassField}' is empty)");
  4498. }
  4499. else
  4500. {
  4501. // do the job for the real target class
  4502. $sClass = $aRow[$sClassAlias."finalclass"];
  4503. }
  4504. return new $sClass($aRow, $sClassAlias, $aAttToLoad, $aExtendedDataSpec);
  4505. }
  4506. public static function GetObject($sClass, $iKey, $bMustBeFound = true, $bAllowAllData = false, $aModifierProperties = null)
  4507. {
  4508. self::_check_subclass($sClass);
  4509. $aRow = self::MakeSingleRow($sClass, $iKey, $bMustBeFound, $bAllowAllData, $aModifierProperties);
  4510. if (empty($aRow))
  4511. {
  4512. return null;
  4513. }
  4514. return self::GetObjectByRow($sClass, $aRow);
  4515. }
  4516. public static function GetObjectByName($sClass, $sName, $bMustBeFound = true)
  4517. {
  4518. self::_check_subclass($sClass);
  4519. $oObjSearch = new DBObjectSearch($sClass);
  4520. $oObjSearch->AddNameCondition($sName);
  4521. $oSet = new DBObjectSet($oObjSearch);
  4522. if ($oSet->Count() != 1)
  4523. {
  4524. if ($bMustBeFound) throw new CoreException('Failed to get an object by its name', array('class'=>$sClass, 'name'=>$sName));
  4525. return null;
  4526. }
  4527. $oObj = $oSet->fetch();
  4528. return $oObj;
  4529. }
  4530. static protected $m_aCacheObjectByColumn = array();
  4531. public static function GetObjectByColumn($sClass, $sAttCode, $value, $bMustBeFoundUnique = true)
  4532. {
  4533. if (!isset(self::$m_aCacheObjectByColumn[$sClass][$sAttCode][$value]))
  4534. {
  4535. self::_check_subclass($sClass);
  4536. $oObjSearch = new DBObjectSearch($sClass);
  4537. $oObjSearch->AddCondition($sAttCode, $value, '=');
  4538. $oSet = new DBObjectSet($oObjSearch);
  4539. if ($oSet->Count() == 1)
  4540. {
  4541. self::$m_aCacheObjectByColumn[$sClass][$sAttCode][$value] = $oSet->fetch();
  4542. }
  4543. else
  4544. {
  4545. if ($bMustBeFoundUnique) throw new CoreException('Failed to get an object by column', array('class'=>$sClass, 'attcode'=>$sAttCode, 'value'=>$value, 'matches' => $oSet->Count()));
  4546. self::$m_aCacheObjectByColumn[$sClass][$sAttCode][$value] = null;
  4547. }
  4548. }
  4549. return self::$m_aCacheObjectByColumn[$sClass][$sAttCode][$value];
  4550. }
  4551. public static function GetObjectFromOQL($sQuery, $aParams = null, $bAllowAllData = false)
  4552. {
  4553. $oFilter = DBObjectSearch::FromOQL($sQuery, $aParams);
  4554. if ($bAllowAllData)
  4555. {
  4556. $oFilter->AllowAllData();
  4557. }
  4558. $oSet = new DBObjectSet($oFilter);
  4559. $oObject = $oSet->Fetch();
  4560. return $oObject;
  4561. }
  4562. public static function GetHyperLink($sTargetClass, $iKey)
  4563. {
  4564. if ($iKey < 0)
  4565. {
  4566. return "$sTargetClass: $iKey (invalid value)";
  4567. }
  4568. $oObj = self::GetObject($sTargetClass, $iKey, false);
  4569. if (is_null($oObj))
  4570. {
  4571. // Whatever we are looking for, the root class is the key to search for
  4572. $sRootClass = self::GetRootClass($sTargetClass);
  4573. $oSearch = DBObjectSearch::FromOQL('SELECT CMDBChangeOpDelete WHERE objclass = :objclass AND objkey = :objkey', array('objclass' => $sRootClass, 'objkey' => $iKey));
  4574. $oSet = new DBObjectSet($oSearch);
  4575. $oRecord = $oSet->Fetch();
  4576. // An empty fname is obtained with iTop < 2.0
  4577. if (is_null($oRecord) || (strlen(trim($oRecord->Get('fname'))) == 0))
  4578. {
  4579. $sName = Dict::Format('Core:UnknownObjectLabel', $sTargetClass, $iKey);
  4580. $sTitle = Dict::S('Core:UnknownObjectTip');
  4581. }
  4582. else
  4583. {
  4584. $sName = $oRecord->Get('fname');
  4585. $sTitle = Dict::Format('Core:DeletedObjectTip', $oRecord->Get('date'), $oRecord->Get('userinfo'));
  4586. }
  4587. return '<span class="itop-deleted-object" title="'.htmlentities($sTitle, ENT_QUOTES, 'UTF-8').'">'.htmlentities($sName, ENT_QUOTES, 'UTF-8').'</span>';
  4588. }
  4589. return $oObj->GetHyperLink();
  4590. }
  4591. public static function NewObject($sClass)
  4592. {
  4593. self::_check_subclass($sClass);
  4594. return new $sClass();
  4595. }
  4596. public static function GetNextKey($sClass)
  4597. {
  4598. $sRootClass = MetaModel::GetRootClass($sClass);
  4599. $sRootTable = MetaModel::DBGetTable($sRootClass);
  4600. $iNextKey = CMDBSource::GetNextInsertId($sRootTable);
  4601. return $iNextKey;
  4602. }
  4603. /**
  4604. * Deletion of records, bypassing DBObject::DBDelete !!!
  4605. * It is NOT recommended to use this shortcut
  4606. * In particular, it will not work
  4607. * - if the class is not a final class
  4608. * - if the class has a hierarchical key (need to rebuild the indexes)
  4609. * - if the class overload DBDelete !
  4610. * Todo: protect it against forbidden usages (in such a case, delete objects one by one)
  4611. */
  4612. public static function BulkDelete(DBObjectSearch $oFilter)
  4613. {
  4614. $sSQL = self::MakeDeleteQuery($oFilter);
  4615. if (!self::DBIsReadOnly())
  4616. {
  4617. CMDBSource::Query($sSQL);
  4618. }
  4619. }
  4620. public static function BulkUpdate(DBObjectSearch $oFilter, array $aValues)
  4621. {
  4622. // $aValues is an array of $sAttCode => $value
  4623. $sSQL = self::MakeUpdateQuery($oFilter, $aValues);
  4624. if (!self::DBIsReadOnly())
  4625. {
  4626. CMDBSource::Query($sSQL);
  4627. }
  4628. }
  4629. /**
  4630. * Helper to remove selected objects without calling any handler
  4631. * Surpasses BulkDelete as it can handle abstract classes, but has the other limitation as it bypasses standard objects handlers
  4632. *
  4633. * @param string $oFilter Scope of objects to wipe out
  4634. * @return The count of deleted objects
  4635. */
  4636. public static function PurgeData($oFilter)
  4637. {
  4638. $sTargetClass = $oFilter->GetClass();
  4639. $oSet = new DBObjectSet($oFilter);
  4640. $oSet->OptimizeColumnLoad(array($sTargetClass => array('finalclass')));
  4641. $aIdToClass = $oSet->GetColumnAsArray('finalclass', true);
  4642. $aIds = array_keys($aIdToClass);
  4643. if (count($aIds) > 0)
  4644. {
  4645. $aQuotedIds = CMDBSource::Quote($aIds);
  4646. $sIdList = implode(',', $aQuotedIds);
  4647. $aTargetClasses = array_merge(
  4648. self::EnumChildClasses($sTargetClass, ENUM_CHILD_CLASSES_ALL),
  4649. self::EnumParentClasses($sTargetClass, ENUM_PARENT_CLASSES_EXCLUDELEAF)
  4650. );
  4651. foreach ($aTargetClasses as $sSomeClass)
  4652. {
  4653. $sTable = MetaModel::DBGetTable($sSomeClass);
  4654. $sPKField = MetaModel::DBGetKey($sSomeClass);
  4655. $sDeleteSQL = "DELETE FROM `$sTable` WHERE `$sPKField` IN ($sIdList)";
  4656. CMDBSource::DeleteFrom($sDeleteSQL);
  4657. }
  4658. }
  4659. return count($aIds);
  4660. }
  4661. // Links
  4662. //
  4663. //
  4664. public static function EnumReferencedClasses($sClass)
  4665. {
  4666. self::_check_subclass($sClass);
  4667. // 1-N links (referenced by my class), returns an array of sAttCode=>sClass
  4668. $aResult = array();
  4669. foreach(self::$m_aAttribDefs[$sClass] as $sAttCode=>$oAttDef)
  4670. {
  4671. if ($oAttDef->IsExternalKey())
  4672. {
  4673. $aResult[$sAttCode] = $oAttDef->GetTargetClass();
  4674. }
  4675. }
  4676. return $aResult;
  4677. }
  4678. public static function EnumReferencingClasses($sClass, $bSkipLinkingClasses = false, $bInnerJoinsOnly = false)
  4679. {
  4680. self::_check_subclass($sClass);
  4681. if ($bSkipLinkingClasses)
  4682. {
  4683. $aLinksClasses = self::EnumLinksClasses();
  4684. }
  4685. // 1-N links (referencing my class), array of sClass => array of sAttcode
  4686. $aResult = array();
  4687. foreach (self::$m_aAttribDefs as $sSomeClass=>$aClassAttributes)
  4688. {
  4689. if ($bSkipLinkingClasses && in_array($sSomeClass, $aLinksClasses)) continue;
  4690. $aExtKeys = array();
  4691. foreach ($aClassAttributes as $sAttCode=>$oAttDef)
  4692. {
  4693. if (self::$m_aAttribOrigins[$sSomeClass][$sAttCode] != $sSomeClass) continue;
  4694. if ($oAttDef->IsExternalKey() && (self::IsParentClass($oAttDef->GetTargetClass(), $sClass)))
  4695. {
  4696. if ($bInnerJoinsOnly && $oAttDef->IsNullAllowed()) continue;
  4697. // Ok, I want this one
  4698. $aExtKeys[$sAttCode] = $oAttDef;
  4699. }
  4700. }
  4701. if (count($aExtKeys) != 0)
  4702. {
  4703. $aResult[$sSomeClass] = $aExtKeys;
  4704. }
  4705. }
  4706. return $aResult;
  4707. }
  4708. /**
  4709. * It is not recommended to use this function: call GetLinkClasses instead
  4710. * Return classes having at least to external keys (thus too many classes as compared to GetLinkClasses)
  4711. * The only difference with EnumLinkingClasses is the output format
  4712. */
  4713. public static function EnumLinksClasses()
  4714. {
  4715. // Returns a flat array of classes having at least two external keys
  4716. $aResult = array();
  4717. foreach (self::$m_aAttribDefs as $sSomeClass=>$aClassAttributes)
  4718. {
  4719. $iExtKeyCount = 0;
  4720. foreach ($aClassAttributes as $sAttCode=>$oAttDef)
  4721. {
  4722. if (self::$m_aAttribOrigins[$sSomeClass][$sAttCode] != $sSomeClass) continue;
  4723. if ($oAttDef->IsExternalKey())
  4724. {
  4725. $iExtKeyCount++;
  4726. }
  4727. }
  4728. if ($iExtKeyCount >= 2)
  4729. {
  4730. $aResult[] = $sSomeClass;
  4731. }
  4732. }
  4733. return $aResult;
  4734. }
  4735. /**
  4736. * It is not recommended to use this function: call GetLinkClasses instead
  4737. * Return classes having at least to external keys (thus too many classes as compared to GetLinkClasses)
  4738. * The only difference with EnumLinksClasses is the output format
  4739. */
  4740. public static function EnumLinkingClasses($sClass = "")
  4741. {
  4742. // N-N links, array of sLinkClass => (array of sAttCode=>sClass)
  4743. $aResult = array();
  4744. foreach (self::EnumLinksClasses() as $sSomeClass)
  4745. {
  4746. $aTargets = array();
  4747. $bFoundClass = false;
  4748. foreach (self::ListAttributeDefs($sSomeClass) as $sAttCode=>$oAttDef)
  4749. {
  4750. if (self::$m_aAttribOrigins[$sSomeClass][$sAttCode] != $sSomeClass) continue;
  4751. if ($oAttDef->IsExternalKey())
  4752. {
  4753. $sRemoteClass = $oAttDef->GetTargetClass();
  4754. if (empty($sClass))
  4755. {
  4756. $aTargets[$sAttCode] = $sRemoteClass;
  4757. }
  4758. elseif ($sClass == $sRemoteClass)
  4759. {
  4760. $bFoundClass = true;
  4761. }
  4762. else
  4763. {
  4764. $aTargets[$sAttCode] = $sRemoteClass;
  4765. }
  4766. }
  4767. }
  4768. if (empty($sClass) || $bFoundClass)
  4769. {
  4770. $aResult[$sSomeClass] = $aTargets;
  4771. }
  4772. }
  4773. return $aResult;
  4774. }
  4775. /**
  4776. * This function has two siblings that will be soon deprecated:
  4777. * EnumLinkingClasses and EnumLinkClasses
  4778. *
  4779. * Using GetLinkClasses is the recommended way to determine if a class is
  4780. * actually an N-N relation because it is based on the decision made by the
  4781. * designer the data model
  4782. */
  4783. public static function GetLinkClasses()
  4784. {
  4785. $aRet = array();
  4786. foreach(self::GetClasses() as $sClass)
  4787. {
  4788. if (isset(self::$m_aClassParams[$sClass]["is_link"]))
  4789. {
  4790. if (self::$m_aClassParams[$sClass]["is_link"])
  4791. {
  4792. $aExtKeys = array();
  4793. foreach (self::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
  4794. {
  4795. if ($oAttDef->IsExternalKey())
  4796. {
  4797. $aExtKeys[$sAttCode] = $oAttDef->GetTargetClass();
  4798. }
  4799. }
  4800. $aRet[$sClass] = $aExtKeys;
  4801. }
  4802. }
  4803. }
  4804. return $aRet;
  4805. }
  4806. public static function GetLinkLabel($sLinkClass, $sAttCode)
  4807. {
  4808. self::_check_subclass($sLinkClass);
  4809. // e.g. "supported by" (later: $this->GetLinkLabel(), computed on link data!)
  4810. return self::GetLabel($sLinkClass, $sAttCode);
  4811. }
  4812. /**
  4813. * Replaces all the parameters by the values passed in the hash array
  4814. */
  4815. static public function ApplyParams($aInput, $aParams)
  4816. {
  4817. // Declare magic parameters
  4818. $aParams['APP_URL'] = utils::GetAbsoluteUrlAppRoot();
  4819. $aParams['MODULES_URL'] = utils::GetAbsoluteUrlModulesRoot();
  4820. $aSearches = array();
  4821. $aReplacements = array();
  4822. foreach($aParams as $sSearch => $replace)
  4823. {
  4824. // Some environment parameters are objects, we just need scalars
  4825. if (is_object($replace)) continue;
  4826. $aSearches[] = '$'.$sSearch.'$';
  4827. $aReplacements[] = (string) $replace;
  4828. }
  4829. return str_replace($aSearches, $aReplacements, $aInput);
  4830. }
  4831. /**
  4832. * Returns an array of classes=>instance implementing the given interface
  4833. */
  4834. public static function EnumPlugins($sInterface)
  4835. {
  4836. if (array_key_exists($sInterface, self::$m_aExtensionClasses))
  4837. {
  4838. return self::$m_aExtensionClasses[$sInterface];
  4839. }
  4840. else
  4841. {
  4842. return array();
  4843. }
  4844. }
  4845. /**
  4846. * Returns the instance of the specified plug-ins for the given interface
  4847. */
  4848. public static function GetPlugins($sInterface, $sClassName)
  4849. {
  4850. $oInstance = null;
  4851. if (array_key_exists($sInterface, self::$m_aExtensionClasses))
  4852. {
  4853. if (array_key_exists($sClassName, self::$m_aExtensionClasses[$sInterface]))
  4854. {
  4855. return self::$m_aExtensionClasses[$sInterface][$sClassName];
  4856. }
  4857. }
  4858. return $oInstance;
  4859. }
  4860. public static function GetCacheEntries($sEnvironment = null)
  4861. {
  4862. if (!function_exists('apc_cache_info')) return array();
  4863. if (is_null($sEnvironment))
  4864. {
  4865. $sEnvironment = MetaModel::GetEnvironmentId();
  4866. }
  4867. $aEntries = array();
  4868. if (extension_loaded('apcu'))
  4869. {
  4870. // Beware: APCu behaves slightly differently from APC !!
  4871. $aCacheUserData = @apc_cache_info();
  4872. }
  4873. else
  4874. {
  4875. $aCacheUserData = @apc_cache_info('user');
  4876. }
  4877. if (is_array($aCacheUserData) && isset($aCacheUserData['cache_list']))
  4878. {
  4879. $sPrefix = 'itop-'.$sEnvironment.'-';
  4880. foreach($aCacheUserData['cache_list'] as $i => $aEntry)
  4881. {
  4882. $sEntryKey = array_key_exists('info', $aEntry) ? $aEntry['info'] : $aEntry['key'];
  4883. if (strpos($sEntryKey, $sPrefix) === 0)
  4884. {
  4885. $sCleanKey = substr($sEntryKey, strlen($sPrefix));
  4886. $aEntries[$sCleanKey] = $aEntry;
  4887. $aEntries[$sCleanKey]['info'] = $sEntryKey;
  4888. }
  4889. }
  4890. }
  4891. return $aEntries;
  4892. }
  4893. public static function ResetCache($sEnvironmentId = null)
  4894. {
  4895. if (!function_exists('apc_delete')) return;
  4896. if (is_null($sEnvironmentId))
  4897. {
  4898. $sEnvironmentId = MetaModel::GetEnvironmentId();
  4899. }
  4900. $sAppIdentity = 'itop-'.$sEnvironmentId;
  4901. Dict::ResetCache($sAppIdentity);
  4902. foreach(self::GetCacheEntries($sEnvironmentId) as $sKey => $aAPCInfo)
  4903. {
  4904. $sAPCKey = $aAPCInfo['info'];
  4905. apc_delete($sAPCKey);
  4906. }
  4907. }
  4908. } // class MetaModel
  4909. // Standard attribute lists
  4910. MetaModel::RegisterZList("noneditable", array("description"=>"non editable fields", "type"=>"attributes"));
  4911. MetaModel::RegisterZList("details", array("description"=>"All attributes to be displayed for the 'details' of an object", "type"=>"attributes"));
  4912. MetaModel::RegisterZList("list", array("description"=>"All attributes to be displayed for a list of objects", "type"=>"attributes"));
  4913. MetaModel::RegisterZList("preview", array("description"=>"All attributes visible in preview mode", "type"=>"attributes"));
  4914. MetaModel::RegisterZList("standard_search", array("description"=>"List of criteria for the standard search", "type"=>"filters"));
  4915. MetaModel::RegisterZList("advanced_search", array("description"=>"List of criteria for the advanced search", "type"=>"filters"));
  4916. ?>