metamodel.class.php 186 KB

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