metamodel.class.php 190 KB

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