php_reflection.c 191 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Timm Friebe <thekid@thekid.de> |
  16. | George Schlossnagle <george@omniti.com> |
  17. | Andrei Zmievski <andrei@gravitonic.com> |
  18. | Marcus Boerger <helly@php.net> |
  19. | Johannes Schlueter <johannes@php.net> |
  20. +----------------------------------------------------------------------+
  21. */
  22. /* $Id$ */
  23. #ifdef HAVE_CONFIG_H
  24. #include "config.h"
  25. #endif
  26. #include "php.h"
  27. #include "php_ini.h"
  28. #include "php_reflection.h"
  29. #include "ext/standard/info.h"
  30. #include "zend.h"
  31. #include "zend_API.h"
  32. #include "zend_exceptions.h"
  33. #include "zend_operators.h"
  34. #include "zend_constants.h"
  35. #include "zend_ini.h"
  36. #include "zend_interfaces.h"
  37. #include "zend_closures.h"
  38. #include "zend_extensions.h"
  39. #define reflection_update_property(object, name, value) do { \
  40. zval *member; \
  41. MAKE_STD_ZVAL(member); \
  42. ZVAL_STRINGL(member, name, sizeof(name)-1, 1); \
  43. zend_std_write_property(object, member, value, NULL TSRMLS_CC); \
  44. Z_DELREF_P(value); \
  45. zval_ptr_dtor(&member); \
  46. } while (0)
  47. /* Class entry pointers */
  48. PHPAPI zend_class_entry *reflector_ptr;
  49. PHPAPI zend_class_entry *reflection_exception_ptr;
  50. PHPAPI zend_class_entry *reflection_ptr;
  51. PHPAPI zend_class_entry *reflection_function_abstract_ptr;
  52. PHPAPI zend_class_entry *reflection_function_ptr;
  53. PHPAPI zend_class_entry *reflection_parameter_ptr;
  54. PHPAPI zend_class_entry *reflection_class_ptr;
  55. PHPAPI zend_class_entry *reflection_object_ptr;
  56. PHPAPI zend_class_entry *reflection_method_ptr;
  57. PHPAPI zend_class_entry *reflection_property_ptr;
  58. PHPAPI zend_class_entry *reflection_extension_ptr;
  59. PHPAPI zend_class_entry *reflection_zend_extension_ptr;
  60. #if MBO_0
  61. ZEND_BEGIN_MODULE_GLOBALS(reflection)
  62. int dummy;
  63. ZEND_END_MODULE_GLOBALS(reflection)
  64. #ifdef ZTS
  65. # define REFLECTION_G(v) \
  66. TSRMG(reflection_globals_id, zend_reflection_globals*, v)
  67. extern int reflection_globals_id;
  68. #else
  69. # define REFLECTION_G(v) (reflection_globals.v)
  70. extern zend_reflection_globals reflectionglobals;
  71. #endif
  72. ZEND_DECLARE_MODULE_GLOBALS(reflection)
  73. #endif /* MBO_0 */
  74. /* Method macros */
  75. #define METHOD_NOTSTATIC(ce) \
  76. if (!this_ptr || !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { \
  77. php_error_docref(NULL TSRMLS_CC, E_ERROR, "%s() cannot be called statically", get_active_function_name(TSRMLS_C)); \
  78. return; \
  79. } \
  80. /* Exception throwing macro */
  81. #define _DO_THROW(msg) \
  82. zend_throw_exception(reflection_exception_ptr, msg, 0 TSRMLS_CC); \
  83. return; \
  84. #define RETURN_ON_EXCEPTION \
  85. if (EG(exception) && Z_OBJCE_P(EG(exception)) == reflection_exception_ptr) { \
  86. return; \
  87. }
  88. #define GET_REFLECTION_OBJECT_PTR(target) \
  89. intern = (reflection_object *) zend_object_store_get_object(getThis() TSRMLS_CC); \
  90. if (intern == NULL || intern->ptr == NULL) { \
  91. RETURN_ON_EXCEPTION \
  92. php_error_docref(NULL TSRMLS_CC, E_ERROR, "Internal error: Failed to retrieve the reflection object"); \
  93. } \
  94. target = intern->ptr; \
  95. /* Class constants */
  96. #define REGISTER_REFLECTION_CLASS_CONST_LONG(class_name, const_name, value) \
  97. zend_declare_class_constant_long(reflection_ ## class_name ## _ptr, const_name, sizeof(const_name)-1, (long)value TSRMLS_CC);
  98. /* {{{ Smart string functions */
  99. typedef struct _string {
  100. char *string;
  101. int len;
  102. int alloced;
  103. } string;
  104. static void string_init(string *str)
  105. {
  106. str->string = (char *) emalloc(1024);
  107. str->len = 1;
  108. str->alloced = 1024;
  109. *str->string = '\0';
  110. }
  111. static string *string_printf(string *str, const char *format, ...)
  112. {
  113. int len;
  114. va_list arg;
  115. char *s_tmp;
  116. va_start(arg, format);
  117. len = zend_vspprintf(&s_tmp, 0, format, arg);
  118. if (len) {
  119. register int nlen = (str->len + len + (1024 - 1)) & ~(1024 - 1);
  120. if (str->alloced < nlen) {
  121. str->alloced = nlen;
  122. str->string = erealloc(str->string, str->alloced);
  123. }
  124. memcpy(str->string + str->len - 1, s_tmp, len + 1);
  125. str->len += len;
  126. }
  127. efree(s_tmp);
  128. va_end(arg);
  129. return str;
  130. }
  131. static string *string_write(string *str, char *buf, int len)
  132. {
  133. register int nlen = (str->len + len + (1024 - 1)) & ~(1024 - 1);
  134. if (str->alloced < nlen) {
  135. str->alloced = nlen;
  136. str->string = erealloc(str->string, str->alloced);
  137. }
  138. memcpy(str->string + str->len - 1, buf, len);
  139. str->len += len;
  140. str->string[str->len - 1] = '\0';
  141. return str;
  142. }
  143. static string *string_append(string *str, string *append)
  144. {
  145. if (append->len > 1) {
  146. string_write(str, append->string, append->len - 1);
  147. }
  148. return str;
  149. }
  150. static void string_free(string *str)
  151. {
  152. efree(str->string);
  153. str->len = 0;
  154. str->alloced = 0;
  155. str->string = NULL;
  156. }
  157. /* }}} */
  158. /* {{{ Object structure */
  159. /* Struct for properties */
  160. typedef struct _property_reference {
  161. zend_class_entry *ce;
  162. zend_property_info prop;
  163. } property_reference;
  164. /* Struct for parameters */
  165. typedef struct _parameter_reference {
  166. zend_uint offset;
  167. zend_uint required;
  168. struct _zend_arg_info *arg_info;
  169. zend_function *fptr;
  170. } parameter_reference;
  171. typedef enum {
  172. REF_TYPE_OTHER, /* Must be 0 */
  173. REF_TYPE_FUNCTION,
  174. REF_TYPE_PARAMETER,
  175. REF_TYPE_PROPERTY,
  176. REF_TYPE_DYNAMIC_PROPERTY
  177. } reflection_type_t;
  178. /* Struct for reflection objects */
  179. typedef struct {
  180. zend_object zo;
  181. void *ptr;
  182. reflection_type_t ref_type;
  183. zval *obj;
  184. zend_class_entry *ce;
  185. unsigned int ignore_visibility:1;
  186. } reflection_object;
  187. /* }}} */
  188. static zend_object_handlers reflection_object_handlers;
  189. static void _default_get_entry(zval *object, char *name, int name_len, zval *return_value TSRMLS_DC) /* {{{ */
  190. {
  191. zval **value;
  192. if (zend_hash_find(Z_OBJPROP_P(object), name, name_len, (void **) &value) == FAILURE) {
  193. RETURN_FALSE;
  194. }
  195. MAKE_COPY_ZVAL(value, return_value);
  196. }
  197. /* }}} */
  198. #ifdef ilia_0
  199. static void _default_lookup_entry(zval *object, char *name, int name_len, zval **return_value TSRMLS_DC) /* {{{ */
  200. {
  201. zval **value;
  202. if (zend_hash_find(Z_OBJPROP_P(object), name, name_len, (void **) &value) == FAILURE) {
  203. *return_value = NULL;
  204. } else {
  205. *return_value = *value;
  206. }
  207. }
  208. /* }}} */
  209. #endif
  210. static void reflection_zval_deep_copy(zval **p)
  211. {
  212. zval *value;
  213. ALLOC_ZVAL(value);
  214. *value = **p;
  215. if (Z_TYPE_P(value) == IS_ARRAY) {
  216. HashTable *ht;
  217. ALLOC_HASHTABLE(ht);
  218. zend_hash_init(ht, zend_hash_num_elements(Z_ARRVAL_P(value)), NULL, ZVAL_PTR_DTOR, 0);
  219. zend_hash_copy(ht, Z_ARRVAL_P(value), (copy_ctor_func_t) reflection_zval_deep_copy, NULL, sizeof(zval *));
  220. Z_ARRVAL_P(value) = ht;
  221. } else {
  222. zval_copy_ctor(value);
  223. }
  224. INIT_PZVAL(value);
  225. *p = value;
  226. }
  227. static void reflection_register_implement(zend_class_entry *class_entry, zend_class_entry *interface_entry TSRMLS_DC) /* {{{ */
  228. {
  229. zend_uint num_interfaces = ++class_entry->num_interfaces;
  230. class_entry->interfaces = (zend_class_entry **) realloc(class_entry->interfaces, sizeof(zend_class_entry *) * num_interfaces);
  231. class_entry->interfaces[num_interfaces - 1] = interface_entry;
  232. }
  233. /* }}} */
  234. static zend_function *_copy_function(zend_function *fptr TSRMLS_DC) /* {{{ */
  235. {
  236. if (fptr
  237. && fptr->type == ZEND_INTERNAL_FUNCTION
  238. && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0)
  239. {
  240. zend_function *copy_fptr;
  241. copy_fptr = emalloc(sizeof(zend_function));
  242. memcpy(copy_fptr, fptr, sizeof(zend_function));
  243. copy_fptr->internal_function.function_name = estrdup(fptr->internal_function.function_name);
  244. return copy_fptr;
  245. } else {
  246. /* no copy needed */
  247. return fptr;
  248. }
  249. }
  250. /* }}} */
  251. static void _free_function(zend_function *fptr TSRMLS_DC) /* {{{ */
  252. {
  253. if (fptr
  254. && fptr->type == ZEND_INTERNAL_FUNCTION
  255. && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0)
  256. {
  257. efree((char*)fptr->internal_function.function_name);
  258. efree(fptr);
  259. }
  260. }
  261. /* }}} */
  262. static void reflection_free_objects_storage(void *object TSRMLS_DC) /* {{{ */
  263. {
  264. reflection_object *intern = (reflection_object *) object;
  265. parameter_reference *reference;
  266. property_reference *prop_reference;
  267. if (intern->ptr) {
  268. switch (intern->ref_type) {
  269. case REF_TYPE_PARAMETER:
  270. reference = (parameter_reference*)intern->ptr;
  271. _free_function(reference->fptr TSRMLS_CC);
  272. efree(intern->ptr);
  273. break;
  274. case REF_TYPE_FUNCTION:
  275. _free_function(intern->ptr TSRMLS_CC);
  276. break;
  277. case REF_TYPE_PROPERTY:
  278. efree(intern->ptr);
  279. break;
  280. case REF_TYPE_DYNAMIC_PROPERTY:
  281. prop_reference = (property_reference*)intern->ptr;
  282. efree((char*)prop_reference->prop.name);
  283. efree(intern->ptr);
  284. break;
  285. case REF_TYPE_OTHER:
  286. break;
  287. }
  288. }
  289. intern->ptr = NULL;
  290. if (intern->obj) {
  291. zval_ptr_dtor(&intern->obj);
  292. }
  293. zend_objects_free_object_storage(object TSRMLS_CC);
  294. }
  295. /* }}} */
  296. static zend_object_value reflection_objects_new(zend_class_entry *class_type TSRMLS_DC) /* {{{ */
  297. {
  298. zend_object_value retval;
  299. reflection_object *intern;
  300. intern = ecalloc(1, sizeof(reflection_object));
  301. intern->zo.ce = class_type;
  302. zend_object_std_init(&intern->zo, class_type TSRMLS_CC);
  303. object_properties_init(&intern->zo, class_type);
  304. retval.handle = zend_objects_store_put(intern, NULL, reflection_free_objects_storage, NULL TSRMLS_CC);
  305. retval.handlers = &reflection_object_handlers;
  306. return retval;
  307. }
  308. /* }}} */
  309. static zval * reflection_instantiate(zend_class_entry *pce, zval *object TSRMLS_DC) /* {{{ */
  310. {
  311. if (!object) {
  312. ALLOC_ZVAL(object);
  313. }
  314. Z_TYPE_P(object) = IS_OBJECT;
  315. object_init_ex(object, pce);
  316. Z_SET_REFCOUNT_P(object, 1);
  317. Z_SET_ISREF_P(object);
  318. return object;
  319. }
  320. /* }}} */
  321. static void _const_string(string *str, char *name, zval *value, char *indent TSRMLS_DC);
  322. static void _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char* indent TSRMLS_DC);
  323. static void _property_string(string *str, zend_property_info *prop, char *prop_name, char* indent TSRMLS_DC);
  324. static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *indent TSRMLS_DC);
  325. static void _extension_string(string *str, zend_module_entry *module, char *indent TSRMLS_DC);
  326. static void _zend_extension_string(string *str, zend_extension *extension, char *indent TSRMLS_DC);
  327. /* {{{ _class_string */
  328. static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *indent TSRMLS_DC)
  329. {
  330. int count, count_static_props = 0, count_static_funcs = 0, count_shadow_props = 0;
  331. string sub_indent;
  332. string_init(&sub_indent);
  333. string_printf(&sub_indent, "%s ", indent);
  334. /* TBD: Repair indenting of doc comment (or is this to be done in the parser?) */
  335. if (ce->type == ZEND_USER_CLASS && ce->info.user.doc_comment) {
  336. string_printf(str, "%s%s", indent, ce->info.user.doc_comment);
  337. string_write(str, "\n", 1);
  338. }
  339. if (obj) {
  340. string_printf(str, "%sObject of class [ ", indent);
  341. } else {
  342. char *kind = "Class";
  343. if (ce->ce_flags & ZEND_ACC_INTERFACE) {
  344. kind = "Interface";
  345. } else if ((ce->ce_flags & ZEND_ACC_TRAIT) == ZEND_ACC_TRAIT) {
  346. kind = "Trait";
  347. }
  348. string_printf(str, "%s%s [ ", indent, kind);
  349. }
  350. string_printf(str, (ce->type == ZEND_USER_CLASS) ? "<user" : "<internal");
  351. if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module) {
  352. string_printf(str, ":%s", ce->info.internal.module->name);
  353. }
  354. string_printf(str, "> ");
  355. if (ce->get_iterator != NULL) {
  356. string_printf(str, "<iterateable> ");
  357. }
  358. if (ce->ce_flags & ZEND_ACC_INTERFACE) {
  359. string_printf(str, "interface ");
  360. } else if ((ce->ce_flags & ZEND_ACC_TRAIT) == ZEND_ACC_TRAIT) {
  361. string_printf(str, "trait ");
  362. } else {
  363. if (ce->ce_flags & (ZEND_ACC_IMPLICIT_ABSTRACT_CLASS|ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)) {
  364. string_printf(str, "abstract ");
  365. }
  366. if (ce->ce_flags & ZEND_ACC_FINAL_CLASS) {
  367. string_printf(str, "final ");
  368. }
  369. string_printf(str, "class ");
  370. }
  371. string_printf(str, "%s", ce->name);
  372. if (ce->parent) {
  373. string_printf(str, " extends %s", ce->parent->name);
  374. }
  375. if (ce->num_interfaces) {
  376. zend_uint i;
  377. if (ce->ce_flags & ZEND_ACC_INTERFACE) {
  378. string_printf(str, " extends %s", ce->interfaces[0]->name);
  379. } else {
  380. string_printf(str, " implements %s", ce->interfaces[0]->name);
  381. }
  382. for (i = 1; i < ce->num_interfaces; ++i) {
  383. string_printf(str, ", %s", ce->interfaces[i]->name);
  384. }
  385. }
  386. string_printf(str, " ] {\n");
  387. /* The information where a class is declared is only available for user classes */
  388. if (ce->type == ZEND_USER_CLASS) {
  389. string_printf(str, "%s @@ %s %d-%d\n", indent, ce->info.user.filename,
  390. ce->info.user.line_start, ce->info.user.line_end);
  391. }
  392. /* Constants */
  393. if (&ce->constants_table) {
  394. zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t) zval_update_constant, (void*)1 TSRMLS_CC);
  395. string_printf(str, "\n");
  396. count = zend_hash_num_elements(&ce->constants_table);
  397. string_printf(str, "%s - Constants [%d] {\n", indent, count);
  398. if (count > 0) {
  399. HashPosition pos;
  400. zval **value;
  401. char *key;
  402. uint key_len;
  403. ulong num_index;
  404. zend_hash_internal_pointer_reset_ex(&ce->constants_table, &pos);
  405. while (zend_hash_get_current_data_ex(&ce->constants_table, (void **) &value, &pos) == SUCCESS) {
  406. zend_hash_get_current_key_ex(&ce->constants_table, &key, &key_len, &num_index, 0, &pos);
  407. _const_string(str, key, *value, indent TSRMLS_CC);
  408. zend_hash_move_forward_ex(&ce->constants_table, &pos);
  409. }
  410. }
  411. string_printf(str, "%s }\n", indent);
  412. }
  413. /* Static properties */
  414. if (&ce->properties_info) {
  415. /* counting static properties */
  416. count = zend_hash_num_elements(&ce->properties_info);
  417. if (count > 0) {
  418. HashPosition pos;
  419. zend_property_info *prop;
  420. zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
  421. while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) {
  422. if(prop->flags & ZEND_ACC_SHADOW) {
  423. count_shadow_props++;
  424. } else if (prop->flags & ZEND_ACC_STATIC) {
  425. count_static_props++;
  426. }
  427. zend_hash_move_forward_ex(&ce->properties_info, &pos);
  428. }
  429. }
  430. /* static properties */
  431. string_printf(str, "\n%s - Static properties [%d] {\n", indent, count_static_props);
  432. if (count_static_props > 0) {
  433. HashPosition pos;
  434. zend_property_info *prop;
  435. zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
  436. while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) {
  437. if ((prop->flags & ZEND_ACC_STATIC) && !(prop->flags & ZEND_ACC_SHADOW)) {
  438. _property_string(str, prop, NULL, sub_indent.string TSRMLS_CC);
  439. }
  440. zend_hash_move_forward_ex(&ce->properties_info, &pos);
  441. }
  442. }
  443. string_printf(str, "%s }\n", indent);
  444. }
  445. /* Static methods */
  446. if (&ce->function_table) {
  447. /* counting static methods */
  448. count = zend_hash_num_elements(&ce->function_table);
  449. if (count > 0) {
  450. HashPosition pos;
  451. zend_function *mptr;
  452. zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
  453. while (zend_hash_get_current_data_ex(&ce->function_table, (void **) &mptr, &pos) == SUCCESS) {
  454. if (mptr->common.fn_flags & ZEND_ACC_STATIC
  455. && ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) == 0 || mptr->common.scope == ce))
  456. {
  457. count_static_funcs++;
  458. }
  459. zend_hash_move_forward_ex(&ce->function_table, &pos);
  460. }
  461. }
  462. /* static methods */
  463. string_printf(str, "\n%s - Static methods [%d] {", indent, count_static_funcs);
  464. if (count_static_funcs > 0) {
  465. HashPosition pos;
  466. zend_function *mptr;
  467. zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
  468. while (zend_hash_get_current_data_ex(&ce->function_table, (void **) &mptr, &pos) == SUCCESS) {
  469. if (mptr->common.fn_flags & ZEND_ACC_STATIC
  470. && ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) == 0 || mptr->common.scope == ce))
  471. {
  472. string_printf(str, "\n");
  473. _function_string(str, mptr, ce, sub_indent.string TSRMLS_CC);
  474. }
  475. zend_hash_move_forward_ex(&ce->function_table, &pos);
  476. }
  477. } else {
  478. string_printf(str, "\n");
  479. }
  480. string_printf(str, "%s }\n", indent);
  481. }
  482. /* Default/Implicit properties */
  483. if (&ce->properties_info) {
  484. count = zend_hash_num_elements(&ce->properties_info) - count_static_props - count_shadow_props;
  485. string_printf(str, "\n%s - Properties [%d] {\n", indent, count);
  486. if (count > 0) {
  487. HashPosition pos;
  488. zend_property_info *prop;
  489. zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
  490. while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) {
  491. if (!(prop->flags & (ZEND_ACC_STATIC|ZEND_ACC_SHADOW))) {
  492. _property_string(str, prop, NULL, sub_indent.string TSRMLS_CC);
  493. }
  494. zend_hash_move_forward_ex(&ce->properties_info, &pos);
  495. }
  496. }
  497. string_printf(str, "%s }\n", indent);
  498. }
  499. if (obj && Z_OBJ_HT_P(obj)->get_properties) {
  500. string dyn;
  501. HashTable *properties = Z_OBJ_HT_P(obj)->get_properties(obj TSRMLS_CC);
  502. HashPosition pos;
  503. zval **prop;
  504. string_init(&dyn);
  505. count = 0;
  506. if (properties && zend_hash_num_elements(properties)) {
  507. zend_hash_internal_pointer_reset_ex(properties, &pos);
  508. while (zend_hash_get_current_data_ex(properties, (void **) &prop, &pos) == SUCCESS) {
  509. char *prop_name;
  510. uint prop_name_size;
  511. ulong index;
  512. if (zend_hash_get_current_key_ex(properties, &prop_name, &prop_name_size, &index, 1, &pos) == HASH_KEY_IS_STRING) {
  513. if (prop_name_size && prop_name[0]) { /* skip all private and protected properties */
  514. if (!zend_hash_quick_exists(&ce->properties_info, prop_name, prop_name_size, zend_get_hash_value(prop_name, prop_name_size))) {
  515. count++;
  516. _property_string(&dyn, NULL, prop_name, sub_indent.string TSRMLS_CC);
  517. }
  518. }
  519. efree(prop_name);
  520. }
  521. zend_hash_move_forward_ex(properties, &pos);
  522. }
  523. }
  524. string_printf(str, "\n%s - Dynamic properties [%d] {\n", indent, count);
  525. string_append(str, &dyn);
  526. string_printf(str, "%s }\n", indent);
  527. string_free(&dyn);
  528. }
  529. /* Non static methods */
  530. if (&ce->function_table) {
  531. count = zend_hash_num_elements(&ce->function_table) - count_static_funcs;
  532. if (count > 0) {
  533. HashPosition pos;
  534. zend_function *mptr;
  535. string dyn;
  536. count = 0;
  537. string_init(&dyn);
  538. zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
  539. while (zend_hash_get_current_data_ex(&ce->function_table, (void **) &mptr, &pos) == SUCCESS) {
  540. if ((mptr->common.fn_flags & ZEND_ACC_STATIC) == 0
  541. && ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) == 0 || mptr->common.scope == ce))
  542. {
  543. char *key;
  544. uint key_len;
  545. ulong num_index;
  546. uint len = strlen(mptr->common.function_name);
  547. /* Do not display old-style inherited constructors */
  548. if ((mptr->common.fn_flags & ZEND_ACC_CTOR) == 0
  549. || mptr->common.scope == ce
  550. || zend_hash_get_current_key_ex(&ce->function_table, &key, &key_len, &num_index, 0, &pos) != HASH_KEY_IS_STRING
  551. || zend_binary_strcasecmp(key, key_len-1, mptr->common.function_name, len) == 0)
  552. {
  553. zend_function *closure;
  554. /* see if this is a closure */
  555. if (ce == zend_ce_closure && obj && (len == sizeof(ZEND_INVOKE_FUNC_NAME)-1)
  556. && memcmp(mptr->common.function_name, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0
  557. && (closure = zend_get_closure_invoke_method(obj TSRMLS_CC)) != NULL)
  558. {
  559. mptr = closure;
  560. } else {
  561. closure = NULL;
  562. }
  563. string_printf(&dyn, "\n");
  564. _function_string(&dyn, mptr, ce, sub_indent.string TSRMLS_CC);
  565. count++;
  566. _free_function(closure TSRMLS_CC);
  567. }
  568. }
  569. zend_hash_move_forward_ex(&ce->function_table, &pos);
  570. }
  571. string_printf(str, "\n%s - Methods [%d] {", indent, count);
  572. if (!count) {
  573. string_printf(str, "\n");
  574. }
  575. string_append(str, &dyn);
  576. string_free(&dyn);
  577. } else {
  578. string_printf(str, "\n%s - Methods [0] {\n", indent);
  579. }
  580. string_printf(str, "%s }\n", indent);
  581. }
  582. string_printf(str, "%s}\n", indent);
  583. string_free(&sub_indent);
  584. }
  585. /* }}} */
  586. /* {{{ _const_string */
  587. static void _const_string(string *str, char *name, zval *value, char *indent TSRMLS_DC)
  588. {
  589. char *type;
  590. type = zend_zval_type_name(value);
  591. if (Z_TYPE_P(value) == IS_ARRAY) {
  592. string_printf(str, "%s Constant [ %s %s ] { Array }\n",
  593. indent, type, name);
  594. } else {
  595. zval value_copy;
  596. int use_copy;
  597. zend_make_printable_zval(value, &value_copy, &use_copy);
  598. if (use_copy) {
  599. value = &value_copy;
  600. }
  601. string_printf(str, "%s Constant [ %s %s ] { %s }\n",
  602. indent, type, name, Z_STRVAL_P(value));
  603. if (use_copy) {
  604. zval_dtor(value);
  605. }
  606. }
  607. }
  608. /* }}} */
  609. /* {{{ _get_recv_opcode */
  610. static zend_op* _get_recv_op(zend_op_array *op_array, zend_uint offset)
  611. {
  612. zend_op *op = op_array->opcodes;
  613. zend_op *end = op + op_array->last;
  614. ++offset;
  615. while (op < end) {
  616. if ((op->opcode == ZEND_RECV || op->opcode == ZEND_RECV_INIT
  617. || op->opcode == ZEND_RECV_VARIADIC) && op->op1.num == (long)offset)
  618. {
  619. return op;
  620. }
  621. ++op;
  622. }
  623. return NULL;
  624. }
  625. /* }}} */
  626. /* {{{ _parameter_string */
  627. static void _parameter_string(string *str, zend_function *fptr, struct _zend_arg_info *arg_info, zend_uint offset, zend_uint required, char* indent TSRMLS_DC)
  628. {
  629. string_printf(str, "Parameter #%d [ ", offset);
  630. if (offset >= required) {
  631. string_printf(str, "<optional> ");
  632. } else {
  633. string_printf(str, "<required> ");
  634. }
  635. if (arg_info->class_name) {
  636. string_printf(str, "%s ", arg_info->class_name);
  637. if (arg_info->allow_null) {
  638. string_printf(str, "or NULL ");
  639. }
  640. } else if (arg_info->type_hint) {
  641. string_printf(str, "%s ", zend_get_type_by_const(arg_info->type_hint));
  642. if (arg_info->allow_null) {
  643. string_printf(str, "or NULL ");
  644. }
  645. }
  646. if (arg_info->pass_by_reference) {
  647. string_write(str, "&", sizeof("&")-1);
  648. }
  649. if (arg_info->is_variadic) {
  650. string_write(str, "...", sizeof("...")-1);
  651. }
  652. if (arg_info->name) {
  653. string_printf(str, "$%s", arg_info->name);
  654. } else {
  655. string_printf(str, "$param%d", offset);
  656. }
  657. if (fptr->type == ZEND_USER_FUNCTION && offset >= required) {
  658. zend_op *precv = _get_recv_op((zend_op_array*)fptr, offset);
  659. if (precv && precv->opcode == ZEND_RECV_INIT && precv->op2_type != IS_UNUSED) {
  660. zval *zv, zv_copy;
  661. int use_copy;
  662. zend_class_entry *old_scope;
  663. string_write(str, " = ", sizeof(" = ")-1);
  664. if (IS_CONSTANT_TYPE(Z_TYPE_P(precv->op2.zv))) {
  665. ALLOC_ZVAL(zv);
  666. *zv = *precv->op2.zv;
  667. zval_copy_ctor(zv);
  668. INIT_PZVAL(zv);
  669. old_scope = EG(scope);
  670. EG(scope) = fptr->common.scope;
  671. zval_update_constant_ex(&zv, 1, NULL TSRMLS_CC);
  672. EG(scope) = old_scope;
  673. } else {
  674. zv = precv->op2.zv;
  675. }
  676. if (Z_TYPE_P(zv) == IS_BOOL) {
  677. if (Z_LVAL_P(zv)) {
  678. string_write(str, "true", sizeof("true")-1);
  679. } else {
  680. string_write(str, "false", sizeof("false")-1);
  681. }
  682. } else if (Z_TYPE_P(zv) == IS_NULL) {
  683. string_write(str, "NULL", sizeof("NULL")-1);
  684. } else if (Z_TYPE_P(zv) == IS_STRING) {
  685. string_write(str, "'", sizeof("'")-1);
  686. string_write(str, Z_STRVAL_P(zv), MIN(Z_STRLEN_P(zv), 15));
  687. if (Z_STRLEN_P(zv) > 15) {
  688. string_write(str, "...", sizeof("...")-1);
  689. }
  690. string_write(str, "'", sizeof("'")-1);
  691. } else if (Z_TYPE_P(zv) == IS_ARRAY) {
  692. string_write(str, "Array", sizeof("Array")-1);
  693. } else {
  694. zend_make_printable_zval(zv, &zv_copy, &use_copy);
  695. string_write(str, Z_STRVAL(zv_copy), Z_STRLEN(zv_copy));
  696. if (use_copy) {
  697. zval_dtor(&zv_copy);
  698. }
  699. }
  700. if (zv != precv->op2.zv) {
  701. zval_ptr_dtor(&zv);
  702. }
  703. }
  704. }
  705. string_write(str, " ]", sizeof(" ]")-1);
  706. }
  707. /* }}} */
  708. /* {{{ _function_parameter_string */
  709. static void _function_parameter_string(string *str, zend_function *fptr, char* indent TSRMLS_DC)
  710. {
  711. struct _zend_arg_info *arg_info = fptr->common.arg_info;
  712. zend_uint i, required = fptr->common.required_num_args;
  713. if (!arg_info) {
  714. return;
  715. }
  716. string_printf(str, "\n");
  717. string_printf(str, "%s- Parameters [%d] {\n", indent, fptr->common.num_args);
  718. for (i = 0; i < fptr->common.num_args; i++) {
  719. string_printf(str, "%s ", indent);
  720. _parameter_string(str, fptr, arg_info, i, required, indent TSRMLS_CC);
  721. string_write(str, "\n", sizeof("\n")-1);
  722. arg_info++;
  723. }
  724. string_printf(str, "%s}\n", indent);
  725. }
  726. /* }}} */
  727. /* {{{ _function_closure_string */
  728. static void _function_closure_string(string *str, zend_function *fptr, char* indent TSRMLS_DC)
  729. {
  730. zend_uint i, count;
  731. ulong num_index;
  732. char *key;
  733. uint key_len;
  734. HashTable *static_variables;
  735. HashPosition pos;
  736. if (fptr->type != ZEND_USER_FUNCTION || !fptr->op_array.static_variables) {
  737. return;
  738. }
  739. static_variables = fptr->op_array.static_variables;
  740. count = zend_hash_num_elements(static_variables);
  741. if (!count) {
  742. return;
  743. }
  744. string_printf(str, "\n");
  745. string_printf(str, "%s- Bound Variables [%d] {\n", indent, zend_hash_num_elements(static_variables));
  746. zend_hash_internal_pointer_reset_ex(static_variables, &pos);
  747. i = 0;
  748. while (i < count) {
  749. zend_hash_get_current_key_ex(static_variables, &key, &key_len, &num_index, 0, &pos);
  750. string_printf(str, "%s Variable #%d [ $%s ]\n", indent, i++, key);
  751. zend_hash_move_forward_ex(static_variables, &pos);
  752. }
  753. string_printf(str, "%s}\n", indent);
  754. }
  755. /* }}} */
  756. /* {{{ _function_string */
  757. static void _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char* indent TSRMLS_DC)
  758. {
  759. string param_indent;
  760. zend_function *overwrites;
  761. char *lc_name;
  762. unsigned int lc_name_len;
  763. /* TBD: Repair indenting of doc comment (or is this to be done in the parser?)
  764. * What's "wrong" is that any whitespace before the doc comment start is
  765. * swallowed, leading to an unaligned comment.
  766. */
  767. if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) {
  768. string_printf(str, "%s%s\n", indent, fptr->op_array.doc_comment);
  769. }
  770. string_write(str, indent, strlen(indent));
  771. string_printf(str, fptr->common.fn_flags & ZEND_ACC_CLOSURE ? "Closure [ " : (fptr->common.scope ? "Method [ " : "Function [ "));
  772. string_printf(str, (fptr->type == ZEND_USER_FUNCTION) ? "<user" : "<internal");
  773. if (fptr->common.fn_flags & ZEND_ACC_DEPRECATED) {
  774. string_printf(str, ", deprecated");
  775. }
  776. if (fptr->type == ZEND_INTERNAL_FUNCTION && ((zend_internal_function*)fptr)->module) {
  777. string_printf(str, ":%s", ((zend_internal_function*)fptr)->module->name);
  778. }
  779. if (scope && fptr->common.scope) {
  780. if (fptr->common.scope != scope) {
  781. string_printf(str, ", inherits %s", fptr->common.scope->name);
  782. } else if (fptr->common.scope->parent) {
  783. lc_name_len = strlen(fptr->common.function_name);
  784. lc_name = zend_str_tolower_dup(fptr->common.function_name, lc_name_len);
  785. if (zend_hash_find(&fptr->common.scope->parent->function_table, lc_name, lc_name_len + 1, (void**) &overwrites) == SUCCESS) {
  786. if (fptr->common.scope != overwrites->common.scope) {
  787. string_printf(str, ", overwrites %s", overwrites->common.scope->name);
  788. }
  789. }
  790. efree(lc_name);
  791. }
  792. }
  793. if (fptr->common.prototype && fptr->common.prototype->common.scope) {
  794. string_printf(str, ", prototype %s", fptr->common.prototype->common.scope->name);
  795. }
  796. if (fptr->common.fn_flags & ZEND_ACC_CTOR) {
  797. string_printf(str, ", ctor");
  798. }
  799. if (fptr->common.fn_flags & ZEND_ACC_DTOR) {
  800. string_printf(str, ", dtor");
  801. }
  802. string_printf(str, "> ");
  803. if (fptr->common.fn_flags & ZEND_ACC_ABSTRACT) {
  804. string_printf(str, "abstract ");
  805. }
  806. if (fptr->common.fn_flags & ZEND_ACC_FINAL) {
  807. string_printf(str, "final ");
  808. }
  809. if (fptr->common.fn_flags & ZEND_ACC_STATIC) {
  810. string_printf(str, "static ");
  811. }
  812. if (fptr->common.scope) {
  813. /* These are mutually exclusive */
  814. switch (fptr->common.fn_flags & ZEND_ACC_PPP_MASK) {
  815. case ZEND_ACC_PUBLIC:
  816. string_printf(str, "public ");
  817. break;
  818. case ZEND_ACC_PRIVATE:
  819. string_printf(str, "private ");
  820. break;
  821. case ZEND_ACC_PROTECTED:
  822. string_printf(str, "protected ");
  823. break;
  824. default:
  825. string_printf(str, "<visibility error> ");
  826. break;
  827. }
  828. string_printf(str, "method ");
  829. } else {
  830. string_printf(str, "function ");
  831. }
  832. if (fptr->op_array.fn_flags & ZEND_ACC_RETURN_REFERENCE) {
  833. string_printf(str, "&");
  834. }
  835. string_printf(str, "%s ] {\n", fptr->common.function_name);
  836. /* The information where a function is declared is only available for user classes */
  837. if (fptr->type == ZEND_USER_FUNCTION) {
  838. string_printf(str, "%s @@ %s %d - %d\n", indent,
  839. fptr->op_array.filename,
  840. fptr->op_array.line_start,
  841. fptr->op_array.line_end);
  842. }
  843. string_init(&param_indent);
  844. string_printf(&param_indent, "%s ", indent);
  845. if (fptr->common.fn_flags & ZEND_ACC_CLOSURE) {
  846. _function_closure_string(str, fptr, param_indent.string TSRMLS_CC);
  847. }
  848. _function_parameter_string(str, fptr, param_indent.string TSRMLS_CC);
  849. string_free(&param_indent);
  850. string_printf(str, "%s}\n", indent);
  851. }
  852. /* }}} */
  853. /* {{{ _property_string */
  854. static void _property_string(string *str, zend_property_info *prop, char *prop_name, char* indent TSRMLS_DC)
  855. {
  856. const char *class_name;
  857. string_printf(str, "%sProperty [ ", indent);
  858. if (!prop) {
  859. string_printf(str, "<dynamic> public $%s", prop_name);
  860. } else {
  861. if (!(prop->flags & ZEND_ACC_STATIC)) {
  862. if (prop->flags & ZEND_ACC_IMPLICIT_PUBLIC) {
  863. string_write(str, "<implicit> ", sizeof("<implicit> ") - 1);
  864. } else {
  865. string_write(str, "<default> ", sizeof("<default> ") - 1);
  866. }
  867. }
  868. /* These are mutually exclusive */
  869. switch (prop->flags & ZEND_ACC_PPP_MASK) {
  870. case ZEND_ACC_PUBLIC:
  871. string_printf(str, "public ");
  872. break;
  873. case ZEND_ACC_PRIVATE:
  874. string_printf(str, "private ");
  875. break;
  876. case ZEND_ACC_PROTECTED:
  877. string_printf(str, "protected ");
  878. break;
  879. }
  880. if(prop->flags & ZEND_ACC_STATIC) {
  881. string_printf(str, "static ");
  882. }
  883. zend_unmangle_property_name(prop->name, prop->name_length, &class_name, (const char**)&prop_name);
  884. string_printf(str, "$%s", prop_name);
  885. }
  886. string_printf(str, " ]\n");
  887. }
  888. /* }}} */
  889. static int _extension_ini_string(zend_ini_entry *ini_entry TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */
  890. {
  891. string *str = va_arg(args, string *);
  892. char *indent = va_arg(args, char *);
  893. int number = va_arg(args, int);
  894. char *comma = "";
  895. if (number == ini_entry->module_number) {
  896. string_printf(str, " %sEntry [ %s <", indent, ini_entry->name);
  897. if (ini_entry->modifiable == ZEND_INI_ALL) {
  898. string_printf(str, "ALL");
  899. } else {
  900. if (ini_entry->modifiable & ZEND_INI_USER) {
  901. string_printf(str, "USER");
  902. comma = ",";
  903. }
  904. if (ini_entry->modifiable & ZEND_INI_PERDIR) {
  905. string_printf(str, "%sPERDIR", comma);
  906. comma = ",";
  907. }
  908. if (ini_entry->modifiable & ZEND_INI_SYSTEM) {
  909. string_printf(str, "%sSYSTEM", comma);
  910. }
  911. }
  912. string_printf(str, "> ]\n");
  913. string_printf(str, " %s Current = '%s'\n", indent, ini_entry->value ? ini_entry->value : "");
  914. if (ini_entry->modified) {
  915. string_printf(str, " %s Default = '%s'\n", indent, ini_entry->orig_value ? ini_entry->orig_value : "");
  916. }
  917. string_printf(str, " %s}\n", indent);
  918. }
  919. return ZEND_HASH_APPLY_KEEP;
  920. }
  921. /* }}} */
  922. static int _extension_class_string(zend_class_entry **pce TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */
  923. {
  924. string *str = va_arg(args, string *);
  925. char *indent = va_arg(args, char *);
  926. struct _zend_module_entry *module = va_arg(args, struct _zend_module_entry*);
  927. int *num_classes = va_arg(args, int*);
  928. if (((*pce)->type == ZEND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->info.internal.module->name, module->name)) {
  929. /* dump class if it is not an alias */
  930. if (!zend_binary_strcasecmp((*pce)->name, (*pce)->name_length, hash_key->arKey, hash_key->nKeyLength-1)) {
  931. string_printf(str, "\n");
  932. _class_string(str, *pce, NULL, indent TSRMLS_CC);
  933. (*num_classes)++;
  934. }
  935. }
  936. return ZEND_HASH_APPLY_KEEP;
  937. }
  938. /* }}} */
  939. static int _extension_const_string(zend_constant *constant TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */
  940. {
  941. string *str = va_arg(args, string *);
  942. char *indent = va_arg(args, char *);
  943. struct _zend_module_entry *module = va_arg(args, struct _zend_module_entry*);
  944. int *num_classes = va_arg(args, int*);
  945. if (constant->module_number == module->module_number) {
  946. _const_string(str, constant->name, &constant->value, indent TSRMLS_CC);
  947. (*num_classes)++;
  948. }
  949. return ZEND_HASH_APPLY_KEEP;
  950. }
  951. /* }}} */
  952. /* {{{ _extension_string */
  953. static void _extension_string(string *str, zend_module_entry *module, char *indent TSRMLS_DC)
  954. {
  955. string_printf(str, "%sExtension [ ", indent);
  956. if (module->type == MODULE_PERSISTENT) {
  957. string_printf(str, "<persistent>");
  958. }
  959. if (module->type == MODULE_TEMPORARY) {
  960. string_printf(str, "<temporary>" );
  961. }
  962. string_printf(str, " extension #%d %s version %s ] {\n",
  963. module->module_number, module->name,
  964. (module->version == NO_VERSION_YET) ? "<no_version>" : module->version);
  965. if (module->deps) {
  966. const zend_module_dep* dep = module->deps;
  967. string_printf(str, "\n - Dependencies {\n");
  968. while(dep->name) {
  969. string_printf(str, "%s Dependency [ %s (", indent, dep->name);
  970. switch(dep->type) {
  971. case MODULE_DEP_REQUIRED:
  972. string_write(str, "Required", sizeof("Required") - 1);
  973. break;
  974. case MODULE_DEP_CONFLICTS:
  975. string_write(str, "Conflicts", sizeof("Conflicts") - 1);
  976. break;
  977. case MODULE_DEP_OPTIONAL:
  978. string_write(str, "Optional", sizeof("Optional") - 1);
  979. break;
  980. default:
  981. string_write(str, "Error", sizeof("Error") - 1); /* shouldn't happen */
  982. break;
  983. }
  984. if (dep->rel) {
  985. string_printf(str, " %s", dep->rel);
  986. }
  987. if (dep->version) {
  988. string_printf(str, " %s", dep->version);
  989. }
  990. string_write(str, ") ]\n", sizeof(") ]\n") - 1);
  991. dep++;
  992. }
  993. string_printf(str, "%s }\n", indent);
  994. }
  995. {
  996. string str_ini;
  997. string_init(&str_ini);
  998. zend_hash_apply_with_arguments(EG(ini_directives) TSRMLS_CC, (apply_func_args_t) _extension_ini_string, 3, &str_ini, indent, module->module_number);
  999. if (str_ini.len > 1) {
  1000. string_printf(str, "\n - INI {\n");
  1001. string_append(str, &str_ini);
  1002. string_printf(str, "%s }\n", indent);
  1003. }
  1004. string_free(&str_ini);
  1005. }
  1006. {
  1007. string str_constants;
  1008. int num_constants = 0;
  1009. string_init(&str_constants);
  1010. zend_hash_apply_with_arguments(EG(zend_constants) TSRMLS_CC, (apply_func_args_t) _extension_const_string, 4, &str_constants, indent, module, &num_constants);
  1011. if (num_constants) {
  1012. string_printf(str, "\n - Constants [%d] {\n", num_constants);
  1013. string_append(str, &str_constants);
  1014. string_printf(str, "%s }\n", indent);
  1015. }
  1016. string_free(&str_constants);
  1017. }
  1018. {
  1019. HashPosition iterator;
  1020. zend_function *fptr;
  1021. int first = 1;
  1022. zend_hash_internal_pointer_reset_ex(CG(function_table), &iterator);
  1023. while (zend_hash_get_current_data_ex(CG(function_table), (void **) &fptr, &iterator) == SUCCESS) {
  1024. if (fptr->common.type==ZEND_INTERNAL_FUNCTION
  1025. && fptr->internal_function.module == module) {
  1026. if (first) {
  1027. string_printf(str, "\n - Functions {\n");
  1028. first = 0;
  1029. }
  1030. _function_string(str, fptr, NULL, " " TSRMLS_CC);
  1031. }
  1032. zend_hash_move_forward_ex(CG(function_table), &iterator);
  1033. }
  1034. if (!first) {
  1035. string_printf(str, "%s }\n", indent);
  1036. }
  1037. }
  1038. {
  1039. string str_classes;
  1040. string sub_indent;
  1041. int num_classes = 0;
  1042. string_init(&sub_indent);
  1043. string_printf(&sub_indent, "%s ", indent);
  1044. string_init(&str_classes);
  1045. zend_hash_apply_with_arguments(EG(class_table) TSRMLS_CC, (apply_func_args_t) _extension_class_string, 4, &str_classes, sub_indent.string, module, &num_classes);
  1046. if (num_classes) {
  1047. string_printf(str, "\n - Classes [%d] {", num_classes);
  1048. string_append(str, &str_classes);
  1049. string_printf(str, "%s }\n", indent);
  1050. }
  1051. string_free(&str_classes);
  1052. string_free(&sub_indent);
  1053. }
  1054. string_printf(str, "%s}\n", indent);
  1055. }
  1056. /* }}} */
  1057. static void _zend_extension_string(string *str, zend_extension *extension, char *indent TSRMLS_DC) /* {{{ */
  1058. {
  1059. string_printf(str, "%sZend Extension [ %s ", indent, extension->name);
  1060. if (extension->version) {
  1061. string_printf(str, "%s ", extension->version);
  1062. }
  1063. if (extension->copyright) {
  1064. string_printf(str, "%s ", extension->copyright);
  1065. }
  1066. if (extension->author) {
  1067. string_printf(str, "by %s ", extension->author);
  1068. }
  1069. if (extension->URL) {
  1070. string_printf(str, "<%s> ", extension->URL);
  1071. }
  1072. string_printf(str, "]\n");
  1073. }
  1074. /* }}} */
  1075. /* {{{ _function_check_flag */
  1076. static void _function_check_flag(INTERNAL_FUNCTION_PARAMETERS, int mask)
  1077. {
  1078. reflection_object *intern;
  1079. zend_function *mptr;
  1080. if (zend_parse_parameters_none() == FAILURE) {
  1081. return;
  1082. }
  1083. GET_REFLECTION_OBJECT_PTR(mptr);
  1084. RETURN_BOOL(mptr->common.fn_flags & mask);
  1085. }
  1086. /* }}} */
  1087. /* {{{ zend_reflection_class_factory */
  1088. PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object TSRMLS_DC)
  1089. {
  1090. reflection_object *intern;
  1091. zval *name;
  1092. MAKE_STD_ZVAL(name);
  1093. ZVAL_STRINGL(name, ce->name, ce->name_length, 1);
  1094. reflection_instantiate(reflection_class_ptr, object TSRMLS_CC);
  1095. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  1096. intern->ptr = ce;
  1097. intern->ref_type = REF_TYPE_OTHER;
  1098. intern->ce = ce;
  1099. reflection_update_property(object, "name", name);
  1100. }
  1101. /* }}} */
  1102. /* {{{ reflection_extension_factory */
  1103. static void reflection_extension_factory(zval *object, const char *name_str TSRMLS_DC)
  1104. {
  1105. reflection_object *intern;
  1106. zval *name;
  1107. int name_len = strlen(name_str);
  1108. char *lcname;
  1109. struct _zend_module_entry *module;
  1110. ALLOCA_FLAG(use_heap)
  1111. lcname = do_alloca(name_len + 1, use_heap);
  1112. zend_str_tolower_copy(lcname, name_str, name_len);
  1113. if (zend_hash_find(&module_registry, lcname, name_len + 1, (void **)&module) == FAILURE) {
  1114. free_alloca(lcname, use_heap);
  1115. return;
  1116. }
  1117. free_alloca(lcname, use_heap);
  1118. reflection_instantiate(reflection_extension_ptr, object TSRMLS_CC);
  1119. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  1120. MAKE_STD_ZVAL(name);
  1121. ZVAL_STRINGL(name, module->name, name_len, 1);
  1122. intern->ptr = module;
  1123. intern->ref_type = REF_TYPE_OTHER;
  1124. intern->ce = NULL;
  1125. reflection_update_property(object, "name", name);
  1126. }
  1127. /* }}} */
  1128. /* {{{ reflection_parameter_factory */
  1129. static void reflection_parameter_factory(zend_function *fptr, zval *closure_object, struct _zend_arg_info *arg_info, zend_uint offset, zend_uint required, zval *object TSRMLS_DC)
  1130. {
  1131. reflection_object *intern;
  1132. parameter_reference *reference;
  1133. zval *name;
  1134. if (closure_object) {
  1135. Z_ADDREF_P(closure_object);
  1136. }
  1137. MAKE_STD_ZVAL(name);
  1138. if (arg_info->name) {
  1139. ZVAL_STRINGL(name, arg_info->name, arg_info->name_len, 1);
  1140. } else {
  1141. ZVAL_NULL(name);
  1142. }
  1143. reflection_instantiate(reflection_parameter_ptr, object TSRMLS_CC);
  1144. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  1145. reference = (parameter_reference*) emalloc(sizeof(parameter_reference));
  1146. reference->arg_info = arg_info;
  1147. reference->offset = offset;
  1148. reference->required = required;
  1149. reference->fptr = fptr;
  1150. intern->ptr = reference;
  1151. intern->ref_type = REF_TYPE_PARAMETER;
  1152. intern->ce = fptr->common.scope;
  1153. intern->obj = closure_object;
  1154. reflection_update_property(object, "name", name);
  1155. }
  1156. /* }}} */
  1157. /* {{{ reflection_function_factory */
  1158. static void reflection_function_factory(zend_function *function, zval *closure_object, zval *object TSRMLS_DC)
  1159. {
  1160. reflection_object *intern;
  1161. zval *name;
  1162. if (closure_object) {
  1163. Z_ADDREF_P(closure_object);
  1164. }
  1165. MAKE_STD_ZVAL(name);
  1166. ZVAL_STRING(name, function->common.function_name, 1);
  1167. reflection_instantiate(reflection_function_ptr, object TSRMLS_CC);
  1168. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  1169. intern->ptr = function;
  1170. intern->ref_type = REF_TYPE_FUNCTION;
  1171. intern->ce = NULL;
  1172. intern->obj = closure_object;
  1173. reflection_update_property(object, "name", name);
  1174. }
  1175. /* }}} */
  1176. /* {{{ reflection_method_factory */
  1177. static void reflection_method_factory(zend_class_entry *ce, zend_function *method, zval *closure_object, zval *object TSRMLS_DC)
  1178. {
  1179. reflection_object *intern;
  1180. zval *name;
  1181. zval *classname;
  1182. if (closure_object) {
  1183. Z_ADDREF_P(closure_object);
  1184. }
  1185. MAKE_STD_ZVAL(name);
  1186. MAKE_STD_ZVAL(classname);
  1187. ZVAL_STRING(name, (method->common.scope && method->common.scope->trait_aliases)?
  1188. zend_resolve_method_name(ce, method) : method->common.function_name, 1);
  1189. ZVAL_STRINGL(classname, method->common.scope->name, method->common.scope->name_length, 1);
  1190. reflection_instantiate(reflection_method_ptr, object TSRMLS_CC);
  1191. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  1192. intern->ptr = method;
  1193. intern->ref_type = REF_TYPE_FUNCTION;
  1194. intern->ce = ce;
  1195. intern->obj = closure_object;
  1196. reflection_update_property(object, "name", name);
  1197. reflection_update_property(object, "class", classname);
  1198. }
  1199. /* }}} */
  1200. /* {{{ reflection_property_factory */
  1201. static void reflection_property_factory(zend_class_entry *ce, zend_property_info *prop, zval *object TSRMLS_DC)
  1202. {
  1203. reflection_object *intern;
  1204. zval *name;
  1205. zval *classname;
  1206. property_reference *reference;
  1207. const char *class_name, *prop_name;
  1208. zend_unmangle_property_name(prop->name, prop->name_length, &class_name, &prop_name);
  1209. if (!(prop->flags & ZEND_ACC_PRIVATE)) {
  1210. /* we have to search the class hierarchy for this (implicit) public or protected property */
  1211. zend_class_entry *tmp_ce = ce, *store_ce = ce;
  1212. zend_property_info *tmp_info = NULL;
  1213. while (tmp_ce && zend_hash_find(&tmp_ce->properties_info, prop_name, strlen(prop_name) + 1, (void **) &tmp_info) != SUCCESS) {
  1214. ce = tmp_ce;
  1215. tmp_ce = tmp_ce->parent;
  1216. }
  1217. if (tmp_info && !(tmp_info->flags & ZEND_ACC_SHADOW)) { /* found something and it's not a parent's private */
  1218. prop = tmp_info;
  1219. } else { /* not found, use initial value */
  1220. ce = store_ce;
  1221. }
  1222. }
  1223. MAKE_STD_ZVAL(name);
  1224. MAKE_STD_ZVAL(classname);
  1225. ZVAL_STRING(name, prop_name, 1);
  1226. ZVAL_STRINGL(classname, prop->ce->name, prop->ce->name_length, 1);
  1227. reflection_instantiate(reflection_property_ptr, object TSRMLS_CC);
  1228. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  1229. reference = (property_reference*) emalloc(sizeof(property_reference));
  1230. reference->ce = ce;
  1231. reference->prop = *prop;
  1232. intern->ptr = reference;
  1233. intern->ref_type = REF_TYPE_PROPERTY;
  1234. intern->ce = ce;
  1235. intern->ignore_visibility = 0;
  1236. reflection_update_property(object, "name", name);
  1237. reflection_update_property(object, "class", classname);
  1238. }
  1239. /* }}} */
  1240. /* {{{ _reflection_export */
  1241. static void _reflection_export(INTERNAL_FUNCTION_PARAMETERS, zend_class_entry *ce_ptr, int ctor_argc)
  1242. {
  1243. zval *reflector_ptr;
  1244. zval output, *output_ptr = &output;
  1245. zval *argument_ptr, *argument2_ptr;
  1246. zval *retval_ptr, **params[2];
  1247. int result;
  1248. int return_output = 0;
  1249. zend_fcall_info fci;
  1250. zend_fcall_info_cache fcc;
  1251. zval fname;
  1252. if (ctor_argc == 1) {
  1253. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|b", &argument_ptr, &return_output) == FAILURE) {
  1254. return;
  1255. }
  1256. } else {
  1257. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz|b", &argument_ptr, &argument2_ptr, &return_output) == FAILURE) {
  1258. return;
  1259. }
  1260. }
  1261. INIT_PZVAL(&output);
  1262. /* Create object */
  1263. MAKE_STD_ZVAL(reflector_ptr);
  1264. if (object_and_properties_init(reflector_ptr, ce_ptr, NULL) == FAILURE) {
  1265. _DO_THROW("Could not create reflector");
  1266. }
  1267. /* Call __construct() */
  1268. params[0] = &argument_ptr;
  1269. params[1] = &argument2_ptr;
  1270. fci.size = sizeof(fci);
  1271. fci.function_table = NULL;
  1272. fci.function_name = NULL;
  1273. fci.symbol_table = NULL;
  1274. fci.object_ptr = reflector_ptr;
  1275. fci.retval_ptr_ptr = &retval_ptr;
  1276. fci.param_count = ctor_argc;
  1277. fci.params = params;
  1278. fci.no_separation = 1;
  1279. fcc.initialized = 1;
  1280. fcc.function_handler = ce_ptr->constructor;
  1281. fcc.calling_scope = ce_ptr;
  1282. fcc.called_scope = Z_OBJCE_P(reflector_ptr);
  1283. fcc.object_ptr = reflector_ptr;
  1284. result = zend_call_function(&fci, &fcc TSRMLS_CC);
  1285. if (retval_ptr) {
  1286. zval_ptr_dtor(&retval_ptr);
  1287. }
  1288. if (EG(exception)) {
  1289. zval_ptr_dtor(&reflector_ptr);
  1290. return;
  1291. }
  1292. if (result == FAILURE) {
  1293. zval_ptr_dtor(&reflector_ptr);
  1294. _DO_THROW("Could not create reflector");
  1295. }
  1296. /* Call static reflection::export */
  1297. ZVAL_BOOL(&output, return_output);
  1298. params[0] = &reflector_ptr;
  1299. params[1] = &output_ptr;
  1300. ZVAL_STRINGL(&fname, "reflection::export", sizeof("reflection::export") - 1, 0);
  1301. fci.function_table = &reflection_ptr->function_table;
  1302. fci.function_name = &fname;
  1303. fci.object_ptr = NULL;
  1304. fci.retval_ptr_ptr = &retval_ptr;
  1305. fci.param_count = 2;
  1306. fci.params = params;
  1307. fci.no_separation = 1;
  1308. result = zend_call_function(&fci, NULL TSRMLS_CC);
  1309. if (result == FAILURE && EG(exception) == NULL) {
  1310. zval_ptr_dtor(&reflector_ptr);
  1311. zval_ptr_dtor(&retval_ptr);
  1312. _DO_THROW("Could not execute reflection::export()");
  1313. }
  1314. if (return_output) {
  1315. COPY_PZVAL_TO_ZVAL(*return_value, retval_ptr);
  1316. } else {
  1317. zval_ptr_dtor(&retval_ptr);
  1318. }
  1319. /* Destruct reflector which is no longer needed */
  1320. zval_ptr_dtor(&reflector_ptr);
  1321. }
  1322. /* }}} */
  1323. /* {{{ _reflection_param_get_default_param */
  1324. static parameter_reference *_reflection_param_get_default_param(INTERNAL_FUNCTION_PARAMETERS)
  1325. {
  1326. reflection_object *intern;
  1327. parameter_reference *param;
  1328. intern = (reflection_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
  1329. if (intern == NULL || intern->ptr == NULL) {
  1330. if (EG(exception) && Z_OBJCE_P(EG(exception)) == reflection_exception_ptr) {
  1331. return NULL;
  1332. }
  1333. php_error_docref(NULL TSRMLS_CC, E_ERROR, "Internal error: Failed to retrieve the reflection object");
  1334. }
  1335. param = intern->ptr;
  1336. if (param->fptr->type != ZEND_USER_FUNCTION) {
  1337. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Cannot determine default value for internal functions");
  1338. return NULL;
  1339. }
  1340. return param;
  1341. }
  1342. /* }}} */
  1343. /* {{{ _reflection_param_get_default_precv */
  1344. static zend_op *_reflection_param_get_default_precv(INTERNAL_FUNCTION_PARAMETERS, parameter_reference *param)
  1345. {
  1346. zend_op *precv;
  1347. if (param == NULL) {
  1348. return NULL;
  1349. }
  1350. precv = _get_recv_op((zend_op_array*)param->fptr, param->offset);
  1351. if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2_type == IS_UNUSED) {
  1352. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Internal error: Failed to retrieve the default value");
  1353. return NULL;
  1354. }
  1355. return precv;
  1356. }
  1357. /* }}} */
  1358. /* {{{ Preventing __clone from being called */
  1359. ZEND_METHOD(reflection, __clone)
  1360. {
  1361. /* Should never be executable */
  1362. _DO_THROW("Cannot clone object using __clone()");
  1363. }
  1364. /* }}} */
  1365. /* {{{ proto public static mixed Reflection::export(Reflector r [, bool return])
  1366. Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  1367. ZEND_METHOD(reflection, export)
  1368. {
  1369. zval *object, fname, *retval_ptr;
  1370. int result;
  1371. zend_bool return_output = 0;
  1372. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|b", &object, reflector_ptr, &return_output) == FAILURE) {
  1373. return;
  1374. }
  1375. /* Invoke the __toString() method */
  1376. ZVAL_STRINGL(&fname, "__tostring", sizeof("__tostring") - 1, 1);
  1377. result= call_user_function_ex(NULL, &object, &fname, &retval_ptr, 0, NULL, 0, NULL TSRMLS_CC);
  1378. zval_dtor(&fname);
  1379. if (result == FAILURE) {
  1380. _DO_THROW("Invocation of method __toString() failed");
  1381. /* Returns from this function */
  1382. }
  1383. if (!retval_ptr) {
  1384. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s::__toString() did not return anything", Z_OBJCE_P(object)->name);
  1385. RETURN_FALSE;
  1386. }
  1387. if (return_output) {
  1388. COPY_PZVAL_TO_ZVAL(*return_value, retval_ptr);
  1389. } else {
  1390. /* No need for _r variant, return of __toString should always be a string */
  1391. zend_print_zval(retval_ptr, 0);
  1392. zend_printf("\n");
  1393. zval_ptr_dtor(&retval_ptr);
  1394. }
  1395. }
  1396. /* }}} */
  1397. /* {{{ proto public static array Reflection::getModifierNames(int modifiers)
  1398. Returns an array of modifier names */
  1399. ZEND_METHOD(reflection, getModifierNames)
  1400. {
  1401. long modifiers;
  1402. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &modifiers) == FAILURE) {
  1403. return;
  1404. }
  1405. array_init(return_value);
  1406. if (modifiers & (ZEND_ACC_ABSTRACT | ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)) {
  1407. add_next_index_stringl(return_value, "abstract", sizeof("abstract")-1, 1);
  1408. }
  1409. if (modifiers & (ZEND_ACC_FINAL | ZEND_ACC_FINAL_CLASS)) {
  1410. add_next_index_stringl(return_value, "final", sizeof("final")-1, 1);
  1411. }
  1412. if (modifiers & ZEND_ACC_IMPLICIT_PUBLIC) {
  1413. add_next_index_stringl(return_value, "public", sizeof("public")-1, 1);
  1414. }
  1415. /* These are mutually exclusive */
  1416. switch (modifiers & ZEND_ACC_PPP_MASK) {
  1417. case ZEND_ACC_PUBLIC:
  1418. add_next_index_stringl(return_value, "public", sizeof("public")-1, 1);
  1419. break;
  1420. case ZEND_ACC_PRIVATE:
  1421. add_next_index_stringl(return_value, "private", sizeof("private")-1, 1);
  1422. break;
  1423. case ZEND_ACC_PROTECTED:
  1424. add_next_index_stringl(return_value, "protected", sizeof("protected")-1, 1);
  1425. break;
  1426. }
  1427. if (modifiers & ZEND_ACC_STATIC) {
  1428. add_next_index_stringl(return_value, "static", sizeof("static")-1, 1);
  1429. }
  1430. }
  1431. /* }}} */
  1432. /* {{{ proto public static mixed ReflectionFunction::export(string name [, bool return])
  1433. Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  1434. ZEND_METHOD(reflection_function, export)
  1435. {
  1436. _reflection_export(INTERNAL_FUNCTION_PARAM_PASSTHRU, reflection_function_ptr, 1);
  1437. }
  1438. /* }}} */
  1439. /* {{{ proto public void ReflectionFunction::__construct(string name)
  1440. Constructor. Throws an Exception in case the given function does not exist */
  1441. ZEND_METHOD(reflection_function, __construct)
  1442. {
  1443. zval *name;
  1444. zval *object;
  1445. zval *closure = NULL;
  1446. char *lcname;
  1447. reflection_object *intern;
  1448. zend_function *fptr;
  1449. char *name_str;
  1450. int name_len;
  1451. object = getThis();
  1452. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  1453. if (intern == NULL) {
  1454. return;
  1455. }
  1456. if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "O", &closure, zend_ce_closure) == SUCCESS) {
  1457. fptr = (zend_function*)zend_get_closure_method_def(closure TSRMLS_CC);
  1458. Z_ADDREF_P(closure);
  1459. } else if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name_str, &name_len) == SUCCESS) {
  1460. char *nsname;
  1461. lcname = zend_str_tolower_dup(name_str, name_len);
  1462. /* Ignore leading "\" */
  1463. nsname = lcname;
  1464. if (lcname[0] == '\\') {
  1465. nsname = &lcname[1];
  1466. name_len--;
  1467. }
  1468. if (zend_hash_find(EG(function_table), nsname, name_len + 1, (void **)&fptr) == FAILURE) {
  1469. efree(lcname);
  1470. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  1471. "Function %s() does not exist", name_str);
  1472. return;
  1473. }
  1474. efree(lcname);
  1475. } else {
  1476. return;
  1477. }
  1478. MAKE_STD_ZVAL(name);
  1479. ZVAL_STRING(name, fptr->common.function_name, 1);
  1480. reflection_update_property(object, "name", name);
  1481. intern->ptr = fptr;
  1482. intern->ref_type = REF_TYPE_FUNCTION;
  1483. intern->obj = closure;
  1484. intern->ce = NULL;
  1485. }
  1486. /* }}} */
  1487. /* {{{ proto public string ReflectionFunction::__toString()
  1488. Returns a string representation */
  1489. ZEND_METHOD(reflection_function, __toString)
  1490. {
  1491. reflection_object *intern;
  1492. zend_function *fptr;
  1493. string str;
  1494. if (zend_parse_parameters_none() == FAILURE) {
  1495. return;
  1496. }
  1497. GET_REFLECTION_OBJECT_PTR(fptr);
  1498. string_init(&str);
  1499. _function_string(&str, fptr, intern->ce, "" TSRMLS_CC);
  1500. RETURN_STRINGL(str.string, str.len - 1, 0);
  1501. }
  1502. /* }}} */
  1503. /* {{{ proto public string ReflectionFunction::getName()
  1504. Returns this function's name */
  1505. ZEND_METHOD(reflection_function, getName)
  1506. {
  1507. if (zend_parse_parameters_none() == FAILURE) {
  1508. return;
  1509. }
  1510. _default_get_entry(getThis(), "name", sizeof("name"), return_value TSRMLS_CC);
  1511. }
  1512. /* }}} */
  1513. /* {{{ proto public bool ReflectionFunction::isClosure()
  1514. Returns whether this is a closure */
  1515. ZEND_METHOD(reflection_function, isClosure)
  1516. {
  1517. reflection_object *intern;
  1518. zend_function *fptr;
  1519. if (zend_parse_parameters_none() == FAILURE) {
  1520. return;
  1521. }
  1522. GET_REFLECTION_OBJECT_PTR(fptr);
  1523. RETURN_BOOL(fptr->common.fn_flags & ZEND_ACC_CLOSURE);
  1524. }
  1525. /* }}} */
  1526. /* {{{ proto public bool ReflectionFunction::getClosureThis()
  1527. Returns this pointer bound to closure */
  1528. ZEND_METHOD(reflection_function, getClosureThis)
  1529. {
  1530. reflection_object *intern;
  1531. zend_function *fptr;
  1532. zval* closure_this;
  1533. if (zend_parse_parameters_none() == FAILURE) {
  1534. return;
  1535. }
  1536. GET_REFLECTION_OBJECT_PTR(fptr);
  1537. if (intern->obj) {
  1538. closure_this = zend_get_closure_this_ptr(intern->obj TSRMLS_CC);
  1539. if (closure_this) {
  1540. RETURN_ZVAL(closure_this, 1, 0);
  1541. }
  1542. }
  1543. }
  1544. /* }}} */
  1545. /* {{{ proto public ReflectionClass ReflectionFunction::getClosureScopeClass()
  1546. Returns the scope associated to the closure */
  1547. ZEND_METHOD(reflection_function, getClosureScopeClass)
  1548. {
  1549. reflection_object *intern;
  1550. zend_function *fptr;
  1551. const zend_function *closure_func;
  1552. if (zend_parse_parameters_none() == FAILURE) {
  1553. return;
  1554. }
  1555. GET_REFLECTION_OBJECT_PTR(fptr);
  1556. if (intern->obj) {
  1557. closure_func = zend_get_closure_method_def(intern->obj TSRMLS_CC);
  1558. if (closure_func && closure_func->common.scope) {
  1559. zend_reflection_class_factory(closure_func->common.scope, return_value TSRMLS_CC);
  1560. }
  1561. }
  1562. }
  1563. /* }}} */
  1564. /* {{{ proto public mixed ReflectionFunction::getClosure()
  1565. Returns a dynamically created closure for the function */
  1566. ZEND_METHOD(reflection_function, getClosure)
  1567. {
  1568. reflection_object *intern;
  1569. zend_function *fptr;
  1570. if (zend_parse_parameters_none() == FAILURE) {
  1571. return;
  1572. }
  1573. GET_REFLECTION_OBJECT_PTR(fptr);
  1574. zend_create_closure(return_value, fptr, NULL, NULL TSRMLS_CC);
  1575. }
  1576. /* }}} */
  1577. /* {{{ proto public bool ReflectionFunction::isInternal()
  1578. Returns whether this is an internal function */
  1579. ZEND_METHOD(reflection_function, isInternal)
  1580. {
  1581. reflection_object *intern;
  1582. zend_function *fptr;
  1583. if (zend_parse_parameters_none() == FAILURE) {
  1584. return;
  1585. }
  1586. GET_REFLECTION_OBJECT_PTR(fptr);
  1587. RETURN_BOOL(fptr->type == ZEND_INTERNAL_FUNCTION);
  1588. }
  1589. /* }}} */
  1590. /* {{{ proto public bool ReflectionFunction::isUserDefined()
  1591. Returns whether this is an user-defined function */
  1592. ZEND_METHOD(reflection_function, isUserDefined)
  1593. {
  1594. reflection_object *intern;
  1595. zend_function *fptr;
  1596. if (zend_parse_parameters_none() == FAILURE) {
  1597. return;
  1598. }
  1599. GET_REFLECTION_OBJECT_PTR(fptr);
  1600. RETURN_BOOL(fptr->type == ZEND_USER_FUNCTION);
  1601. }
  1602. /* }}} */
  1603. /* {{{ proto public bool ReflectionFunction::isDisabled()
  1604. Returns whether this function has been disabled or not */
  1605. ZEND_METHOD(reflection_function, isDisabled)
  1606. {
  1607. reflection_object *intern;
  1608. zend_function *fptr;
  1609. METHOD_NOTSTATIC(reflection_function_ptr);
  1610. GET_REFLECTION_OBJECT_PTR(fptr);
  1611. RETURN_BOOL(fptr->type == ZEND_INTERNAL_FUNCTION && fptr->internal_function.handler == zif_display_disabled_function);
  1612. }
  1613. /* }}} */
  1614. /* {{{ proto public string ReflectionFunction::getFileName()
  1615. Returns the filename of the file this function was declared in */
  1616. ZEND_METHOD(reflection_function, getFileName)
  1617. {
  1618. reflection_object *intern;
  1619. zend_function *fptr;
  1620. if (zend_parse_parameters_none() == FAILURE) {
  1621. return;
  1622. }
  1623. GET_REFLECTION_OBJECT_PTR(fptr);
  1624. if (fptr->type == ZEND_USER_FUNCTION) {
  1625. RETURN_STRING(fptr->op_array.filename, 1);
  1626. }
  1627. RETURN_FALSE;
  1628. }
  1629. /* }}} */
  1630. /* {{{ proto public int ReflectionFunction::getStartLine()
  1631. Returns the line this function's declaration starts at */
  1632. ZEND_METHOD(reflection_function, getStartLine)
  1633. {
  1634. reflection_object *intern;
  1635. zend_function *fptr;
  1636. if (zend_parse_parameters_none() == FAILURE) {
  1637. return;
  1638. }
  1639. GET_REFLECTION_OBJECT_PTR(fptr);
  1640. if (fptr->type == ZEND_USER_FUNCTION) {
  1641. RETURN_LONG(fptr->op_array.line_start);
  1642. }
  1643. RETURN_FALSE;
  1644. }
  1645. /* }}} */
  1646. /* {{{ proto public int ReflectionFunction::getEndLine()
  1647. Returns the line this function's declaration ends at */
  1648. ZEND_METHOD(reflection_function, getEndLine)
  1649. {
  1650. reflection_object *intern;
  1651. zend_function *fptr;
  1652. if (zend_parse_parameters_none() == FAILURE) {
  1653. return;
  1654. }
  1655. GET_REFLECTION_OBJECT_PTR(fptr);
  1656. if (fptr->type == ZEND_USER_FUNCTION) {
  1657. RETURN_LONG(fptr->op_array.line_end);
  1658. }
  1659. RETURN_FALSE;
  1660. }
  1661. /* }}} */
  1662. /* {{{ proto public string ReflectionFunction::getDocComment()
  1663. Returns the doc comment for this function */
  1664. ZEND_METHOD(reflection_function, getDocComment)
  1665. {
  1666. reflection_object *intern;
  1667. zend_function *fptr;
  1668. if (zend_parse_parameters_none() == FAILURE) {
  1669. return;
  1670. }
  1671. GET_REFLECTION_OBJECT_PTR(fptr);
  1672. if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) {
  1673. RETURN_STRINGL(fptr->op_array.doc_comment, fptr->op_array.doc_comment_len, 1);
  1674. }
  1675. RETURN_FALSE;
  1676. }
  1677. /* }}} */
  1678. /* {{{ proto public array ReflectionFunction::getStaticVariables()
  1679. Returns an associative array containing this function's static variables and their values */
  1680. ZEND_METHOD(reflection_function, getStaticVariables)
  1681. {
  1682. zval *tmp_copy;
  1683. reflection_object *intern;
  1684. zend_function *fptr;
  1685. if (zend_parse_parameters_none() == FAILURE) {
  1686. return;
  1687. }
  1688. GET_REFLECTION_OBJECT_PTR(fptr);
  1689. /* Return an empty array in case no static variables exist */
  1690. array_init(return_value);
  1691. if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.static_variables != NULL) {
  1692. zend_hash_apply_with_argument(fptr->op_array.static_variables, (apply_func_arg_t) zval_update_constant_inline_change, fptr->common.scope TSRMLS_CC);
  1693. zend_hash_copy(Z_ARRVAL_P(return_value), fptr->op_array.static_variables, (copy_ctor_func_t) zval_add_ref, (void *) &tmp_copy, sizeof(zval *));
  1694. }
  1695. }
  1696. /* }}} */
  1697. /* {{{ proto public mixed ReflectionFunction::invoke([mixed* args])
  1698. Invokes the function */
  1699. ZEND_METHOD(reflection_function, invoke)
  1700. {
  1701. zval *retval_ptr;
  1702. zval ***params = NULL;
  1703. int result, num_args = 0;
  1704. zend_fcall_info fci;
  1705. zend_fcall_info_cache fcc;
  1706. reflection_object *intern;
  1707. zend_function *fptr;
  1708. METHOD_NOTSTATIC(reflection_function_ptr);
  1709. GET_REFLECTION_OBJECT_PTR(fptr);
  1710. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "*", &params, &num_args) == FAILURE) {
  1711. return;
  1712. }
  1713. fci.size = sizeof(fci);
  1714. fci.function_table = NULL;
  1715. fci.function_name = NULL;
  1716. fci.symbol_table = NULL;
  1717. fci.object_ptr = NULL;
  1718. fci.retval_ptr_ptr = &retval_ptr;
  1719. fci.param_count = num_args;
  1720. fci.params = params;
  1721. fci.no_separation = 1;
  1722. fcc.initialized = 1;
  1723. fcc.function_handler = fptr;
  1724. fcc.calling_scope = EG(scope);
  1725. fcc.called_scope = NULL;
  1726. fcc.object_ptr = NULL;
  1727. result = zend_call_function(&fci, &fcc TSRMLS_CC);
  1728. if (num_args) {
  1729. efree(params);
  1730. }
  1731. if (result == FAILURE) {
  1732. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  1733. "Invocation of function %s() failed", fptr->common.function_name);
  1734. return;
  1735. }
  1736. if (retval_ptr) {
  1737. COPY_PZVAL_TO_ZVAL(*return_value, retval_ptr);
  1738. }
  1739. }
  1740. /* }}} */
  1741. static int _zval_array_to_c_array(zval **arg, zval ****params TSRMLS_DC) /* {{{ */
  1742. {
  1743. *(*params)++ = arg;
  1744. return ZEND_HASH_APPLY_KEEP;
  1745. } /* }}} */
  1746. /* {{{ proto public mixed ReflectionFunction::invokeArgs(array args)
  1747. Invokes the function and pass its arguments as array. */
  1748. ZEND_METHOD(reflection_function, invokeArgs)
  1749. {
  1750. zval *retval_ptr;
  1751. zval ***params;
  1752. int result;
  1753. int argc;
  1754. zend_fcall_info fci;
  1755. zend_fcall_info_cache fcc;
  1756. reflection_object *intern;
  1757. zend_function *fptr;
  1758. zval *param_array;
  1759. METHOD_NOTSTATIC(reflection_function_ptr);
  1760. GET_REFLECTION_OBJECT_PTR(fptr);
  1761. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &param_array) == FAILURE) {
  1762. return;
  1763. }
  1764. argc = zend_hash_num_elements(Z_ARRVAL_P(param_array));
  1765. params = safe_emalloc(sizeof(zval **), argc, 0);
  1766. zend_hash_apply_with_argument(Z_ARRVAL_P(param_array), (apply_func_arg_t)_zval_array_to_c_array, &params TSRMLS_CC);
  1767. params -= argc;
  1768. fci.size = sizeof(fci);
  1769. fci.function_table = NULL;
  1770. fci.function_name = NULL;
  1771. fci.symbol_table = NULL;
  1772. fci.object_ptr = NULL;
  1773. fci.retval_ptr_ptr = &retval_ptr;
  1774. fci.param_count = argc;
  1775. fci.params = params;
  1776. fci.no_separation = 1;
  1777. fcc.initialized = 1;
  1778. fcc.function_handler = fptr;
  1779. fcc.calling_scope = EG(scope);
  1780. fcc.called_scope = NULL;
  1781. fcc.object_ptr = NULL;
  1782. result = zend_call_function(&fci, &fcc TSRMLS_CC);
  1783. efree(params);
  1784. if (result == FAILURE) {
  1785. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  1786. "Invocation of function %s() failed", fptr->common.function_name);
  1787. return;
  1788. }
  1789. if (retval_ptr) {
  1790. COPY_PZVAL_TO_ZVAL(*return_value, retval_ptr);
  1791. }
  1792. }
  1793. /* }}} */
  1794. /* {{{ proto public bool ReflectionFunction::returnsReference()
  1795. Gets whether this function returns a reference */
  1796. ZEND_METHOD(reflection_function, returnsReference)
  1797. {
  1798. reflection_object *intern;
  1799. zend_function *fptr;
  1800. METHOD_NOTSTATIC(reflection_function_abstract_ptr);
  1801. GET_REFLECTION_OBJECT_PTR(fptr);
  1802. RETURN_BOOL((fptr->op_array.fn_flags & ZEND_ACC_RETURN_REFERENCE) != 0);
  1803. }
  1804. /* }}} */
  1805. /* {{{ proto public bool ReflectionFunction::getNumberOfParameters()
  1806. Gets the number of required parameters */
  1807. ZEND_METHOD(reflection_function, getNumberOfParameters)
  1808. {
  1809. reflection_object *intern;
  1810. zend_function *fptr;
  1811. METHOD_NOTSTATIC(reflection_function_abstract_ptr);
  1812. GET_REFLECTION_OBJECT_PTR(fptr);
  1813. RETURN_LONG(fptr->common.num_args);
  1814. }
  1815. /* }}} */
  1816. /* {{{ proto public bool ReflectionFunction::getNumberOfRequiredParameters()
  1817. Gets the number of required parameters */
  1818. ZEND_METHOD(reflection_function, getNumberOfRequiredParameters)
  1819. {
  1820. reflection_object *intern;
  1821. zend_function *fptr;
  1822. METHOD_NOTSTATIC(reflection_function_abstract_ptr);
  1823. GET_REFLECTION_OBJECT_PTR(fptr);
  1824. RETURN_LONG(fptr->common.required_num_args);
  1825. }
  1826. /* }}} */
  1827. /* {{{ proto public ReflectionParameter[] ReflectionFunction::getParameters()
  1828. Returns an array of parameter objects for this function */
  1829. ZEND_METHOD(reflection_function, getParameters)
  1830. {
  1831. reflection_object *intern;
  1832. zend_function *fptr;
  1833. zend_uint i;
  1834. struct _zend_arg_info *arg_info;
  1835. METHOD_NOTSTATIC(reflection_function_abstract_ptr);
  1836. GET_REFLECTION_OBJECT_PTR(fptr);
  1837. arg_info= fptr->common.arg_info;
  1838. array_init(return_value);
  1839. for (i = 0; i < fptr->common.num_args; i++) {
  1840. zval *parameter;
  1841. ALLOC_ZVAL(parameter);
  1842. reflection_parameter_factory(_copy_function(fptr TSRMLS_CC), intern->obj, arg_info, i, fptr->common.required_num_args, parameter TSRMLS_CC);
  1843. add_next_index_zval(return_value, parameter);
  1844. arg_info++;
  1845. }
  1846. }
  1847. /* }}} */
  1848. /* {{{ proto public ReflectionExtension|NULL ReflectionFunction::getExtension()
  1849. Returns NULL or the extension the function belongs to */
  1850. ZEND_METHOD(reflection_function, getExtension)
  1851. {
  1852. reflection_object *intern;
  1853. zend_function *fptr;
  1854. zend_internal_function *internal;
  1855. METHOD_NOTSTATIC(reflection_function_abstract_ptr);
  1856. GET_REFLECTION_OBJECT_PTR(fptr);
  1857. if (fptr->type != ZEND_INTERNAL_FUNCTION) {
  1858. RETURN_NULL();
  1859. }
  1860. internal = (zend_internal_function *)fptr;
  1861. if (internal->module) {
  1862. reflection_extension_factory(return_value, internal->module->name TSRMLS_CC);
  1863. } else {
  1864. RETURN_NULL();
  1865. }
  1866. }
  1867. /* }}} */
  1868. /* {{{ proto public string|false ReflectionFunction::getExtensionName()
  1869. Returns false or the name of the extension the function belongs to */
  1870. ZEND_METHOD(reflection_function, getExtensionName)
  1871. {
  1872. reflection_object *intern;
  1873. zend_function *fptr;
  1874. zend_internal_function *internal;
  1875. METHOD_NOTSTATIC(reflection_function_abstract_ptr);
  1876. GET_REFLECTION_OBJECT_PTR(fptr);
  1877. if (fptr->type != ZEND_INTERNAL_FUNCTION) {
  1878. RETURN_FALSE;
  1879. }
  1880. internal = (zend_internal_function *)fptr;
  1881. if (internal->module) {
  1882. RETURN_STRING(internal->module->name, 1);
  1883. } else {
  1884. RETURN_FALSE;
  1885. }
  1886. }
  1887. /* }}} */
  1888. /* {{{ proto public static mixed ReflectionParameter::export(mixed function, mixed parameter [, bool return]) throws ReflectionException
  1889. Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  1890. ZEND_METHOD(reflection_parameter, export)
  1891. {
  1892. _reflection_export(INTERNAL_FUNCTION_PARAM_PASSTHRU, reflection_parameter_ptr, 2);
  1893. }
  1894. /* }}} */
  1895. /* {{{ proto public void ReflectionParameter::__construct(mixed function, mixed parameter)
  1896. Constructor. Throws an Exception in case the given method does not exist */
  1897. ZEND_METHOD(reflection_parameter, __construct)
  1898. {
  1899. parameter_reference *ref;
  1900. zval *reference, **parameter;
  1901. zval *object;
  1902. zval *name;
  1903. reflection_object *intern;
  1904. zend_function *fptr;
  1905. struct _zend_arg_info *arg_info;
  1906. int position;
  1907. zend_class_entry *ce = NULL;
  1908. zend_bool is_closure = 0;
  1909. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zZ", &reference, &parameter) == FAILURE) {
  1910. return;
  1911. }
  1912. object = getThis();
  1913. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  1914. if (intern == NULL) {
  1915. return;
  1916. }
  1917. /* First, find the function */
  1918. switch (Z_TYPE_P(reference)) {
  1919. case IS_STRING: {
  1920. unsigned int lcname_len;
  1921. char *lcname;
  1922. lcname_len = Z_STRLEN_P(reference);
  1923. lcname = zend_str_tolower_dup(Z_STRVAL_P(reference), lcname_len);
  1924. if (zend_hash_find(EG(function_table), lcname, lcname_len + 1, (void**) &fptr) == FAILURE) {
  1925. efree(lcname);
  1926. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  1927. "Function %s() does not exist", Z_STRVAL_P(reference));
  1928. return;
  1929. }
  1930. efree(lcname);
  1931. }
  1932. ce = fptr->common.scope;
  1933. break;
  1934. case IS_ARRAY: {
  1935. zval **classref;
  1936. zval **method;
  1937. zend_class_entry **pce;
  1938. unsigned int lcname_len;
  1939. char *lcname;
  1940. if ((zend_hash_index_find(Z_ARRVAL_P(reference), 0, (void **) &classref) == FAILURE)
  1941. || (zend_hash_index_find(Z_ARRVAL_P(reference), 1, (void **) &method) == FAILURE))
  1942. {
  1943. _DO_THROW("Expected array($object, $method) or array($classname, $method)");
  1944. /* returns out of this function */
  1945. }
  1946. if (Z_TYPE_PP(classref) == IS_OBJECT) {
  1947. ce = Z_OBJCE_PP(classref);
  1948. } else {
  1949. convert_to_string_ex(classref);
  1950. if (zend_lookup_class(Z_STRVAL_PP(classref), Z_STRLEN_PP(classref), &pce TSRMLS_CC) == FAILURE) {
  1951. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  1952. "Class %s does not exist", Z_STRVAL_PP(classref));
  1953. return;
  1954. }
  1955. ce = *pce;
  1956. }
  1957. convert_to_string_ex(method);
  1958. lcname_len = Z_STRLEN_PP(method);
  1959. lcname = zend_str_tolower_dup(Z_STRVAL_PP(method), lcname_len);
  1960. if (ce == zend_ce_closure && Z_TYPE_PP(classref) == IS_OBJECT
  1961. && (lcname_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1)
  1962. && memcmp(lcname, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0
  1963. && (fptr = zend_get_closure_invoke_method(*classref TSRMLS_CC)) != NULL)
  1964. {
  1965. /* nothing to do. don't set is_closure since is the invoke handler,
  1966. - not the closure itself */
  1967. } else if (zend_hash_find(&ce->function_table, lcname, lcname_len + 1, (void **) &fptr) == FAILURE) {
  1968. efree(lcname);
  1969. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  1970. "Method %s::%s() does not exist", ce->name, Z_STRVAL_PP(method));
  1971. return;
  1972. }
  1973. efree(lcname);
  1974. }
  1975. break;
  1976. case IS_OBJECT: {
  1977. ce = Z_OBJCE_P(reference);
  1978. if (instanceof_function(ce, zend_ce_closure TSRMLS_CC)) {
  1979. fptr = (zend_function *)zend_get_closure_method_def(reference TSRMLS_CC);
  1980. Z_ADDREF_P(reference);
  1981. is_closure = 1;
  1982. } else if (zend_hash_find(&ce->function_table, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME), (void **)&fptr) == FAILURE) {
  1983. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  1984. "Method %s::%s() does not exist", ce->name, ZEND_INVOKE_FUNC_NAME);
  1985. return;
  1986. }
  1987. }
  1988. break;
  1989. default:
  1990. _DO_THROW("The parameter class is expected to be either a string, an array(class, method) or a callable object");
  1991. /* returns out of this function */
  1992. }
  1993. /* Now, search for the parameter */
  1994. arg_info = fptr->common.arg_info;
  1995. if (Z_TYPE_PP(parameter) == IS_LONG) {
  1996. position= Z_LVAL_PP(parameter);
  1997. if (position < 0 || (zend_uint)position >= fptr->common.num_args) {
  1998. if (fptr->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) {
  1999. if (fptr->type != ZEND_OVERLOADED_FUNCTION) {
  2000. efree((char*)fptr->common.function_name);
  2001. }
  2002. efree(fptr);
  2003. }
  2004. if (is_closure) {
  2005. zval_ptr_dtor(&reference);
  2006. }
  2007. _DO_THROW("The parameter specified by its offset could not be found");
  2008. /* returns out of this function */
  2009. }
  2010. } else {
  2011. zend_uint i;
  2012. position= -1;
  2013. convert_to_string_ex(parameter);
  2014. for (i = 0; i < fptr->common.num_args; i++) {
  2015. if (arg_info[i].name && strcmp(arg_info[i].name, Z_STRVAL_PP(parameter)) == 0) {
  2016. position= i;
  2017. break;
  2018. }
  2019. }
  2020. if (position == -1) {
  2021. if (fptr->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) {
  2022. if (fptr->type != ZEND_OVERLOADED_FUNCTION) {
  2023. efree((char*)fptr->common.function_name);
  2024. }
  2025. efree(fptr);
  2026. }
  2027. if (is_closure) {
  2028. zval_ptr_dtor(&reference);
  2029. }
  2030. _DO_THROW("The parameter specified by its name could not be found");
  2031. /* returns out of this function */
  2032. }
  2033. }
  2034. MAKE_STD_ZVAL(name);
  2035. if (arg_info[position].name) {
  2036. ZVAL_STRINGL(name, arg_info[position].name, arg_info[position].name_len, 1);
  2037. } else {
  2038. ZVAL_NULL(name);
  2039. }
  2040. reflection_update_property(object, "name", name);
  2041. ref = (parameter_reference*) emalloc(sizeof(parameter_reference));
  2042. ref->arg_info = &arg_info[position];
  2043. ref->offset = (zend_uint)position;
  2044. ref->required = fptr->common.required_num_args;
  2045. ref->fptr = fptr;
  2046. /* TODO: copy fptr */
  2047. intern->ptr = ref;
  2048. intern->ref_type = REF_TYPE_PARAMETER;
  2049. intern->ce = ce;
  2050. if (reference && is_closure) {
  2051. intern->obj = reference;
  2052. }
  2053. }
  2054. /* }}} */
  2055. /* {{{ proto public string ReflectionParameter::__toString()
  2056. Returns a string representation */
  2057. ZEND_METHOD(reflection_parameter, __toString)
  2058. {
  2059. reflection_object *intern;
  2060. parameter_reference *param;
  2061. string str;
  2062. if (zend_parse_parameters_none() == FAILURE) {
  2063. return;
  2064. }
  2065. GET_REFLECTION_OBJECT_PTR(param);
  2066. string_init(&str);
  2067. _parameter_string(&str, param->fptr, param->arg_info, param->offset, param->required, "" TSRMLS_CC);
  2068. RETURN_STRINGL(str.string, str.len - 1, 0);
  2069. }
  2070. /* }}} */
  2071. /* {{{ proto public string ReflectionParameter::getName()
  2072. Returns this parameters's name */
  2073. ZEND_METHOD(reflection_parameter, getName)
  2074. {
  2075. if (zend_parse_parameters_none() == FAILURE) {
  2076. return;
  2077. }
  2078. _default_get_entry(getThis(), "name", sizeof("name"), return_value TSRMLS_CC);
  2079. }
  2080. /* }}} */
  2081. /* {{{ proto public ReflectionFunction ReflectionParameter::getDeclaringFunction()
  2082. Returns the ReflectionFunction for the function of this parameter */
  2083. ZEND_METHOD(reflection_parameter, getDeclaringFunction)
  2084. {
  2085. reflection_object *intern;
  2086. parameter_reference *param;
  2087. if (zend_parse_parameters_none() == FAILURE) {
  2088. return;
  2089. }
  2090. GET_REFLECTION_OBJECT_PTR(param);
  2091. if (!param->fptr->common.scope) {
  2092. reflection_function_factory(_copy_function(param->fptr TSRMLS_CC), intern->obj, return_value TSRMLS_CC);
  2093. } else {
  2094. reflection_method_factory(param->fptr->common.scope, _copy_function(param->fptr TSRMLS_CC), intern->obj, return_value TSRMLS_CC);
  2095. }
  2096. }
  2097. /* }}} */
  2098. /* {{{ proto public ReflectionClass|NULL ReflectionParameter::getDeclaringClass()
  2099. Returns in which class this parameter is defined (not the typehint of the parameter) */
  2100. ZEND_METHOD(reflection_parameter, getDeclaringClass)
  2101. {
  2102. reflection_object *intern;
  2103. parameter_reference *param;
  2104. if (zend_parse_parameters_none() == FAILURE) {
  2105. return;
  2106. }
  2107. GET_REFLECTION_OBJECT_PTR(param);
  2108. if (param->fptr->common.scope) {
  2109. zend_reflection_class_factory(param->fptr->common.scope, return_value TSRMLS_CC);
  2110. }
  2111. }
  2112. /* }}} */
  2113. /* {{{ proto public ReflectionClass|NULL ReflectionParameter::getClass()
  2114. Returns this parameters's class hint or NULL if there is none */
  2115. ZEND_METHOD(reflection_parameter, getClass)
  2116. {
  2117. reflection_object *intern;
  2118. parameter_reference *param;
  2119. zend_class_entry **pce, *ce;
  2120. if (zend_parse_parameters_none() == FAILURE) {
  2121. return;
  2122. }
  2123. GET_REFLECTION_OBJECT_PTR(param);
  2124. if (param->arg_info->class_name) {
  2125. /* Class name is stored as a string, we might also get "self" or "parent"
  2126. * - For "self", simply use the function scope. If scope is NULL then
  2127. * the function is global and thus self does not make any sense
  2128. *
  2129. * - For "parent", use the function scope's parent. If scope is NULL then
  2130. * the function is global and thus parent does not make any sense.
  2131. * If the parent is NULL then the class does not extend anything and
  2132. * thus parent does not make any sense, either.
  2133. *
  2134. * TODO: Think about moving these checks to the compiler or some sort of
  2135. * lint-mode.
  2136. */
  2137. if (0 == zend_binary_strcasecmp(param->arg_info->class_name, param->arg_info->class_name_len, "self", sizeof("self")- 1)) {
  2138. ce = param->fptr->common.scope;
  2139. if (!ce) {
  2140. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2141. "Parameter uses 'self' as type hint but function is not a class member!");
  2142. return;
  2143. }
  2144. pce= &ce;
  2145. } else if (0 == zend_binary_strcasecmp(param->arg_info->class_name, param->arg_info->class_name_len, "parent", sizeof("parent")- 1)) {
  2146. ce = param->fptr->common.scope;
  2147. if (!ce) {
  2148. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2149. "Parameter uses 'parent' as type hint but function is not a class member!");
  2150. return;
  2151. }
  2152. if (!ce->parent) {
  2153. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2154. "Parameter uses 'parent' as type hint although class does not have a parent!");
  2155. return;
  2156. }
  2157. pce= &ce->parent;
  2158. } else if (zend_lookup_class(param->arg_info->class_name, param->arg_info->class_name_len, &pce TSRMLS_CC) == FAILURE) {
  2159. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2160. "Class %s does not exist", param->arg_info->class_name);
  2161. return;
  2162. }
  2163. zend_reflection_class_factory(*pce, return_value TSRMLS_CC);
  2164. }
  2165. }
  2166. /* }}} */
  2167. /* {{{ proto public bool ReflectionParameter::isArray()
  2168. Returns whether parameter MUST be an array */
  2169. ZEND_METHOD(reflection_parameter, isArray)
  2170. {
  2171. reflection_object *intern;
  2172. parameter_reference *param;
  2173. if (zend_parse_parameters_none() == FAILURE) {
  2174. return;
  2175. }
  2176. GET_REFLECTION_OBJECT_PTR(param);
  2177. RETVAL_BOOL(param->arg_info->type_hint == IS_ARRAY);
  2178. }
  2179. /* }}} */
  2180. /* {{{ proto public bool ReflectionParameter::isCallable()
  2181. Returns whether parameter MUST be callable */
  2182. ZEND_METHOD(reflection_parameter, isCallable)
  2183. {
  2184. reflection_object *intern;
  2185. parameter_reference *param;
  2186. if (zend_parse_parameters_none() == FAILURE) {
  2187. return;
  2188. }
  2189. GET_REFLECTION_OBJECT_PTR(param);
  2190. RETVAL_BOOL(param->arg_info->type_hint == IS_CALLABLE);
  2191. }
  2192. /* }}} */
  2193. /* {{{ proto public bool ReflectionParameter::allowsNull()
  2194. Returns whether NULL is allowed as this parameters's value */
  2195. ZEND_METHOD(reflection_parameter, allowsNull)
  2196. {
  2197. reflection_object *intern;
  2198. parameter_reference *param;
  2199. if (zend_parse_parameters_none() == FAILURE) {
  2200. return;
  2201. }
  2202. GET_REFLECTION_OBJECT_PTR(param);
  2203. RETVAL_BOOL(param->arg_info->allow_null);
  2204. }
  2205. /* }}} */
  2206. /* {{{ proto public bool ReflectionParameter::isPassedByReference()
  2207. Returns whether this parameters is passed to by reference */
  2208. ZEND_METHOD(reflection_parameter, isPassedByReference)
  2209. {
  2210. reflection_object *intern;
  2211. parameter_reference *param;
  2212. if (zend_parse_parameters_none() == FAILURE) {
  2213. return;
  2214. }
  2215. GET_REFLECTION_OBJECT_PTR(param);
  2216. RETVAL_BOOL(param->arg_info->pass_by_reference);
  2217. }
  2218. /* }}} */
  2219. /* {{{ proto public bool ReflectionParameter::canBePassedByValue()
  2220. Returns whether this parameter can be passed by value */
  2221. ZEND_METHOD(reflection_parameter, canBePassedByValue)
  2222. {
  2223. reflection_object *intern;
  2224. parameter_reference *param;
  2225. if (zend_parse_parameters_none() == FAILURE) {
  2226. return;
  2227. }
  2228. GET_REFLECTION_OBJECT_PTR(param);
  2229. /* true if it's ZEND_SEND_BY_VAL or ZEND_SEND_PREFER_REF */
  2230. RETVAL_BOOL(param->arg_info->pass_by_reference != ZEND_SEND_BY_REF);
  2231. }
  2232. /* }}} */
  2233. /* {{{ proto public bool ReflectionParameter::getPosition()
  2234. Returns whether this parameter is an optional parameter */
  2235. ZEND_METHOD(reflection_parameter, getPosition)
  2236. {
  2237. reflection_object *intern;
  2238. parameter_reference *param;
  2239. if (zend_parse_parameters_none() == FAILURE) {
  2240. return;
  2241. }
  2242. GET_REFLECTION_OBJECT_PTR(param);
  2243. RETVAL_LONG(param->offset);
  2244. }
  2245. /* }}} */
  2246. /* {{{ proto public bool ReflectionParameter::isOptional()
  2247. Returns whether this parameter is an optional parameter */
  2248. ZEND_METHOD(reflection_parameter, isOptional)
  2249. {
  2250. reflection_object *intern;
  2251. parameter_reference *param;
  2252. if (zend_parse_parameters_none() == FAILURE) {
  2253. return;
  2254. }
  2255. GET_REFLECTION_OBJECT_PTR(param);
  2256. RETVAL_BOOL(param->offset >= param->required);
  2257. }
  2258. /* }}} */
  2259. /* {{{ proto public bool ReflectionParameter::isDefaultValueAvailable()
  2260. Returns whether the default value of this parameter is available */
  2261. ZEND_METHOD(reflection_parameter, isDefaultValueAvailable)
  2262. {
  2263. reflection_object *intern;
  2264. parameter_reference *param;
  2265. zend_op *precv;
  2266. if (zend_parse_parameters_none() == FAILURE) {
  2267. return;
  2268. }
  2269. GET_REFLECTION_OBJECT_PTR(param);
  2270. if (param->fptr->type != ZEND_USER_FUNCTION)
  2271. {
  2272. RETURN_FALSE;
  2273. }
  2274. precv = _get_recv_op((zend_op_array*)param->fptr, param->offset);
  2275. if (!precv || precv->opcode != ZEND_RECV_INIT || precv->op2_type == IS_UNUSED) {
  2276. RETURN_FALSE;
  2277. }
  2278. RETURN_TRUE;
  2279. }
  2280. /* }}} */
  2281. /* {{{ proto public bool ReflectionParameter::getDefaultValue()
  2282. Returns the default value of this parameter or throws an exception */
  2283. ZEND_METHOD(reflection_parameter, getDefaultValue)
  2284. {
  2285. parameter_reference *param;
  2286. zend_op *precv;
  2287. zend_class_entry *old_scope;
  2288. if (zend_parse_parameters_none() == FAILURE) {
  2289. return;
  2290. }
  2291. param = _reflection_param_get_default_param(INTERNAL_FUNCTION_PARAM_PASSTHRU);
  2292. if (!param) {
  2293. return;
  2294. }
  2295. precv = _reflection_param_get_default_precv(INTERNAL_FUNCTION_PARAM_PASSTHRU, param);
  2296. if (!precv) {
  2297. return;
  2298. }
  2299. *return_value = *precv->op2.zv;
  2300. INIT_PZVAL(return_value);
  2301. if (!IS_CONSTANT_TYPE(Z_TYPE_P(return_value))) {
  2302. if (Z_TYPE_P(return_value) != IS_ARRAY) {
  2303. zval_copy_ctor(return_value);
  2304. } else {
  2305. HashTable *ht;
  2306. ALLOC_HASHTABLE(ht);
  2307. zend_hash_init(ht, zend_hash_num_elements(Z_ARRVAL_P(return_value)), NULL, ZVAL_PTR_DTOR, 0);
  2308. zend_hash_copy(ht, Z_ARRVAL_P(return_value), (copy_ctor_func_t) reflection_zval_deep_copy, NULL, sizeof(zval *));
  2309. Z_ARRVAL_P(return_value) = ht;
  2310. }
  2311. }
  2312. old_scope = EG(scope);
  2313. EG(scope) = param->fptr->common.scope;
  2314. zval_update_constant_ex(&return_value, 0, NULL TSRMLS_CC);
  2315. EG(scope) = old_scope;
  2316. }
  2317. /* }}} */
  2318. /* {{{ proto public bool ReflectionParameter::isDefaultValueConstant()
  2319. Returns whether the default value of this parameter is constant */
  2320. ZEND_METHOD(reflection_parameter, isDefaultValueConstant)
  2321. {
  2322. zend_op *precv;
  2323. parameter_reference *param;
  2324. if (zend_parse_parameters_none() == FAILURE) {
  2325. return;
  2326. }
  2327. param = _reflection_param_get_default_param(INTERNAL_FUNCTION_PARAM_PASSTHRU);
  2328. if (!param) {
  2329. RETURN_FALSE;
  2330. }
  2331. precv = _reflection_param_get_default_precv(INTERNAL_FUNCTION_PARAM_PASSTHRU, param);
  2332. if (precv && (Z_TYPE_P(precv->op2.zv) & IS_CONSTANT_TYPE_MASK) == IS_CONSTANT) {
  2333. RETURN_TRUE;
  2334. }
  2335. RETURN_FALSE;
  2336. }
  2337. /* }}} */
  2338. /* {{{ proto public mixed ReflectionParameter::getDefaultValueConstantName()
  2339. Returns the default value's constant name if default value is constant or null */
  2340. ZEND_METHOD(reflection_parameter, getDefaultValueConstantName)
  2341. {
  2342. zend_op *precv;
  2343. parameter_reference *param;
  2344. if (zend_parse_parameters_none() == FAILURE) {
  2345. return;
  2346. }
  2347. param = _reflection_param_get_default_param(INTERNAL_FUNCTION_PARAM_PASSTHRU);
  2348. if (!param) {
  2349. return;
  2350. }
  2351. precv = _reflection_param_get_default_precv(INTERNAL_FUNCTION_PARAM_PASSTHRU, param);
  2352. if (precv && (Z_TYPE_P(precv->op2.zv) & IS_CONSTANT_TYPE_MASK) == IS_CONSTANT) {
  2353. RETURN_STRINGL(Z_STRVAL_P(precv->op2.zv), Z_STRLEN_P(precv->op2.zv), 1);
  2354. }
  2355. }
  2356. /* }}} */
  2357. /* {{{ proto public bool ReflectionParameter::isVariadic()
  2358. Returns whether this parameter is a variadic parameter */
  2359. ZEND_METHOD(reflection_parameter, isVariadic)
  2360. {
  2361. reflection_object *intern;
  2362. parameter_reference *param;
  2363. if (zend_parse_parameters_none() == FAILURE) {
  2364. return;
  2365. }
  2366. GET_REFLECTION_OBJECT_PTR(param);
  2367. RETVAL_BOOL(param->arg_info->is_variadic);
  2368. }
  2369. /* }}} */
  2370. /* {{{ proto public static mixed ReflectionMethod::export(mixed class, string name [, bool return]) throws ReflectionException
  2371. Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  2372. ZEND_METHOD(reflection_method, export)
  2373. {
  2374. _reflection_export(INTERNAL_FUNCTION_PARAM_PASSTHRU, reflection_method_ptr, 2);
  2375. }
  2376. /* }}} */
  2377. /* {{{ proto public void ReflectionMethod::__construct(mixed class_or_method [, string name])
  2378. Constructor. Throws an Exception in case the given method does not exist */
  2379. ZEND_METHOD(reflection_method, __construct)
  2380. {
  2381. zval *name, *classname;
  2382. zval *object, *orig_obj;
  2383. reflection_object *intern;
  2384. char *lcname;
  2385. zend_class_entry **pce;
  2386. zend_class_entry *ce;
  2387. zend_function *mptr;
  2388. char *name_str, *tmp;
  2389. int name_len, tmp_len;
  2390. zval ztmp;
  2391. if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "zs", &classname, &name_str, &name_len) == FAILURE) {
  2392. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name_str, &name_len) == FAILURE) {
  2393. return;
  2394. }
  2395. if ((tmp = strstr(name_str, "::")) == NULL) {
  2396. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Invalid method name %s", name_str);
  2397. return;
  2398. }
  2399. classname = &ztmp;
  2400. tmp_len = tmp - name_str;
  2401. ZVAL_STRINGL(classname, name_str, tmp_len, 1);
  2402. name_len = name_len - (tmp_len + 2);
  2403. name_str = tmp + 2;
  2404. orig_obj = NULL;
  2405. } else if (Z_TYPE_P(classname) == IS_OBJECT) {
  2406. orig_obj = classname;
  2407. } else {
  2408. orig_obj = NULL;
  2409. }
  2410. object = getThis();
  2411. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  2412. if (intern == NULL) {
  2413. return;
  2414. }
  2415. /* Find the class entry */
  2416. switch (Z_TYPE_P(classname)) {
  2417. case IS_STRING:
  2418. if (zend_lookup_class(Z_STRVAL_P(classname), Z_STRLEN_P(classname), &pce TSRMLS_CC) == FAILURE) {
  2419. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2420. "Class %s does not exist", Z_STRVAL_P(classname));
  2421. if (classname == &ztmp) {
  2422. zval_dtor(&ztmp);
  2423. }
  2424. return;
  2425. }
  2426. ce = *pce;
  2427. break;
  2428. case IS_OBJECT:
  2429. ce = Z_OBJCE_P(classname);
  2430. break;
  2431. default:
  2432. if (classname == &ztmp) {
  2433. zval_dtor(&ztmp);
  2434. }
  2435. _DO_THROW("The parameter class is expected to be either a string or an object");
  2436. /* returns out of this function */
  2437. }
  2438. if (classname == &ztmp) {
  2439. zval_dtor(&ztmp);
  2440. }
  2441. lcname = zend_str_tolower_dup(name_str, name_len);
  2442. if (ce == zend_ce_closure && orig_obj && (name_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1)
  2443. && memcmp(lcname, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0
  2444. && (mptr = zend_get_closure_invoke_method(orig_obj TSRMLS_CC)) != NULL)
  2445. {
  2446. /* do nothing, mptr already set */
  2447. } else if (zend_hash_find(&ce->function_table, lcname, name_len + 1, (void **) &mptr) == FAILURE) {
  2448. efree(lcname);
  2449. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2450. "Method %s::%s() does not exist", ce->name, name_str);
  2451. return;
  2452. }
  2453. efree(lcname);
  2454. MAKE_STD_ZVAL(classname);
  2455. ZVAL_STRINGL(classname, mptr->common.scope->name, mptr->common.scope->name_length, 1);
  2456. reflection_update_property(object, "class", classname);
  2457. MAKE_STD_ZVAL(name);
  2458. ZVAL_STRING(name, mptr->common.function_name, 1);
  2459. reflection_update_property(object, "name", name);
  2460. intern->ptr = mptr;
  2461. intern->ref_type = REF_TYPE_FUNCTION;
  2462. intern->ce = ce;
  2463. }
  2464. /* }}} */
  2465. /* {{{ proto public string ReflectionMethod::__toString()
  2466. Returns a string representation */
  2467. ZEND_METHOD(reflection_method, __toString)
  2468. {
  2469. reflection_object *intern;
  2470. zend_function *mptr;
  2471. string str;
  2472. if (zend_parse_parameters_none() == FAILURE) {
  2473. return;
  2474. }
  2475. GET_REFLECTION_OBJECT_PTR(mptr);
  2476. string_init(&str);
  2477. _function_string(&str, mptr, intern->ce, "" TSRMLS_CC);
  2478. RETURN_STRINGL(str.string, str.len - 1, 0);
  2479. }
  2480. /* }}} */
  2481. /* {{{ proto public mixed ReflectionMethod::getClosure([mixed object])
  2482. Invokes the function */
  2483. ZEND_METHOD(reflection_method, getClosure)
  2484. {
  2485. reflection_object *intern;
  2486. zval *obj;
  2487. zend_function *mptr;
  2488. METHOD_NOTSTATIC(reflection_method_ptr);
  2489. GET_REFLECTION_OBJECT_PTR(mptr);
  2490. if (mptr->common.fn_flags & ZEND_ACC_STATIC) {
  2491. zend_create_closure(return_value, mptr, mptr->common.scope, NULL TSRMLS_CC);
  2492. } else {
  2493. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "o", &obj) == FAILURE) {
  2494. return;
  2495. }
  2496. if (!instanceof_function(Z_OBJCE_P(obj), mptr->common.scope TSRMLS_CC)) {
  2497. _DO_THROW("Given object is not an instance of the class this method was declared in");
  2498. /* Returns from this function */
  2499. }
  2500. /* This is an original closure object and __invoke is to be called. */
  2501. if (Z_OBJCE_P(obj) == zend_ce_closure && mptr->type == ZEND_INTERNAL_FUNCTION &&
  2502. (mptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0)
  2503. {
  2504. RETURN_ZVAL(obj, 1, 0);
  2505. } else {
  2506. zend_create_closure(return_value, mptr, mptr->common.scope, obj TSRMLS_CC);
  2507. }
  2508. }
  2509. }
  2510. /* }}} */
  2511. /* {{{ proto public mixed ReflectionMethod::invoke(mixed object, mixed* args)
  2512. Invokes the method. */
  2513. ZEND_METHOD(reflection_method, invoke)
  2514. {
  2515. zval *retval_ptr;
  2516. zval ***params = NULL;
  2517. zval *object_ptr;
  2518. reflection_object *intern;
  2519. zend_function *mptr;
  2520. int result, num_args = 0;
  2521. zend_fcall_info fci;
  2522. zend_fcall_info_cache fcc;
  2523. zend_class_entry *obj_ce;
  2524. METHOD_NOTSTATIC(reflection_method_ptr);
  2525. GET_REFLECTION_OBJECT_PTR(mptr);
  2526. if ((!(mptr->common.fn_flags & ZEND_ACC_PUBLIC)
  2527. || (mptr->common.fn_flags & ZEND_ACC_ABSTRACT))
  2528. && intern->ignore_visibility == 0)
  2529. {
  2530. if (mptr->common.fn_flags & ZEND_ACC_ABSTRACT) {
  2531. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2532. "Trying to invoke abstract method %s::%s()",
  2533. mptr->common.scope->name, mptr->common.function_name);
  2534. } else {
  2535. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2536. "Trying to invoke %s method %s::%s() from scope %s",
  2537. mptr->common.fn_flags & ZEND_ACC_PROTECTED ? "protected" : "private",
  2538. mptr->common.scope->name, mptr->common.function_name,
  2539. Z_OBJCE_P(getThis())->name);
  2540. }
  2541. return;
  2542. }
  2543. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &params, &num_args) == FAILURE) {
  2544. return;
  2545. }
  2546. /* In case this is a static method, we should'nt pass an object_ptr
  2547. * (which is used as calling context aka $this). We can thus ignore the
  2548. * first parameter.
  2549. *
  2550. * Else, we verify that the given object is an instance of the class.
  2551. */
  2552. if (mptr->common.fn_flags & ZEND_ACC_STATIC) {
  2553. object_ptr = NULL;
  2554. obj_ce = mptr->common.scope;
  2555. } else {
  2556. if (Z_TYPE_PP(params[0]) != IS_OBJECT) {
  2557. efree(params);
  2558. _DO_THROW("Non-object passed to Invoke()");
  2559. /* Returns from this function */
  2560. }
  2561. obj_ce = Z_OBJCE_PP(params[0]);
  2562. if (!instanceof_function(obj_ce, mptr->common.scope TSRMLS_CC)) {
  2563. if (params) {
  2564. efree(params);
  2565. }
  2566. _DO_THROW("Given object is not an instance of the class this method was declared in");
  2567. /* Returns from this function */
  2568. }
  2569. object_ptr = *params[0];
  2570. }
  2571. fci.size = sizeof(fci);
  2572. fci.function_table = NULL;
  2573. fci.function_name = NULL;
  2574. fci.symbol_table = NULL;
  2575. fci.object_ptr = object_ptr;
  2576. fci.retval_ptr_ptr = &retval_ptr;
  2577. fci.param_count = num_args - 1;
  2578. fci.params = params + 1;
  2579. fci.no_separation = 1;
  2580. fcc.initialized = 1;
  2581. fcc.function_handler = mptr;
  2582. fcc.calling_scope = obj_ce;
  2583. fcc.called_scope = intern->ce;
  2584. fcc.object_ptr = object_ptr;
  2585. result = zend_call_function(&fci, &fcc TSRMLS_CC);
  2586. if (params) {
  2587. efree(params);
  2588. }
  2589. if (result == FAILURE) {
  2590. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2591. "Invocation of method %s::%s() failed", mptr->common.scope->name, mptr->common.function_name);
  2592. return;
  2593. }
  2594. if (retval_ptr) {
  2595. COPY_PZVAL_TO_ZVAL(*return_value, retval_ptr);
  2596. }
  2597. }
  2598. /* }}} */
  2599. /* {{{ proto public mixed ReflectionMethod::invokeArgs(mixed object, array args)
  2600. Invokes the function and pass its arguments as array. */
  2601. ZEND_METHOD(reflection_method, invokeArgs)
  2602. {
  2603. zval *retval_ptr;
  2604. zval ***params;
  2605. zval *object;
  2606. reflection_object *intern;
  2607. zend_function *mptr;
  2608. int argc;
  2609. int result;
  2610. zend_fcall_info fci;
  2611. zend_fcall_info_cache fcc;
  2612. zend_class_entry *obj_ce;
  2613. zval *param_array;
  2614. METHOD_NOTSTATIC(reflection_method_ptr);
  2615. GET_REFLECTION_OBJECT_PTR(mptr);
  2616. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "o!a", &object, &param_array) == FAILURE) {
  2617. return;
  2618. }
  2619. if ((!(mptr->common.fn_flags & ZEND_ACC_PUBLIC)
  2620. || (mptr->common.fn_flags & ZEND_ACC_ABSTRACT))
  2621. && intern->ignore_visibility == 0)
  2622. {
  2623. if (mptr->common.fn_flags & ZEND_ACC_ABSTRACT) {
  2624. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2625. "Trying to invoke abstract method %s::%s()",
  2626. mptr->common.scope->name, mptr->common.function_name);
  2627. } else {
  2628. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2629. "Trying to invoke %s method %s::%s() from scope %s",
  2630. mptr->common.fn_flags & ZEND_ACC_PROTECTED ? "protected" : "private",
  2631. mptr->common.scope->name, mptr->common.function_name,
  2632. Z_OBJCE_P(getThis())->name);
  2633. }
  2634. return;
  2635. }
  2636. argc = zend_hash_num_elements(Z_ARRVAL_P(param_array));
  2637. params = safe_emalloc(sizeof(zval **), argc, 0);
  2638. zend_hash_apply_with_argument(Z_ARRVAL_P(param_array), (apply_func_arg_t)_zval_array_to_c_array, &params TSRMLS_CC);
  2639. params -= argc;
  2640. /* In case this is a static method, we should'nt pass an object_ptr
  2641. * (which is used as calling context aka $this). We can thus ignore the
  2642. * first parameter.
  2643. *
  2644. * Else, we verify that the given object is an instance of the class.
  2645. */
  2646. if (mptr->common.fn_flags & ZEND_ACC_STATIC) {
  2647. object = NULL;
  2648. obj_ce = mptr->common.scope;
  2649. } else {
  2650. if (!object) {
  2651. efree(params);
  2652. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2653. "Trying to invoke non static method %s::%s() without an object",
  2654. mptr->common.scope->name, mptr->common.function_name);
  2655. return;
  2656. }
  2657. obj_ce = Z_OBJCE_P(object);
  2658. if (!instanceof_function(obj_ce, mptr->common.scope TSRMLS_CC)) {
  2659. efree(params);
  2660. _DO_THROW("Given object is not an instance of the class this method was declared in");
  2661. /* Returns from this function */
  2662. }
  2663. }
  2664. fci.size = sizeof(fci);
  2665. fci.function_table = NULL;
  2666. fci.function_name = NULL;
  2667. fci.symbol_table = NULL;
  2668. fci.object_ptr = object;
  2669. fci.retval_ptr_ptr = &retval_ptr;
  2670. fci.param_count = argc;
  2671. fci.params = params;
  2672. fci.no_separation = 1;
  2673. fcc.initialized = 1;
  2674. fcc.function_handler = mptr;
  2675. fcc.calling_scope = obj_ce;
  2676. fcc.called_scope = intern->ce;
  2677. fcc.object_ptr = object;
  2678. /*
  2679. * Copy the zend_function when calling via handler (e.g. Closure::__invoke())
  2680. */
  2681. if (mptr->type == ZEND_INTERNAL_FUNCTION &&
  2682. (mptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0) {
  2683. fcc.function_handler = _copy_function(mptr TSRMLS_CC);
  2684. }
  2685. result = zend_call_function(&fci, &fcc TSRMLS_CC);
  2686. efree(params);
  2687. if (result == FAILURE) {
  2688. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2689. "Invocation of method %s::%s() failed", mptr->common.scope->name, mptr->common.function_name);
  2690. return;
  2691. }
  2692. if (retval_ptr) {
  2693. COPY_PZVAL_TO_ZVAL(*return_value, retval_ptr);
  2694. }
  2695. }
  2696. /* }}} */
  2697. /* {{{ proto public bool ReflectionMethod::isFinal()
  2698. Returns whether this method is final */
  2699. ZEND_METHOD(reflection_method, isFinal)
  2700. {
  2701. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_FINAL);
  2702. }
  2703. /* }}} */
  2704. /* {{{ proto public bool ReflectionMethod::isAbstract()
  2705. Returns whether this method is abstract */
  2706. ZEND_METHOD(reflection_method, isAbstract)
  2707. {
  2708. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_ABSTRACT);
  2709. }
  2710. /* }}} */
  2711. /* {{{ proto public bool ReflectionMethod::isPublic()
  2712. Returns whether this method is public */
  2713. ZEND_METHOD(reflection_method, isPublic)
  2714. {
  2715. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_PUBLIC);
  2716. }
  2717. /* }}} */
  2718. /* {{{ proto public bool ReflectionMethod::isPrivate()
  2719. Returns whether this method is private */
  2720. ZEND_METHOD(reflection_method, isPrivate)
  2721. {
  2722. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_PRIVATE);
  2723. }
  2724. /* }}} */
  2725. /* {{{ proto public bool ReflectionMethod::isProtected()
  2726. Returns whether this method is protected */
  2727. ZEND_METHOD(reflection_method, isProtected)
  2728. {
  2729. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_PROTECTED);
  2730. }
  2731. /* }}} */
  2732. /* {{{ proto public bool ReflectionMethod::isStatic()
  2733. Returns whether this method is static */
  2734. ZEND_METHOD(reflection_method, isStatic)
  2735. {
  2736. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_STATIC);
  2737. }
  2738. /* }}} */
  2739. /* {{{ proto public bool ReflectionFunction::isDeprecated()
  2740. Returns whether this function is deprecated */
  2741. ZEND_METHOD(reflection_function, isDeprecated)
  2742. {
  2743. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_DEPRECATED);
  2744. }
  2745. /* }}} */
  2746. /* {{{ proto public bool ReflectionFunction::isGenerator()
  2747. Returns whether this function is a generator */
  2748. ZEND_METHOD(reflection_function, isGenerator)
  2749. {
  2750. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_GENERATOR);
  2751. }
  2752. /* }}} */
  2753. /* {{{ proto public bool ReflectionFunction::isVariadic()
  2754. Returns whether this function is variadic */
  2755. ZEND_METHOD(reflection_function, isVariadic)
  2756. {
  2757. _function_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_VARIADIC);
  2758. }
  2759. /* }}} */
  2760. /* {{{ proto public bool ReflectionFunction::inNamespace()
  2761. Returns whether this function is defined in namespace */
  2762. ZEND_METHOD(reflection_function, inNamespace)
  2763. {
  2764. zval **name;
  2765. const char *backslash;
  2766. if (zend_parse_parameters_none() == FAILURE) {
  2767. return;
  2768. }
  2769. if (zend_hash_find(Z_OBJPROP_P(getThis()), "name", sizeof("name"), (void **) &name) == FAILURE) {
  2770. RETURN_FALSE;
  2771. }
  2772. if (Z_TYPE_PP(name) == IS_STRING
  2773. && (backslash = zend_memrchr(Z_STRVAL_PP(name), '\\', Z_STRLEN_PP(name)))
  2774. && backslash > Z_STRVAL_PP(name))
  2775. {
  2776. RETURN_TRUE;
  2777. }
  2778. RETURN_FALSE;
  2779. }
  2780. /* }}} */
  2781. /* {{{ proto public string ReflectionFunction::getNamespaceName()
  2782. Returns the name of namespace where this function is defined */
  2783. ZEND_METHOD(reflection_function, getNamespaceName)
  2784. {
  2785. zval **name;
  2786. const char *backslash;
  2787. if (zend_parse_parameters_none() == FAILURE) {
  2788. return;
  2789. }
  2790. if (zend_hash_find(Z_OBJPROP_P(getThis()), "name", sizeof("name"), (void **) &name) == FAILURE) {
  2791. RETURN_FALSE;
  2792. }
  2793. if (Z_TYPE_PP(name) == IS_STRING
  2794. && (backslash = zend_memrchr(Z_STRVAL_PP(name), '\\', Z_STRLEN_PP(name)))
  2795. && backslash > Z_STRVAL_PP(name))
  2796. {
  2797. RETURN_STRINGL(Z_STRVAL_PP(name), backslash - Z_STRVAL_PP(name), 1);
  2798. }
  2799. RETURN_EMPTY_STRING();
  2800. }
  2801. /* }}} */
  2802. /* {{{ proto public string ReflectionFunction::getShortName()
  2803. Returns the short name of the function (without namespace part) */
  2804. ZEND_METHOD(reflection_function, getShortName)
  2805. {
  2806. zval **name;
  2807. const char *backslash;
  2808. if (zend_parse_parameters_none() == FAILURE) {
  2809. return;
  2810. }
  2811. if (zend_hash_find(Z_OBJPROP_P(getThis()), "name", sizeof("name"), (void **) &name) == FAILURE) {
  2812. RETURN_FALSE;
  2813. }
  2814. if (Z_TYPE_PP(name) == IS_STRING
  2815. && (backslash = zend_memrchr(Z_STRVAL_PP(name), '\\', Z_STRLEN_PP(name)))
  2816. && backslash > Z_STRVAL_PP(name))
  2817. {
  2818. RETURN_STRINGL(backslash + 1, Z_STRLEN_PP(name) - (backslash - Z_STRVAL_PP(name) + 1), 1);
  2819. }
  2820. RETURN_ZVAL(*name, 1, 0);
  2821. }
  2822. /* }}} */
  2823. /* {{{ proto public bool ReflectionMethod::isConstructor()
  2824. Returns whether this method is the constructor */
  2825. ZEND_METHOD(reflection_method, isConstructor)
  2826. {
  2827. reflection_object *intern;
  2828. zend_function *mptr;
  2829. if (zend_parse_parameters_none() == FAILURE) {
  2830. return;
  2831. }
  2832. GET_REFLECTION_OBJECT_PTR(mptr);
  2833. /* we need to check if the ctor is the ctor of the class level we we
  2834. * looking at since we might be looking at an inherited old style ctor
  2835. * defined in base class. */
  2836. RETURN_BOOL(mptr->common.fn_flags & ZEND_ACC_CTOR && intern->ce->constructor && intern->ce->constructor->common.scope == mptr->common.scope);
  2837. }
  2838. /* }}} */
  2839. /* {{{ proto public bool ReflectionMethod::isDestructor()
  2840. Returns whether this method is static */
  2841. ZEND_METHOD(reflection_method, isDestructor)
  2842. {
  2843. reflection_object *intern;
  2844. zend_function *mptr;
  2845. if (zend_parse_parameters_none() == FAILURE) {
  2846. return;
  2847. }
  2848. GET_REFLECTION_OBJECT_PTR(mptr);
  2849. RETURN_BOOL(mptr->common.fn_flags & ZEND_ACC_DTOR);
  2850. }
  2851. /* }}} */
  2852. /* {{{ proto public int ReflectionMethod::getModifiers()
  2853. Returns a bitfield of the access modifiers for this method */
  2854. ZEND_METHOD(reflection_method, getModifiers)
  2855. {
  2856. reflection_object *intern;
  2857. zend_function *mptr;
  2858. if (zend_parse_parameters_none() == FAILURE) {
  2859. return;
  2860. }
  2861. GET_REFLECTION_OBJECT_PTR(mptr);
  2862. RETURN_LONG(mptr->common.fn_flags);
  2863. }
  2864. /* }}} */
  2865. /* {{{ proto public ReflectionClass ReflectionMethod::getDeclaringClass()
  2866. Get the declaring class */
  2867. ZEND_METHOD(reflection_method, getDeclaringClass)
  2868. {
  2869. reflection_object *intern;
  2870. zend_function *mptr;
  2871. METHOD_NOTSTATIC(reflection_method_ptr);
  2872. GET_REFLECTION_OBJECT_PTR(mptr);
  2873. if (zend_parse_parameters_none() == FAILURE) {
  2874. return;
  2875. }
  2876. zend_reflection_class_factory(mptr->common.scope, return_value TSRMLS_CC);
  2877. }
  2878. /* }}} */
  2879. /* {{{ proto public ReflectionClass ReflectionMethod::getPrototype()
  2880. Get the prototype */
  2881. ZEND_METHOD(reflection_method, getPrototype)
  2882. {
  2883. reflection_object *intern;
  2884. zend_function *mptr;
  2885. METHOD_NOTSTATIC(reflection_method_ptr);
  2886. GET_REFLECTION_OBJECT_PTR(mptr);
  2887. if (zend_parse_parameters_none() == FAILURE) {
  2888. return;
  2889. }
  2890. if (!mptr->common.prototype) {
  2891. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  2892. "Method %s::%s does not have a prototype", intern->ce->name, mptr->common.function_name);
  2893. return;
  2894. }
  2895. reflection_method_factory(mptr->common.prototype->common.scope, mptr->common.prototype, NULL, return_value TSRMLS_CC);
  2896. }
  2897. /* }}} */
  2898. /* {{{ proto public void ReflectionMethod::setAccessible(bool visible)
  2899. Sets whether non-public methods can be invoked */
  2900. ZEND_METHOD(reflection_method, setAccessible)
  2901. {
  2902. reflection_object *intern;
  2903. zend_bool visible;
  2904. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &visible) == FAILURE) {
  2905. return;
  2906. }
  2907. intern = (reflection_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
  2908. if (intern == NULL) {
  2909. return;
  2910. }
  2911. intern->ignore_visibility = visible;
  2912. }
  2913. /* }}} */
  2914. /* {{{ proto public static mixed ReflectionClass::export(mixed argument [, bool return]) throws ReflectionException
  2915. Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  2916. ZEND_METHOD(reflection_class, export)
  2917. {
  2918. _reflection_export(INTERNAL_FUNCTION_PARAM_PASSTHRU, reflection_class_ptr, 1);
  2919. }
  2920. /* }}} */
  2921. /* {{{ reflection_class_object_ctor */
  2922. static void reflection_class_object_ctor(INTERNAL_FUNCTION_PARAMETERS, int is_object)
  2923. {
  2924. zval *argument;
  2925. zval *object;
  2926. zval *classname;
  2927. reflection_object *intern;
  2928. zend_class_entry **ce;
  2929. if (is_object) {
  2930. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "o", &argument) == FAILURE) {
  2931. return;
  2932. }
  2933. } else {
  2934. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z/", &argument) == FAILURE) {
  2935. return;
  2936. }
  2937. }
  2938. object = getThis();
  2939. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  2940. if (intern == NULL) {
  2941. return;
  2942. }
  2943. if (Z_TYPE_P(argument) == IS_OBJECT) {
  2944. MAKE_STD_ZVAL(classname);
  2945. ZVAL_STRINGL(classname, Z_OBJCE_P(argument)->name, Z_OBJCE_P(argument)->name_length, 1);
  2946. reflection_update_property(object, "name", classname);
  2947. intern->ptr = Z_OBJCE_P(argument);
  2948. if (is_object) {
  2949. intern->obj = argument;
  2950. zval_add_ref(&argument);
  2951. }
  2952. } else {
  2953. convert_to_string_ex(&argument);
  2954. if (zend_lookup_class(Z_STRVAL_P(argument), Z_STRLEN_P(argument), &ce TSRMLS_CC) == FAILURE) {
  2955. if (!EG(exception)) {
  2956. zend_throw_exception_ex(reflection_exception_ptr, -1 TSRMLS_CC, "Class %s does not exist", Z_STRVAL_P(argument));
  2957. }
  2958. return;
  2959. }
  2960. MAKE_STD_ZVAL(classname);
  2961. ZVAL_STRINGL(classname, (*ce)->name, (*ce)->name_length, 1);
  2962. reflection_update_property(object, "name", classname);
  2963. intern->ptr = *ce;
  2964. }
  2965. intern->ref_type = REF_TYPE_OTHER;
  2966. }
  2967. /* }}} */
  2968. /* {{{ proto public void ReflectionClass::__construct(mixed argument) throws ReflectionException
  2969. Constructor. Takes a string or an instance as an argument */
  2970. ZEND_METHOD(reflection_class, __construct)
  2971. {
  2972. reflection_class_object_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
  2973. }
  2974. /* }}} */
  2975. /* {{{ add_class_vars */
  2976. static void add_class_vars(zend_class_entry *ce, int statics, zval *return_value TSRMLS_DC)
  2977. {
  2978. HashPosition pos;
  2979. zend_property_info *prop_info;
  2980. zval *prop, *prop_copy;
  2981. char *key;
  2982. uint key_len;
  2983. ulong num_index;
  2984. zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
  2985. while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop_info, &pos) == SUCCESS) {
  2986. zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos);
  2987. zend_hash_move_forward_ex(&ce->properties_info, &pos);
  2988. if (((prop_info->flags & ZEND_ACC_SHADOW) &&
  2989. prop_info->ce != ce) ||
  2990. ((prop_info->flags & ZEND_ACC_PROTECTED) &&
  2991. !zend_check_protected(prop_info->ce, ce)) ||
  2992. ((prop_info->flags & ZEND_ACC_PRIVATE) &&
  2993. prop_info->ce != ce)) {
  2994. continue;
  2995. }
  2996. prop = NULL;
  2997. if (prop_info->offset >= 0) {
  2998. if (statics && (prop_info->flags & ZEND_ACC_STATIC) != 0) {
  2999. prop = ce->default_static_members_table[prop_info->offset];
  3000. } else if (!statics && (prop_info->flags & ZEND_ACC_STATIC) == 0) {
  3001. prop = ce->default_properties_table[prop_info->offset];
  3002. }
  3003. }
  3004. if (!prop) {
  3005. continue;
  3006. }
  3007. /* copy: enforce read only access */
  3008. ALLOC_ZVAL(prop_copy);
  3009. *prop_copy = *prop;
  3010. zval_copy_ctor(prop_copy);
  3011. INIT_PZVAL(prop_copy);
  3012. /* this is necessary to make it able to work with default array
  3013. * properties, returned to user */
  3014. if (IS_CONSTANT_TYPE(Z_TYPE_P(prop_copy))) {
  3015. zval_update_constant(&prop_copy, 1 TSRMLS_CC);
  3016. }
  3017. add_assoc_zval(return_value, key, prop_copy);
  3018. }
  3019. }
  3020. /* }}} */
  3021. /* {{{ proto public array ReflectionClass::getStaticProperties()
  3022. Returns an associative array containing all static property values of the class */
  3023. ZEND_METHOD(reflection_class, getStaticProperties)
  3024. {
  3025. reflection_object *intern;
  3026. zend_class_entry *ce;
  3027. if (zend_parse_parameters_none() == FAILURE) {
  3028. return;
  3029. }
  3030. GET_REFLECTION_OBJECT_PTR(ce);
  3031. zend_update_class_constants(ce TSRMLS_CC);
  3032. array_init(return_value);
  3033. add_class_vars(ce, 1, return_value TSRMLS_CC);
  3034. }
  3035. /* }}} */
  3036. /* {{{ proto public mixed ReflectionClass::getStaticPropertyValue(string name [, mixed default])
  3037. Returns the value of a static property */
  3038. ZEND_METHOD(reflection_class, getStaticPropertyValue)
  3039. {
  3040. reflection_object *intern;
  3041. zend_class_entry *ce;
  3042. char *name;
  3043. int name_len;
  3044. zval **prop, *def_value = NULL;
  3045. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|z", &name, &name_len, &def_value) == FAILURE) {
  3046. return;
  3047. }
  3048. GET_REFLECTION_OBJECT_PTR(ce);
  3049. zend_update_class_constants(ce TSRMLS_CC);
  3050. prop = zend_std_get_static_property(ce, name, name_len, 1, NULL TSRMLS_CC);
  3051. if (!prop) {
  3052. if (def_value) {
  3053. RETURN_ZVAL(def_value, 1, 0);
  3054. } else {
  3055. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  3056. "Class %s does not have a property named %s", ce->name, name);
  3057. }
  3058. return;
  3059. } else {
  3060. RETURN_ZVAL(*prop, 1, 0);
  3061. }
  3062. }
  3063. /* }}} */
  3064. /* {{{ proto public void ReflectionClass::setStaticPropertyValue($name, $value)
  3065. Sets the value of a static property */
  3066. ZEND_METHOD(reflection_class, setStaticPropertyValue)
  3067. {
  3068. reflection_object *intern;
  3069. zend_class_entry *ce;
  3070. char *name;
  3071. int name_len;
  3072. zval **variable_ptr, *value;
  3073. int refcount;
  3074. zend_uchar is_ref;
  3075. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz", &name, &name_len, &value) == FAILURE) {
  3076. return;
  3077. }
  3078. GET_REFLECTION_OBJECT_PTR(ce);
  3079. zend_update_class_constants(ce TSRMLS_CC);
  3080. variable_ptr = zend_std_get_static_property(ce, name, name_len, 1, NULL TSRMLS_CC);
  3081. if (!variable_ptr) {
  3082. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  3083. "Class %s does not have a property named %s", ce->name, name);
  3084. return;
  3085. }
  3086. refcount = Z_REFCOUNT_PP(variable_ptr);
  3087. is_ref = Z_ISREF_PP(variable_ptr);
  3088. zval_dtor(*variable_ptr);
  3089. **variable_ptr = *value;
  3090. zval_copy_ctor(*variable_ptr);
  3091. Z_SET_REFCOUNT_PP(variable_ptr, refcount);
  3092. Z_SET_ISREF_TO_PP(variable_ptr, is_ref);
  3093. }
  3094. /* }}} */
  3095. /* {{{ proto public array ReflectionClass::getDefaultProperties()
  3096. Returns an associative array containing copies of all default property values of the class */
  3097. ZEND_METHOD(reflection_class, getDefaultProperties)
  3098. {
  3099. reflection_object *intern;
  3100. zend_class_entry *ce;
  3101. if (zend_parse_parameters_none() == FAILURE) {
  3102. return;
  3103. }
  3104. GET_REFLECTION_OBJECT_PTR(ce);
  3105. array_init(return_value);
  3106. zend_update_class_constants(ce TSRMLS_CC);
  3107. add_class_vars(ce, 1, return_value TSRMLS_CC);
  3108. add_class_vars(ce, 0, return_value TSRMLS_CC);
  3109. }
  3110. /* }}} */
  3111. /* {{{ proto public string ReflectionClass::__toString()
  3112. Returns a string representation */
  3113. ZEND_METHOD(reflection_class, __toString)
  3114. {
  3115. reflection_object *intern;
  3116. zend_class_entry *ce;
  3117. string str;
  3118. if (zend_parse_parameters_none() == FAILURE) {
  3119. return;
  3120. }
  3121. GET_REFLECTION_OBJECT_PTR(ce);
  3122. string_init(&str);
  3123. _class_string(&str, ce, intern->obj, "" TSRMLS_CC);
  3124. RETURN_STRINGL(str.string, str.len - 1, 0);
  3125. }
  3126. /* }}} */
  3127. /* {{{ proto public string ReflectionClass::getName()
  3128. Returns the class' name */
  3129. ZEND_METHOD(reflection_class, getName)
  3130. {
  3131. if (zend_parse_parameters_none() == FAILURE) {
  3132. return;
  3133. }
  3134. _default_get_entry(getThis(), "name", sizeof("name"), return_value TSRMLS_CC);
  3135. }
  3136. /* }}} */
  3137. /* {{{ proto public bool ReflectionClass::isInternal()
  3138. Returns whether this class is an internal class */
  3139. ZEND_METHOD(reflection_class, isInternal)
  3140. {
  3141. reflection_object *intern;
  3142. zend_class_entry *ce;
  3143. if (zend_parse_parameters_none() == FAILURE) {
  3144. return;
  3145. }
  3146. GET_REFLECTION_OBJECT_PTR(ce);
  3147. RETURN_BOOL(ce->type == ZEND_INTERNAL_CLASS);
  3148. }
  3149. /* }}} */
  3150. /* {{{ proto public bool ReflectionClass::isUserDefined()
  3151. Returns whether this class is user-defined */
  3152. ZEND_METHOD(reflection_class, isUserDefined)
  3153. {
  3154. reflection_object *intern;
  3155. zend_class_entry *ce;
  3156. if (zend_parse_parameters_none() == FAILURE) {
  3157. return;
  3158. }
  3159. GET_REFLECTION_OBJECT_PTR(ce);
  3160. RETURN_BOOL(ce->type == ZEND_USER_CLASS);
  3161. }
  3162. /* }}} */
  3163. /* {{{ proto public string ReflectionClass::getFileName()
  3164. Returns the filename of the file this class was declared in */
  3165. ZEND_METHOD(reflection_class, getFileName)
  3166. {
  3167. reflection_object *intern;
  3168. zend_class_entry *ce;
  3169. if (zend_parse_parameters_none() == FAILURE) {
  3170. return;
  3171. }
  3172. GET_REFLECTION_OBJECT_PTR(ce);
  3173. if (ce->type == ZEND_USER_CLASS) {
  3174. RETURN_STRING(ce->info.user.filename, 1);
  3175. }
  3176. RETURN_FALSE;
  3177. }
  3178. /* }}} */
  3179. /* {{{ proto public int ReflectionClass::getStartLine()
  3180. Returns the line this class' declaration starts at */
  3181. ZEND_METHOD(reflection_class, getStartLine)
  3182. {
  3183. reflection_object *intern;
  3184. zend_class_entry *ce;
  3185. if (zend_parse_parameters_none() == FAILURE) {
  3186. return;
  3187. }
  3188. GET_REFLECTION_OBJECT_PTR(ce);
  3189. if (ce->type == ZEND_USER_FUNCTION) {
  3190. RETURN_LONG(ce->info.user.line_start);
  3191. }
  3192. RETURN_FALSE;
  3193. }
  3194. /* }}} */
  3195. /* {{{ proto public int ReflectionClass::getEndLine()
  3196. Returns the line this class' declaration ends at */
  3197. ZEND_METHOD(reflection_class, getEndLine)
  3198. {
  3199. reflection_object *intern;
  3200. zend_class_entry *ce;
  3201. if (zend_parse_parameters_none() == FAILURE) {
  3202. return;
  3203. }
  3204. GET_REFLECTION_OBJECT_PTR(ce);
  3205. if (ce->type == ZEND_USER_CLASS) {
  3206. RETURN_LONG(ce->info.user.line_end);
  3207. }
  3208. RETURN_FALSE;
  3209. }
  3210. /* }}} */
  3211. /* {{{ proto public string ReflectionClass::getDocComment()
  3212. Returns the doc comment for this class */
  3213. ZEND_METHOD(reflection_class, getDocComment)
  3214. {
  3215. reflection_object *intern;
  3216. zend_class_entry *ce;
  3217. if (zend_parse_parameters_none() == FAILURE) {
  3218. return;
  3219. }
  3220. GET_REFLECTION_OBJECT_PTR(ce);
  3221. if (ce->type == ZEND_USER_CLASS && ce->info.user.doc_comment) {
  3222. RETURN_STRINGL(ce->info.user.doc_comment, ce->info.user.doc_comment_len, 1);
  3223. }
  3224. RETURN_FALSE;
  3225. }
  3226. /* }}} */
  3227. /* {{{ proto public ReflectionMethod ReflectionClass::getConstructor()
  3228. Returns the class' constructor if there is one, NULL otherwise */
  3229. ZEND_METHOD(reflection_class, getConstructor)
  3230. {
  3231. reflection_object *intern;
  3232. zend_class_entry *ce;
  3233. if (zend_parse_parameters_none() == FAILURE) {
  3234. return;
  3235. }
  3236. GET_REFLECTION_OBJECT_PTR(ce);
  3237. if (ce->constructor) {
  3238. reflection_method_factory(ce, ce->constructor, NULL, return_value TSRMLS_CC);
  3239. } else {
  3240. RETURN_NULL();
  3241. }
  3242. }
  3243. /* }}} */
  3244. /* {{{ proto public bool ReflectionClass::hasMethod(string name)
  3245. Returns whether a method exists or not */
  3246. ZEND_METHOD(reflection_class, hasMethod)
  3247. {
  3248. reflection_object *intern;
  3249. zend_class_entry *ce;
  3250. char *name, *lc_name;
  3251. int name_len;
  3252. METHOD_NOTSTATIC(reflection_class_ptr);
  3253. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) {
  3254. return;
  3255. }
  3256. GET_REFLECTION_OBJECT_PTR(ce);
  3257. lc_name = zend_str_tolower_dup(name, name_len);
  3258. if ((ce == zend_ce_closure && (name_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1)
  3259. && memcmp(lc_name, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0)
  3260. || zend_hash_exists(&ce->function_table, lc_name, name_len + 1)) {
  3261. efree(lc_name);
  3262. RETURN_TRUE;
  3263. } else {
  3264. efree(lc_name);
  3265. RETURN_FALSE;
  3266. }
  3267. }
  3268. /* }}} */
  3269. /* {{{ proto public ReflectionMethod ReflectionClass::getMethod(string name) throws ReflectionException
  3270. Returns the class' method specified by its name */
  3271. ZEND_METHOD(reflection_class, getMethod)
  3272. {
  3273. reflection_object *intern;
  3274. zend_class_entry *ce;
  3275. zend_function *mptr;
  3276. zval obj_tmp;
  3277. char *name, *lc_name;
  3278. int name_len;
  3279. METHOD_NOTSTATIC(reflection_class_ptr);
  3280. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) {
  3281. return;
  3282. }
  3283. GET_REFLECTION_OBJECT_PTR(ce);
  3284. lc_name = zend_str_tolower_dup(name, name_len);
  3285. if (ce == zend_ce_closure && intern->obj && (name_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1)
  3286. && memcmp(lc_name, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0
  3287. && (mptr = zend_get_closure_invoke_method(intern->obj TSRMLS_CC)) != NULL)
  3288. {
  3289. /* don't assign closure_object since we only reflect the invoke handler
  3290. method and not the closure definition itself */
  3291. reflection_method_factory(ce, mptr, NULL, return_value TSRMLS_CC);
  3292. efree(lc_name);
  3293. } else if (ce == zend_ce_closure && !intern->obj && (name_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1)
  3294. && memcmp(lc_name, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0
  3295. && object_init_ex(&obj_tmp, ce) == SUCCESS && (mptr = zend_get_closure_invoke_method(&obj_tmp TSRMLS_CC)) != NULL) {
  3296. /* don't assign closure_object since we only reflect the invoke handler
  3297. method and not the closure definition itself */
  3298. reflection_method_factory(ce, mptr, NULL, return_value TSRMLS_CC);
  3299. zval_dtor(&obj_tmp);
  3300. efree(lc_name);
  3301. } else if (zend_hash_find(&ce->function_table, lc_name, name_len + 1, (void**) &mptr) == SUCCESS) {
  3302. reflection_method_factory(ce, mptr, NULL, return_value TSRMLS_CC);
  3303. efree(lc_name);
  3304. } else {
  3305. efree(lc_name);
  3306. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  3307. "Method %s does not exist", name);
  3308. return;
  3309. }
  3310. }
  3311. /* }}} */
  3312. /* {{{ _addmethod */
  3313. static void _addmethod(zend_function *mptr, zend_class_entry *ce, zval *retval, long filter, zval *obj TSRMLS_DC)
  3314. {
  3315. zval *method;
  3316. uint len = strlen(mptr->common.function_name);
  3317. zend_function *closure;
  3318. if (mptr->common.fn_flags & filter) {
  3319. ALLOC_ZVAL(method);
  3320. if (ce == zend_ce_closure && obj && (len == sizeof(ZEND_INVOKE_FUNC_NAME)-1)
  3321. && memcmp(mptr->common.function_name, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0
  3322. && (closure = zend_get_closure_invoke_method(obj TSRMLS_CC)) != NULL)
  3323. {
  3324. mptr = closure;
  3325. }
  3326. /* don't assign closure_object since we only reflect the invoke handler
  3327. method and not the closure definition itself, even if we have a
  3328. closure */
  3329. reflection_method_factory(ce, mptr, NULL, method TSRMLS_CC);
  3330. add_next_index_zval(retval, method);
  3331. }
  3332. }
  3333. /* }}} */
  3334. /* {{{ _addmethod */
  3335. static int _addmethod_va(zend_function *mptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
  3336. {
  3337. zend_class_entry *ce = *va_arg(args, zend_class_entry**);
  3338. zval *retval = va_arg(args, zval*);
  3339. long filter = va_arg(args, long);
  3340. zval *obj = va_arg(args, zval *);
  3341. _addmethod(mptr, ce, retval, filter, obj TSRMLS_CC);
  3342. return ZEND_HASH_APPLY_KEEP;
  3343. }
  3344. /* }}} */
  3345. /* {{{ proto public ReflectionMethod[] ReflectionClass::getMethods([long $filter])
  3346. Returns an array of this class' methods */
  3347. ZEND_METHOD(reflection_class, getMethods)
  3348. {
  3349. reflection_object *intern;
  3350. zend_class_entry *ce;
  3351. long filter = 0;
  3352. int argc = ZEND_NUM_ARGS();
  3353. METHOD_NOTSTATIC(reflection_class_ptr);
  3354. if (argc) {
  3355. if (zend_parse_parameters(argc TSRMLS_CC, "|l", &filter) == FAILURE) {
  3356. return;
  3357. }
  3358. } else {
  3359. /* No parameters given, default to "return all" */
  3360. filter = ZEND_ACC_PPP_MASK | ZEND_ACC_ABSTRACT | ZEND_ACC_FINAL | ZEND_ACC_STATIC;
  3361. }
  3362. GET_REFLECTION_OBJECT_PTR(ce);
  3363. array_init(return_value);
  3364. zend_hash_apply_with_arguments(&ce->function_table TSRMLS_CC, (apply_func_args_t) _addmethod_va, 4, &ce, return_value, filter, intern->obj);
  3365. if (intern->obj && instanceof_function(ce, zend_ce_closure TSRMLS_CC)) {
  3366. zend_function *closure = zend_get_closure_invoke_method(intern->obj TSRMLS_CC);
  3367. if (closure) {
  3368. _addmethod(closure, ce, return_value, filter, intern->obj TSRMLS_CC);
  3369. _free_function(closure TSRMLS_CC);
  3370. }
  3371. }
  3372. }
  3373. /* }}} */
  3374. /* {{{ proto public bool ReflectionClass::hasProperty(string name)
  3375. Returns whether a property exists or not */
  3376. ZEND_METHOD(reflection_class, hasProperty)
  3377. {
  3378. reflection_object *intern;
  3379. zend_property_info *property_info;
  3380. zend_class_entry *ce;
  3381. char *name;
  3382. int name_len;
  3383. zval *property;
  3384. METHOD_NOTSTATIC(reflection_class_ptr);
  3385. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) {
  3386. return;
  3387. }
  3388. GET_REFLECTION_OBJECT_PTR(ce);
  3389. if (zend_hash_find(&ce->properties_info, name, name_len+1, (void **) &property_info) == SUCCESS) {
  3390. if (property_info->flags & ZEND_ACC_SHADOW) {
  3391. RETURN_FALSE;
  3392. }
  3393. RETURN_TRUE;
  3394. } else {
  3395. if (intern->obj && Z_OBJ_HANDLER_P(intern->obj, has_property)) {
  3396. MAKE_STD_ZVAL(property);
  3397. ZVAL_STRINGL(property, name, name_len, 1);
  3398. if (Z_OBJ_HANDLER_P(intern->obj, has_property)(intern->obj, property, 2, 0 TSRMLS_CC)) {
  3399. zval_ptr_dtor(&property);
  3400. RETURN_TRUE;
  3401. }
  3402. zval_ptr_dtor(&property);
  3403. }
  3404. RETURN_FALSE;
  3405. }
  3406. }
  3407. /* }}} */
  3408. /* {{{ proto public ReflectionProperty ReflectionClass::getProperty(string name) throws ReflectionException
  3409. Returns the class' property specified by its name */
  3410. ZEND_METHOD(reflection_class, getProperty)
  3411. {
  3412. reflection_object *intern;
  3413. zend_class_entry *ce, **pce;
  3414. zend_property_info *property_info;
  3415. char *name, *tmp, *classname;
  3416. int name_len, classname_len;
  3417. METHOD_NOTSTATIC(reflection_class_ptr);
  3418. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) {
  3419. return;
  3420. }
  3421. GET_REFLECTION_OBJECT_PTR(ce);
  3422. if (zend_hash_find(&ce->properties_info, name, name_len + 1, (void**) &property_info) == SUCCESS) {
  3423. if ((property_info->flags & ZEND_ACC_SHADOW) == 0) {
  3424. reflection_property_factory(ce, property_info, return_value TSRMLS_CC);
  3425. return;
  3426. }
  3427. } else if (intern->obj) {
  3428. /* Check for dynamic properties */
  3429. if (zend_hash_exists(Z_OBJ_HT_P(intern->obj)->get_properties(intern->obj TSRMLS_CC), name, name_len+1)) {
  3430. zend_property_info property_info_tmp;
  3431. property_info_tmp.flags = ZEND_ACC_IMPLICIT_PUBLIC;
  3432. property_info_tmp.name = estrndup(name, name_len);
  3433. property_info_tmp.name_length = name_len;
  3434. property_info_tmp.h = zend_get_hash_value(name, name_len+1);
  3435. property_info_tmp.doc_comment = NULL;
  3436. property_info_tmp.ce = ce;
  3437. reflection_property_factory(ce, &property_info_tmp, return_value TSRMLS_CC);
  3438. intern = (reflection_object *) zend_object_store_get_object(return_value TSRMLS_CC);
  3439. intern->ref_type = REF_TYPE_DYNAMIC_PROPERTY;
  3440. return;
  3441. }
  3442. }
  3443. if ((tmp = strstr(name, "::")) != NULL) {
  3444. classname_len = tmp - name;
  3445. classname = zend_str_tolower_dup(name, classname_len);
  3446. classname[classname_len] = '\0';
  3447. name_len = name_len - (classname_len + 2);
  3448. name = tmp + 2;
  3449. if (zend_lookup_class(classname, classname_len, &pce TSRMLS_CC) == FAILURE) {
  3450. if (!EG(exception)) {
  3451. zend_throw_exception_ex(reflection_exception_ptr, -1 TSRMLS_CC, "Class %s does not exist", classname);
  3452. }
  3453. efree(classname);
  3454. return;
  3455. }
  3456. efree(classname);
  3457. if (!instanceof_function(ce, *pce TSRMLS_CC)) {
  3458. zend_throw_exception_ex(reflection_exception_ptr, -1 TSRMLS_CC, "Fully qualified property name %s::%s does not specify a base class of %s", (*pce)->name, name, ce->name);
  3459. return;
  3460. }
  3461. ce = *pce;
  3462. if (zend_hash_find(&ce->properties_info, name, name_len + 1, (void**) &property_info) == SUCCESS && (property_info->flags & ZEND_ACC_SHADOW) == 0) {
  3463. reflection_property_factory(ce, property_info, return_value TSRMLS_CC);
  3464. return;
  3465. }
  3466. }
  3467. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  3468. "Property %s does not exist", name);
  3469. }
  3470. /* }}} */
  3471. /* {{{ _addproperty */
  3472. static int _addproperty(zend_property_info *pptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
  3473. {
  3474. zval *property;
  3475. zend_class_entry *ce = *va_arg(args, zend_class_entry**);
  3476. zval *retval = va_arg(args, zval*);
  3477. long filter = va_arg(args, long);
  3478. if (pptr->flags & ZEND_ACC_SHADOW) {
  3479. return 0;
  3480. }
  3481. if (pptr->flags & filter) {
  3482. ALLOC_ZVAL(property);
  3483. reflection_property_factory(ce, pptr, property TSRMLS_CC);
  3484. add_next_index_zval(retval, property);
  3485. }
  3486. return 0;
  3487. }
  3488. /* }}} */
  3489. /* {{{ _adddynproperty */
  3490. static int _adddynproperty(zval **pptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
  3491. {
  3492. zval *property;
  3493. zend_class_entry *ce = *va_arg(args, zend_class_entry**);
  3494. zval *retval = va_arg(args, zval*), member;
  3495. /* under some circumstances, the properties hash table may contain numeric
  3496. * properties (e.g. when casting from array). This is a WONT FIX bug, at
  3497. * least for the moment. Ignore these */
  3498. if (hash_key->nKeyLength == 0) {
  3499. return 0;
  3500. }
  3501. if (hash_key->arKey[0] == '\0') {
  3502. return 0; /* non public cannot be dynamic */
  3503. }
  3504. ZVAL_STRINGL(&member, hash_key->arKey, hash_key->nKeyLength-1, 0);
  3505. if (zend_get_property_info(ce, &member, 1 TSRMLS_CC) == &EG(std_property_info)) {
  3506. MAKE_STD_ZVAL(property);
  3507. EG(std_property_info).flags = ZEND_ACC_IMPLICIT_PUBLIC;
  3508. reflection_property_factory(ce, &EG(std_property_info), property TSRMLS_CC);
  3509. add_next_index_zval(retval, property);
  3510. }
  3511. return 0;
  3512. }
  3513. /* }}} */
  3514. /* {{{ proto public ReflectionProperty[] ReflectionClass::getProperties([long $filter])
  3515. Returns an array of this class' properties */
  3516. ZEND_METHOD(reflection_class, getProperties)
  3517. {
  3518. reflection_object *intern;
  3519. zend_class_entry *ce;
  3520. long filter = 0;
  3521. int argc = ZEND_NUM_ARGS();
  3522. METHOD_NOTSTATIC(reflection_class_ptr);
  3523. if (argc) {
  3524. if (zend_parse_parameters(argc TSRMLS_CC, "|l", &filter) == FAILURE) {
  3525. return;
  3526. }
  3527. } else {
  3528. /* No parameters given, default to "return all" */
  3529. filter = ZEND_ACC_PPP_MASK | ZEND_ACC_STATIC;
  3530. }
  3531. GET_REFLECTION_OBJECT_PTR(ce);
  3532. array_init(return_value);
  3533. zend_hash_apply_with_arguments(&ce->properties_info TSRMLS_CC, (apply_func_args_t) _addproperty, 3, &ce, return_value, filter);
  3534. if (intern->obj && (filter & ZEND_ACC_PUBLIC) != 0 && Z_OBJ_HT_P(intern->obj)->get_properties) {
  3535. HashTable *properties = Z_OBJ_HT_P(intern->obj)->get_properties(intern->obj TSRMLS_CC);
  3536. zend_hash_apply_with_arguments(properties TSRMLS_CC, (apply_func_args_t) _adddynproperty, 2, &ce, return_value);
  3537. }
  3538. }
  3539. /* }}} */
  3540. /* {{{ proto public bool ReflectionClass::hasConstant(string name)
  3541. Returns whether a constant exists or not */
  3542. ZEND_METHOD(reflection_class, hasConstant)
  3543. {
  3544. reflection_object *intern;
  3545. zend_class_entry *ce;
  3546. char *name;
  3547. int name_len;
  3548. METHOD_NOTSTATIC(reflection_class_ptr);
  3549. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) {
  3550. return;
  3551. }
  3552. GET_REFLECTION_OBJECT_PTR(ce);
  3553. if (zend_hash_exists(&ce->constants_table, name, name_len + 1)) {
  3554. RETURN_TRUE;
  3555. } else {
  3556. RETURN_FALSE;
  3557. }
  3558. }
  3559. /* }}} */
  3560. /* {{{ proto public array ReflectionClass::getConstants()
  3561. Returns an associative array containing this class' constants and their values */
  3562. ZEND_METHOD(reflection_class, getConstants)
  3563. {
  3564. zval *tmp_copy;
  3565. reflection_object *intern;
  3566. zend_class_entry *ce;
  3567. if (zend_parse_parameters_none() == FAILURE) {
  3568. return;
  3569. }
  3570. GET_REFLECTION_OBJECT_PTR(ce);
  3571. array_init(return_value);
  3572. zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t)zval_update_constant_inline_change, ce TSRMLS_CC);
  3573. zend_hash_copy(Z_ARRVAL_P(return_value), &ce->constants_table, (copy_ctor_func_t) zval_add_ref, (void *) &tmp_copy, sizeof(zval *));
  3574. }
  3575. /* }}} */
  3576. /* {{{ proto public mixed ReflectionClass::getConstant(string name)
  3577. Returns the class' constant specified by its name */
  3578. ZEND_METHOD(reflection_class, getConstant)
  3579. {
  3580. reflection_object *intern;
  3581. zend_class_entry *ce;
  3582. zval **value;
  3583. char *name;
  3584. int name_len;
  3585. METHOD_NOTSTATIC(reflection_class_ptr);
  3586. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, &name_len) == FAILURE) {
  3587. return;
  3588. }
  3589. GET_REFLECTION_OBJECT_PTR(ce);
  3590. zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t)zval_update_constant_inline_change, ce TSRMLS_CC);
  3591. if (zend_hash_find(&ce->constants_table, name, name_len + 1, (void **) &value) == FAILURE) {
  3592. RETURN_FALSE;
  3593. }
  3594. MAKE_COPY_ZVAL(value, return_value);
  3595. }
  3596. /* }}} */
  3597. /* {{{ _class_check_flag */
  3598. static void _class_check_flag(INTERNAL_FUNCTION_PARAMETERS, int mask)
  3599. {
  3600. reflection_object *intern;
  3601. zend_class_entry *ce;
  3602. if (zend_parse_parameters_none() == FAILURE) {
  3603. return;
  3604. }
  3605. GET_REFLECTION_OBJECT_PTR(ce);
  3606. RETVAL_BOOL(ce->ce_flags & mask);
  3607. }
  3608. /* }}} */
  3609. /* {{{ proto public bool ReflectionClass::isInstantiable()
  3610. Returns whether this class is instantiable */
  3611. ZEND_METHOD(reflection_class, isInstantiable)
  3612. {
  3613. reflection_object *intern;
  3614. zend_class_entry *ce;
  3615. if (zend_parse_parameters_none() == FAILURE) {
  3616. return;
  3617. }
  3618. GET_REFLECTION_OBJECT_PTR(ce);
  3619. if (ce->ce_flags & (ZEND_ACC_INTERFACE | ZEND_ACC_EXPLICIT_ABSTRACT_CLASS | ZEND_ACC_IMPLICIT_ABSTRACT_CLASS)) {
  3620. RETURN_FALSE;
  3621. }
  3622. /* Basically, the class is instantiable. Though, if there is a constructor
  3623. * and it is not publicly accessible, it isn't! */
  3624. if (!ce->constructor) {
  3625. RETURN_TRUE;
  3626. }
  3627. RETURN_BOOL(ce->constructor->common.fn_flags & ZEND_ACC_PUBLIC);
  3628. }
  3629. /* }}} */
  3630. /* {{{ proto public bool ReflectionClass::isCloneable()
  3631. Returns whether this class is cloneable */
  3632. ZEND_METHOD(reflection_class, isCloneable)
  3633. {
  3634. reflection_object *intern;
  3635. zend_class_entry *ce;
  3636. zval obj;
  3637. if (zend_parse_parameters_none() == FAILURE) {
  3638. return;
  3639. }
  3640. GET_REFLECTION_OBJECT_PTR(ce);
  3641. if (ce->ce_flags & (ZEND_ACC_INTERFACE | ZEND_ACC_TRAIT | ZEND_ACC_EXPLICIT_ABSTRACT_CLASS | ZEND_ACC_IMPLICIT_ABSTRACT_CLASS)) {
  3642. RETURN_FALSE;
  3643. }
  3644. if (intern->obj) {
  3645. if (ce->clone) {
  3646. RETURN_BOOL(ce->clone->common.fn_flags & ZEND_ACC_PUBLIC);
  3647. } else {
  3648. RETURN_BOOL(Z_OBJ_HANDLER_P(intern->obj, clone_obj) != NULL);
  3649. }
  3650. } else {
  3651. if (ce->clone) {
  3652. RETURN_BOOL(ce->clone->common.fn_flags & ZEND_ACC_PUBLIC);
  3653. } else {
  3654. object_init_ex(&obj, ce);
  3655. RETVAL_BOOL(Z_OBJ_HANDLER(obj, clone_obj) != NULL);
  3656. zval_dtor(&obj);
  3657. }
  3658. }
  3659. }
  3660. /* }}} */
  3661. /* {{{ proto public bool ReflectionClass::isInterface()
  3662. Returns whether this is an interface or a class */
  3663. ZEND_METHOD(reflection_class, isInterface)
  3664. {
  3665. _class_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_INTERFACE);
  3666. }
  3667. /* }}} */
  3668. /* {{{ proto public bool ReflectionClass::isTrait()
  3669. Returns whether this is a trait */
  3670. ZEND_METHOD(reflection_class, isTrait)
  3671. {
  3672. _class_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_TRAIT & ~ZEND_ACC_EXPLICIT_ABSTRACT_CLASS);
  3673. }
  3674. /* }}} */
  3675. /* {{{ proto public bool ReflectionClass::isFinal()
  3676. Returns whether this class is final */
  3677. ZEND_METHOD(reflection_class, isFinal)
  3678. {
  3679. _class_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_FINAL_CLASS);
  3680. }
  3681. /* }}} */
  3682. /* {{{ proto public bool ReflectionClass::isAbstract()
  3683. Returns whether this class is abstract */
  3684. ZEND_METHOD(reflection_class, isAbstract)
  3685. {
  3686. _class_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_IMPLICIT_ABSTRACT_CLASS|ZEND_ACC_EXPLICIT_ABSTRACT_CLASS);
  3687. }
  3688. /* }}} */
  3689. /* {{{ proto public int ReflectionClass::getModifiers()
  3690. Returns a bitfield of the access modifiers for this class */
  3691. ZEND_METHOD(reflection_class, getModifiers)
  3692. {
  3693. reflection_object *intern;
  3694. zend_class_entry *ce;
  3695. if (zend_parse_parameters_none() == FAILURE) {
  3696. return;
  3697. }
  3698. GET_REFLECTION_OBJECT_PTR(ce);
  3699. RETURN_LONG(ce->ce_flags);
  3700. }
  3701. /* }}} */
  3702. /* {{{ proto public bool ReflectionClass::isInstance(stdclass object)
  3703. Returns whether the given object is an instance of this class */
  3704. ZEND_METHOD(reflection_class, isInstance)
  3705. {
  3706. reflection_object *intern;
  3707. zend_class_entry *ce;
  3708. zval *object;
  3709. METHOD_NOTSTATIC(reflection_class_ptr);
  3710. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "o", &object) == FAILURE) {
  3711. return;
  3712. }
  3713. GET_REFLECTION_OBJECT_PTR(ce);
  3714. RETURN_BOOL(HAS_CLASS_ENTRY(*object) && instanceof_function(Z_OBJCE_P(object), ce TSRMLS_CC));
  3715. }
  3716. /* }}} */
  3717. /* {{{ proto public stdclass ReflectionClass::newInstance(mixed* args, ...)
  3718. Returns an instance of this class */
  3719. ZEND_METHOD(reflection_class, newInstance)
  3720. {
  3721. zval *retval_ptr = NULL;
  3722. reflection_object *intern;
  3723. zend_class_entry *ce, *old_scope;
  3724. zend_function *constructor;
  3725. METHOD_NOTSTATIC(reflection_class_ptr);
  3726. GET_REFLECTION_OBJECT_PTR(ce);
  3727. object_init_ex(return_value, ce);
  3728. old_scope = EG(scope);
  3729. EG(scope) = ce;
  3730. constructor = Z_OBJ_HT_P(return_value)->get_constructor(return_value TSRMLS_CC);
  3731. EG(scope) = old_scope;
  3732. /* Run the constructor if there is one */
  3733. if (constructor) {
  3734. zval ***params = NULL;
  3735. int num_args = 0;
  3736. zend_fcall_info fci;
  3737. zend_fcall_info_cache fcc;
  3738. if (!(constructor->common.fn_flags & ZEND_ACC_PUBLIC)) {
  3739. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Access to non-public constructor of class %s", ce->name);
  3740. zval_dtor(return_value);
  3741. RETURN_NULL();
  3742. }
  3743. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "*", &params, &num_args) == FAILURE) {
  3744. if (params) {
  3745. efree(params);
  3746. }
  3747. zval_dtor(return_value);
  3748. RETURN_FALSE;
  3749. }
  3750. fci.size = sizeof(fci);
  3751. fci.function_table = EG(function_table);
  3752. fci.function_name = NULL;
  3753. fci.symbol_table = NULL;
  3754. fci.object_ptr = return_value;
  3755. fci.retval_ptr_ptr = &retval_ptr;
  3756. fci.param_count = num_args;
  3757. fci.params = params;
  3758. fci.no_separation = 1;
  3759. fcc.initialized = 1;
  3760. fcc.function_handler = constructor;
  3761. fcc.calling_scope = EG(scope);
  3762. fcc.called_scope = Z_OBJCE_P(return_value);
  3763. fcc.object_ptr = return_value;
  3764. if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) {
  3765. if (params) {
  3766. efree(params);
  3767. }
  3768. if (retval_ptr) {
  3769. zval_ptr_dtor(&retval_ptr);
  3770. }
  3771. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invocation of %s's constructor failed", ce->name);
  3772. zval_dtor(return_value);
  3773. RETURN_NULL();
  3774. }
  3775. if (retval_ptr) {
  3776. zval_ptr_dtor(&retval_ptr);
  3777. }
  3778. if (params) {
  3779. efree(params);
  3780. }
  3781. } else if (ZEND_NUM_ARGS()) {
  3782. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Class %s does not have a constructor, so you cannot pass any constructor arguments", ce->name);
  3783. }
  3784. }
  3785. /* }}} */
  3786. /* {{{ proto public stdclass ReflectionClass::newInstanceWithoutConstructor()
  3787. Returns an instance of this class without invoking its constructor */
  3788. ZEND_METHOD(reflection_class, newInstanceWithoutConstructor)
  3789. {
  3790. reflection_object *intern;
  3791. zend_class_entry *ce;
  3792. METHOD_NOTSTATIC(reflection_class_ptr);
  3793. GET_REFLECTION_OBJECT_PTR(ce);
  3794. if (ce->create_object != NULL && ce->ce_flags & ZEND_ACC_FINAL_CLASS) {
  3795. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Class %s is an internal class marked as final that cannot be instantiated without invoking its constructor", ce->name);
  3796. }
  3797. object_init_ex(return_value, ce);
  3798. }
  3799. /* }}} */
  3800. /* {{{ proto public stdclass ReflectionClass::newInstanceArgs([array args])
  3801. Returns an instance of this class */
  3802. ZEND_METHOD(reflection_class, newInstanceArgs)
  3803. {
  3804. zval *retval_ptr = NULL;
  3805. reflection_object *intern;
  3806. zend_class_entry *ce, *old_scope;
  3807. int argc = 0;
  3808. HashTable *args;
  3809. zend_function *constructor;
  3810. METHOD_NOTSTATIC(reflection_class_ptr);
  3811. GET_REFLECTION_OBJECT_PTR(ce);
  3812. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|h", &args) == FAILURE) {
  3813. return;
  3814. }
  3815. if (ZEND_NUM_ARGS() > 0) {
  3816. argc = args->nNumOfElements;
  3817. }
  3818. object_init_ex(return_value, ce);
  3819. old_scope = EG(scope);
  3820. EG(scope) = ce;
  3821. constructor = Z_OBJ_HT_P(return_value)->get_constructor(return_value TSRMLS_CC);
  3822. EG(scope) = old_scope;
  3823. /* Run the constructor if there is one */
  3824. if (constructor) {
  3825. zval ***params = NULL;
  3826. zend_fcall_info fci;
  3827. zend_fcall_info_cache fcc;
  3828. if (!(constructor->common.fn_flags & ZEND_ACC_PUBLIC)) {
  3829. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Access to non-public constructor of class %s", ce->name);
  3830. zval_dtor(return_value);
  3831. RETURN_NULL();
  3832. }
  3833. if (argc) {
  3834. params = safe_emalloc(sizeof(zval **), argc, 0);
  3835. zend_hash_apply_with_argument(args, (apply_func_arg_t)_zval_array_to_c_array, &params TSRMLS_CC);
  3836. params -= argc;
  3837. }
  3838. fci.size = sizeof(fci);
  3839. fci.function_table = EG(function_table);
  3840. fci.function_name = NULL;
  3841. fci.symbol_table = NULL;
  3842. fci.object_ptr = return_value;
  3843. fci.retval_ptr_ptr = &retval_ptr;
  3844. fci.param_count = argc;
  3845. fci.params = params;
  3846. fci.no_separation = 1;
  3847. fcc.initialized = 1;
  3848. fcc.function_handler = constructor;
  3849. fcc.calling_scope = EG(scope);
  3850. fcc.called_scope = Z_OBJCE_P(return_value);
  3851. fcc.object_ptr = return_value;
  3852. if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) {
  3853. if (params) {
  3854. efree(params);
  3855. }
  3856. if (retval_ptr) {
  3857. zval_ptr_dtor(&retval_ptr);
  3858. }
  3859. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invocation of %s's constructor failed", ce->name);
  3860. zval_dtor(return_value);
  3861. RETURN_NULL();
  3862. }
  3863. if (retval_ptr) {
  3864. zval_ptr_dtor(&retval_ptr);
  3865. }
  3866. if (params) {
  3867. efree(params);
  3868. }
  3869. } else if (argc) {
  3870. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Class %s does not have a constructor, so you cannot pass any constructor arguments", ce->name);
  3871. }
  3872. }
  3873. /* }}} */
  3874. /* {{{ proto public ReflectionClass[] ReflectionClass::getInterfaces()
  3875. Returns an array of interfaces this class implements */
  3876. ZEND_METHOD(reflection_class, getInterfaces)
  3877. {
  3878. reflection_object *intern;
  3879. zend_class_entry *ce;
  3880. if (zend_parse_parameters_none() == FAILURE) {
  3881. return;
  3882. }
  3883. GET_REFLECTION_OBJECT_PTR(ce);
  3884. /* Return an empty array if this class implements no interfaces */
  3885. array_init(return_value);
  3886. if (ce->num_interfaces) {
  3887. zend_uint i;
  3888. for (i=0; i < ce->num_interfaces; i++) {
  3889. zval *interface;
  3890. ALLOC_ZVAL(interface);
  3891. zend_reflection_class_factory(ce->interfaces[i], interface TSRMLS_CC);
  3892. add_assoc_zval_ex(return_value, ce->interfaces[i]->name, ce->interfaces[i]->name_length + 1, interface);
  3893. }
  3894. }
  3895. }
  3896. /* }}} */
  3897. /* {{{ proto public String[] ReflectionClass::getInterfaceNames()
  3898. Returns an array of names of interfaces this class implements */
  3899. ZEND_METHOD(reflection_class, getInterfaceNames)
  3900. {
  3901. reflection_object *intern;
  3902. zend_class_entry *ce;
  3903. zend_uint i;
  3904. if (zend_parse_parameters_none() == FAILURE) {
  3905. return;
  3906. }
  3907. GET_REFLECTION_OBJECT_PTR(ce);
  3908. /* Return an empty array if this class implements no interfaces */
  3909. array_init(return_value);
  3910. for (i=0; i < ce->num_interfaces; i++) {
  3911. add_next_index_stringl(return_value, ce->interfaces[i]->name, ce->interfaces[i]->name_length, 1);
  3912. }
  3913. }
  3914. /* }}} */
  3915. /* {{{ proto public ReflectionClass[] ReflectionClass::getTraits()
  3916. Returns an array of traits used by this class */
  3917. ZEND_METHOD(reflection_class, getTraits)
  3918. {
  3919. reflection_object *intern;
  3920. zend_class_entry *ce;
  3921. zend_uint i;
  3922. if (zend_parse_parameters_none() == FAILURE) {
  3923. return;
  3924. }
  3925. GET_REFLECTION_OBJECT_PTR(ce);
  3926. array_init(return_value);
  3927. for (i=0; i < ce->num_traits; i++) {
  3928. zval *trait;
  3929. ALLOC_ZVAL(trait);
  3930. zend_reflection_class_factory(ce->traits[i], trait TSRMLS_CC);
  3931. add_assoc_zval_ex(return_value, ce->traits[i]->name, ce->traits[i]->name_length + 1, trait);
  3932. }
  3933. }
  3934. /* }}} */
  3935. /* {{{ proto public String[] ReflectionClass::getTraitNames()
  3936. Returns an array of names of traits used by this class */
  3937. ZEND_METHOD(reflection_class, getTraitNames)
  3938. {
  3939. reflection_object *intern;
  3940. zend_class_entry *ce;
  3941. zend_uint i;
  3942. if (zend_parse_parameters_none() == FAILURE) {
  3943. return;
  3944. }
  3945. GET_REFLECTION_OBJECT_PTR(ce);
  3946. array_init(return_value);
  3947. for (i=0; i < ce->num_traits; i++) {
  3948. add_next_index_stringl(return_value, ce->traits[i]->name, ce->traits[i]->name_length, 1);
  3949. }
  3950. }
  3951. /* }}} */
  3952. /* {{{ proto public arra ReflectionClass::getTraitaliases()
  3953. Returns an array of trait aliases */
  3954. ZEND_METHOD(reflection_class, getTraitAliases)
  3955. {
  3956. reflection_object *intern;
  3957. zend_class_entry *ce;
  3958. if (zend_parse_parameters_none() == FAILURE) {
  3959. return;
  3960. }
  3961. GET_REFLECTION_OBJECT_PTR(ce);
  3962. array_init(return_value);
  3963. if (ce->trait_aliases) {
  3964. zend_uint i = 0;
  3965. while (ce->trait_aliases[i]) {
  3966. char *method_name;
  3967. int method_name_len;
  3968. zend_trait_method_reference *cur_ref = ce->trait_aliases[i]->trait_method;
  3969. if (ce->trait_aliases[i]->alias) {
  3970. method_name_len = spprintf(&method_name, 0, "%s::%s", cur_ref->ce->name, cur_ref->method_name);
  3971. add_assoc_stringl_ex(return_value, ce->trait_aliases[i]->alias, ce->trait_aliases[i]->alias_len + 1, method_name, method_name_len, 0);
  3972. }
  3973. i++;
  3974. }
  3975. }
  3976. }
  3977. /* }}} */
  3978. /* {{{ proto public ReflectionClass ReflectionClass::getParentClass()
  3979. Returns the class' parent class, or, if none exists, FALSE */
  3980. ZEND_METHOD(reflection_class, getParentClass)
  3981. {
  3982. reflection_object *intern;
  3983. zend_class_entry *ce;
  3984. if (zend_parse_parameters_none() == FAILURE) {
  3985. return;
  3986. }
  3987. GET_REFLECTION_OBJECT_PTR(ce);
  3988. if (ce->parent) {
  3989. zend_reflection_class_factory(ce->parent, return_value TSRMLS_CC);
  3990. } else {
  3991. RETURN_FALSE;
  3992. }
  3993. }
  3994. /* }}} */
  3995. /* {{{ proto public bool ReflectionClass::isSubclassOf(string|ReflectionClass class)
  3996. Returns whether this class is a subclass of another class */
  3997. ZEND_METHOD(reflection_class, isSubclassOf)
  3998. {
  3999. reflection_object *intern, *argument;
  4000. zend_class_entry *ce, **pce, *class_ce;
  4001. zval *class_name;
  4002. METHOD_NOTSTATIC(reflection_class_ptr);
  4003. GET_REFLECTION_OBJECT_PTR(ce);
  4004. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &class_name) == FAILURE) {
  4005. return;
  4006. }
  4007. switch(class_name->type) {
  4008. case IS_STRING:
  4009. if (zend_lookup_class(Z_STRVAL_P(class_name), Z_STRLEN_P(class_name), &pce TSRMLS_CC) == FAILURE) {
  4010. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4011. "Class %s does not exist", Z_STRVAL_P(class_name));
  4012. return;
  4013. }
  4014. class_ce = *pce;
  4015. break;
  4016. case IS_OBJECT:
  4017. if (instanceof_function(Z_OBJCE_P(class_name), reflection_class_ptr TSRMLS_CC)) {
  4018. argument = (reflection_object *) zend_object_store_get_object(class_name TSRMLS_CC);
  4019. if (argument == NULL || argument->ptr == NULL) {
  4020. php_error_docref(NULL TSRMLS_CC, E_ERROR, "Internal error: Failed to retrieve the argument's reflection object");
  4021. /* Bails out */
  4022. }
  4023. class_ce = argument->ptr;
  4024. break;
  4025. }
  4026. /* no break */
  4027. default:
  4028. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4029. "Parameter one must either be a string or a ReflectionClass object");
  4030. return;
  4031. }
  4032. RETURN_BOOL((ce != class_ce && instanceof_function(ce, class_ce TSRMLS_CC)));
  4033. }
  4034. /* }}} */
  4035. /* {{{ proto public bool ReflectionClass::implementsInterface(string|ReflectionClass interface_name)
  4036. Returns whether this class is a subclass of another class */
  4037. ZEND_METHOD(reflection_class, implementsInterface)
  4038. {
  4039. reflection_object *intern, *argument;
  4040. zend_class_entry *ce, *interface_ce, **pce;
  4041. zval *interface;
  4042. METHOD_NOTSTATIC(reflection_class_ptr);
  4043. GET_REFLECTION_OBJECT_PTR(ce);
  4044. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &interface) == FAILURE) {
  4045. return;
  4046. }
  4047. switch(interface->type) {
  4048. case IS_STRING:
  4049. if (zend_lookup_class(Z_STRVAL_P(interface), Z_STRLEN_P(interface), &pce TSRMLS_CC) == FAILURE) {
  4050. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4051. "Interface %s does not exist", Z_STRVAL_P(interface));
  4052. return;
  4053. }
  4054. interface_ce = *pce;
  4055. break;
  4056. case IS_OBJECT:
  4057. if (instanceof_function(Z_OBJCE_P(interface), reflection_class_ptr TSRMLS_CC)) {
  4058. argument = (reflection_object *) zend_object_store_get_object(interface TSRMLS_CC);
  4059. if (argument == NULL || argument->ptr == NULL) {
  4060. php_error_docref(NULL TSRMLS_CC, E_ERROR, "Internal error: Failed to retrieve the argument's reflection object");
  4061. /* Bails out */
  4062. }
  4063. interface_ce = argument->ptr;
  4064. break;
  4065. }
  4066. /* no break */
  4067. default:
  4068. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4069. "Parameter one must either be a string or a ReflectionClass object");
  4070. return;
  4071. }
  4072. if (!(interface_ce->ce_flags & ZEND_ACC_INTERFACE)) {
  4073. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4074. "Interface %s is a Class", interface_ce->name);
  4075. return;
  4076. }
  4077. RETURN_BOOL(instanceof_function(ce, interface_ce TSRMLS_CC));
  4078. }
  4079. /* }}} */
  4080. /* {{{ proto public bool ReflectionClass::isIterateable()
  4081. Returns whether this class is iterateable (can be used inside foreach) */
  4082. ZEND_METHOD(reflection_class, isIterateable)
  4083. {
  4084. reflection_object *intern;
  4085. zend_class_entry *ce;
  4086. if (zend_parse_parameters_none() == FAILURE) {
  4087. return;
  4088. }
  4089. METHOD_NOTSTATIC(reflection_class_ptr);
  4090. GET_REFLECTION_OBJECT_PTR(ce);
  4091. RETURN_BOOL(ce->get_iterator != NULL);
  4092. }
  4093. /* }}} */
  4094. /* {{{ proto public ReflectionExtension|NULL ReflectionClass::getExtension()
  4095. Returns NULL or the extension the class belongs to */
  4096. ZEND_METHOD(reflection_class, getExtension)
  4097. {
  4098. reflection_object *intern;
  4099. zend_class_entry *ce;
  4100. if (zend_parse_parameters_none() == FAILURE) {
  4101. return;
  4102. }
  4103. METHOD_NOTSTATIC(reflection_class_ptr);
  4104. GET_REFLECTION_OBJECT_PTR(ce);
  4105. if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module) {
  4106. reflection_extension_factory(return_value, ce->info.internal.module->name TSRMLS_CC);
  4107. }
  4108. }
  4109. /* }}} */
  4110. /* {{{ proto public string|false ReflectionClass::getExtensionName()
  4111. Returns false or the name of the extension the class belongs to */
  4112. ZEND_METHOD(reflection_class, getExtensionName)
  4113. {
  4114. reflection_object *intern;
  4115. zend_class_entry *ce;
  4116. if (zend_parse_parameters_none() == FAILURE) {
  4117. return;
  4118. }
  4119. METHOD_NOTSTATIC(reflection_class_ptr);
  4120. GET_REFLECTION_OBJECT_PTR(ce);
  4121. if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module) {
  4122. RETURN_STRING(ce->info.internal.module->name, 1);
  4123. } else {
  4124. RETURN_FALSE;
  4125. }
  4126. }
  4127. /* }}} */
  4128. /* {{{ proto public bool ReflectionClass::inNamespace()
  4129. Returns whether this class is defined in namespace */
  4130. ZEND_METHOD(reflection_class, inNamespace)
  4131. {
  4132. zval **name;
  4133. const char *backslash;
  4134. if (zend_parse_parameters_none() == FAILURE) {
  4135. return;
  4136. }
  4137. if (zend_hash_find(Z_OBJPROP_P(getThis()), "name", sizeof("name"), (void **) &name) == FAILURE) {
  4138. RETURN_FALSE;
  4139. }
  4140. if (Z_TYPE_PP(name) == IS_STRING
  4141. && (backslash = zend_memrchr(Z_STRVAL_PP(name), '\\', Z_STRLEN_PP(name)))
  4142. && backslash > Z_STRVAL_PP(name))
  4143. {
  4144. RETURN_TRUE;
  4145. }
  4146. RETURN_FALSE;
  4147. }
  4148. /* }}} */
  4149. /* {{{ proto public string ReflectionClass::getNamespaceName()
  4150. Returns the name of namespace where this class is defined */
  4151. ZEND_METHOD(reflection_class, getNamespaceName)
  4152. {
  4153. zval **name;
  4154. const char *backslash;
  4155. if (zend_parse_parameters_none() == FAILURE) {
  4156. return;
  4157. }
  4158. if (zend_hash_find(Z_OBJPROP_P(getThis()), "name", sizeof("name"), (void **) &name) == FAILURE) {
  4159. RETURN_FALSE;
  4160. }
  4161. if (Z_TYPE_PP(name) == IS_STRING
  4162. && (backslash = zend_memrchr(Z_STRVAL_PP(name), '\\', Z_STRLEN_PP(name)))
  4163. && backslash > Z_STRVAL_PP(name))
  4164. {
  4165. RETURN_STRINGL(Z_STRVAL_PP(name), backslash - Z_STRVAL_PP(name), 1);
  4166. }
  4167. RETURN_EMPTY_STRING();
  4168. }
  4169. /* }}} */
  4170. /* {{{ proto public string ReflectionClass::getShortName()
  4171. Returns the short name of the class (without namespace part) */
  4172. ZEND_METHOD(reflection_class, getShortName)
  4173. {
  4174. zval **name;
  4175. const char *backslash;
  4176. if (zend_parse_parameters_none() == FAILURE) {
  4177. return;
  4178. }
  4179. if (zend_hash_find(Z_OBJPROP_P(getThis()), "name", sizeof("name"), (void **) &name) == FAILURE) {
  4180. RETURN_FALSE;
  4181. }
  4182. if (Z_TYPE_PP(name) == IS_STRING
  4183. && (backslash = zend_memrchr(Z_STRVAL_PP(name), '\\', Z_STRLEN_PP(name)))
  4184. && backslash > Z_STRVAL_PP(name))
  4185. {
  4186. RETURN_STRINGL(backslash + 1, Z_STRLEN_PP(name) - (backslash - Z_STRVAL_PP(name) + 1), 1);
  4187. }
  4188. RETURN_ZVAL(*name, 1, 0);
  4189. }
  4190. /* }}} */
  4191. /* {{{ proto public static mixed ReflectionObject::export(mixed argument [, bool return]) throws ReflectionException
  4192. Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  4193. ZEND_METHOD(reflection_object, export)
  4194. {
  4195. _reflection_export(INTERNAL_FUNCTION_PARAM_PASSTHRU, reflection_object_ptr, 1);
  4196. }
  4197. /* }}} */
  4198. /* {{{ proto public void ReflectionObject::__construct(mixed argument) throws ReflectionException
  4199. Constructor. Takes an instance as an argument */
  4200. ZEND_METHOD(reflection_object, __construct)
  4201. {
  4202. reflection_class_object_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
  4203. }
  4204. /* }}} */
  4205. /* {{{ proto public static mixed ReflectionProperty::export(mixed class, string name [, bool return]) throws ReflectionException
  4206. Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  4207. ZEND_METHOD(reflection_property, export)
  4208. {
  4209. _reflection_export(INTERNAL_FUNCTION_PARAM_PASSTHRU, reflection_property_ptr, 2);
  4210. }
  4211. /* }}} */
  4212. /* {{{ proto public void ReflectionProperty::__construct(mixed class, string name)
  4213. Constructor. Throws an Exception in case the given property does not exist */
  4214. ZEND_METHOD(reflection_property, __construct)
  4215. {
  4216. zval *propname, *classname;
  4217. char *name_str;
  4218. const char *class_name, *prop_name;
  4219. int name_len, dynam_prop = 0;
  4220. zval *object;
  4221. reflection_object *intern;
  4222. zend_class_entry **pce;
  4223. zend_class_entry *ce;
  4224. zend_property_info *property_info = NULL;
  4225. property_reference *reference;
  4226. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zs", &classname, &name_str, &name_len) == FAILURE) {
  4227. return;
  4228. }
  4229. object = getThis();
  4230. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  4231. if (intern == NULL) {
  4232. return;
  4233. }
  4234. /* Find the class entry */
  4235. switch (Z_TYPE_P(classname)) {
  4236. case IS_STRING:
  4237. if (zend_lookup_class(Z_STRVAL_P(classname), Z_STRLEN_P(classname), &pce TSRMLS_CC) == FAILURE) {
  4238. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4239. "Class %s does not exist", Z_STRVAL_P(classname));
  4240. return;
  4241. }
  4242. ce = *pce;
  4243. break;
  4244. case IS_OBJECT:
  4245. ce = Z_OBJCE_P(classname);
  4246. break;
  4247. default:
  4248. _DO_THROW("The parameter class is expected to be either a string or an object");
  4249. /* returns out of this function */
  4250. }
  4251. if (zend_hash_find(&ce->properties_info, name_str, name_len + 1, (void **) &property_info) == FAILURE || (property_info->flags & ZEND_ACC_SHADOW)) {
  4252. /* Check for dynamic properties */
  4253. if (property_info == NULL && Z_TYPE_P(classname) == IS_OBJECT && Z_OBJ_HT_P(classname)->get_properties) {
  4254. if (zend_hash_exists(Z_OBJ_HT_P(classname)->get_properties(classname TSRMLS_CC), name_str, name_len+1)) {
  4255. dynam_prop = 1;
  4256. }
  4257. }
  4258. if (dynam_prop == 0) {
  4259. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Property %s::$%s does not exist", ce->name, name_str);
  4260. return;
  4261. }
  4262. }
  4263. if (dynam_prop == 0 && (property_info->flags & ZEND_ACC_PRIVATE) == 0) {
  4264. /* we have to search the class hierarchy for this (implicit) public or protected property */
  4265. zend_class_entry *tmp_ce = ce;
  4266. zend_property_info *tmp_info;
  4267. while (tmp_ce && zend_hash_find(&tmp_ce->properties_info, name_str, name_len + 1, (void **) &tmp_info) != SUCCESS) {
  4268. ce = tmp_ce;
  4269. property_info = tmp_info;
  4270. tmp_ce = tmp_ce->parent;
  4271. }
  4272. }
  4273. MAKE_STD_ZVAL(classname);
  4274. MAKE_STD_ZVAL(propname);
  4275. if (dynam_prop == 0) {
  4276. zend_unmangle_property_name(property_info->name, property_info->name_length, &class_name, &prop_name);
  4277. ZVAL_STRINGL(classname, property_info->ce->name, property_info->ce->name_length, 1);
  4278. ZVAL_STRING(propname, prop_name, 1);
  4279. } else {
  4280. ZVAL_STRINGL(classname, ce->name, ce->name_length, 1);
  4281. ZVAL_STRINGL(propname, name_str, name_len, 1);
  4282. }
  4283. reflection_update_property(object, "class", classname);
  4284. reflection_update_property(object, "name", propname);
  4285. reference = (property_reference*) emalloc(sizeof(property_reference));
  4286. if (dynam_prop) {
  4287. reference->prop.flags = ZEND_ACC_IMPLICIT_PUBLIC;
  4288. reference->prop.name = Z_STRVAL_P(propname);
  4289. reference->prop.name_length = Z_STRLEN_P(propname);
  4290. reference->prop.h = zend_get_hash_value(name_str, name_len+1);
  4291. reference->prop.doc_comment = NULL;
  4292. reference->prop.ce = ce;
  4293. } else {
  4294. reference->prop = *property_info;
  4295. }
  4296. reference->ce = ce;
  4297. intern->ptr = reference;
  4298. intern->ref_type = REF_TYPE_PROPERTY;
  4299. intern->ce = ce;
  4300. intern->ignore_visibility = 0;
  4301. }
  4302. /* }}} */
  4303. /* {{{ proto public string ReflectionProperty::__toString()
  4304. Returns a string representation */
  4305. ZEND_METHOD(reflection_property, __toString)
  4306. {
  4307. reflection_object *intern;
  4308. property_reference *ref;
  4309. string str;
  4310. if (zend_parse_parameters_none() == FAILURE) {
  4311. return;
  4312. }
  4313. GET_REFLECTION_OBJECT_PTR(ref);
  4314. string_init(&str);
  4315. _property_string(&str, &ref->prop, NULL, "" TSRMLS_CC);
  4316. RETURN_STRINGL(str.string, str.len - 1, 0);
  4317. }
  4318. /* }}} */
  4319. /* {{{ proto public string ReflectionProperty::getName()
  4320. Returns the class' name */
  4321. ZEND_METHOD(reflection_property, getName)
  4322. {
  4323. if (zend_parse_parameters_none() == FAILURE) {
  4324. return;
  4325. }
  4326. _default_get_entry(getThis(), "name", sizeof("name"), return_value TSRMLS_CC);
  4327. }
  4328. /* }}} */
  4329. static void _property_check_flag(INTERNAL_FUNCTION_PARAMETERS, int mask) /* {{{ */
  4330. {
  4331. reflection_object *intern;
  4332. property_reference *ref;
  4333. if (zend_parse_parameters_none() == FAILURE) {
  4334. return;
  4335. }
  4336. GET_REFLECTION_OBJECT_PTR(ref);
  4337. RETURN_BOOL(ref->prop.flags & mask);
  4338. }
  4339. /* }}} */
  4340. /* {{{ proto public bool ReflectionProperty::isPublic()
  4341. Returns whether this property is public */
  4342. ZEND_METHOD(reflection_property, isPublic)
  4343. {
  4344. _property_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_PUBLIC | ZEND_ACC_IMPLICIT_PUBLIC);
  4345. }
  4346. /* }}} */
  4347. /* {{{ proto public bool ReflectionProperty::isPrivate()
  4348. Returns whether this property is private */
  4349. ZEND_METHOD(reflection_property, isPrivate)
  4350. {
  4351. _property_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_PRIVATE);
  4352. }
  4353. /* }}} */
  4354. /* {{{ proto public bool ReflectionProperty::isProtected()
  4355. Returns whether this property is protected */
  4356. ZEND_METHOD(reflection_property, isProtected)
  4357. {
  4358. _property_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_PROTECTED);
  4359. }
  4360. /* }}} */
  4361. /* {{{ proto public bool ReflectionProperty::isStatic()
  4362. Returns whether this property is static */
  4363. ZEND_METHOD(reflection_property, isStatic)
  4364. {
  4365. _property_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_STATIC);
  4366. }
  4367. /* }}} */
  4368. /* {{{ proto public bool ReflectionProperty::isDefault()
  4369. Returns whether this property is default (declared at compilation time). */
  4370. ZEND_METHOD(reflection_property, isDefault)
  4371. {
  4372. _property_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ~ZEND_ACC_IMPLICIT_PUBLIC);
  4373. }
  4374. /* }}} */
  4375. /* {{{ proto public int ReflectionProperty::getModifiers()
  4376. Returns a bitfield of the access modifiers for this property */
  4377. ZEND_METHOD(reflection_property, getModifiers)
  4378. {
  4379. reflection_object *intern;
  4380. property_reference *ref;
  4381. if (zend_parse_parameters_none() == FAILURE) {
  4382. return;
  4383. }
  4384. GET_REFLECTION_OBJECT_PTR(ref);
  4385. RETURN_LONG(ref->prop.flags);
  4386. }
  4387. /* }}} */
  4388. /* {{{ proto public mixed ReflectionProperty::getValue([stdclass object])
  4389. Returns this property's value */
  4390. ZEND_METHOD(reflection_property, getValue)
  4391. {
  4392. reflection_object *intern;
  4393. property_reference *ref;
  4394. zval *object, name;
  4395. zval *member_p = NULL;
  4396. METHOD_NOTSTATIC(reflection_property_ptr);
  4397. GET_REFLECTION_OBJECT_PTR(ref);
  4398. if (!(ref->prop.flags & (ZEND_ACC_PUBLIC | ZEND_ACC_IMPLICIT_PUBLIC)) && intern->ignore_visibility == 0) {
  4399. _default_get_entry(getThis(), "name", sizeof("name"), &name TSRMLS_CC);
  4400. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4401. "Cannot access non-public member %s::%s", intern->ce->name, Z_STRVAL(name));
  4402. zval_dtor(&name);
  4403. return;
  4404. }
  4405. if ((ref->prop.flags & ZEND_ACC_STATIC)) {
  4406. zend_update_class_constants(intern->ce TSRMLS_CC);
  4407. if (!CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]) {
  4408. php_error_docref(NULL TSRMLS_CC, E_ERROR, "Internal error: Could not find the property %s::%s", intern->ce->name, ref->prop.name);
  4409. /* Bails out */
  4410. }
  4411. *return_value= *CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset];
  4412. zval_copy_ctor(return_value);
  4413. INIT_PZVAL(return_value);
  4414. } else {
  4415. const char *class_name, *prop_name;
  4416. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "o", &object) == FAILURE) {
  4417. return;
  4418. }
  4419. zend_unmangle_property_name(ref->prop.name, ref->prop.name_length, &class_name, &prop_name);
  4420. member_p = zend_read_property(ref->ce, object, prop_name, strlen(prop_name), 1 TSRMLS_CC);
  4421. MAKE_COPY_ZVAL(&member_p, return_value);
  4422. if (member_p != EG(uninitialized_zval_ptr)) {
  4423. zval_add_ref(&member_p);
  4424. zval_ptr_dtor(&member_p);
  4425. }
  4426. }
  4427. }
  4428. /* }}} */
  4429. /* {{{ proto public void ReflectionProperty::setValue([stdclass object,] mixed value)
  4430. Sets this property's value */
  4431. ZEND_METHOD(reflection_property, setValue)
  4432. {
  4433. reflection_object *intern;
  4434. property_reference *ref;
  4435. zval **variable_ptr;
  4436. zval *object, name;
  4437. zval *value;
  4438. zval *tmp;
  4439. METHOD_NOTSTATIC(reflection_property_ptr);
  4440. GET_REFLECTION_OBJECT_PTR(ref);
  4441. if (!(ref->prop.flags & ZEND_ACC_PUBLIC) && intern->ignore_visibility == 0) {
  4442. _default_get_entry(getThis(), "name", sizeof("name"), &name TSRMLS_CC);
  4443. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4444. "Cannot access non-public member %s::%s", intern->ce->name, Z_STRVAL(name));
  4445. zval_dtor(&name);
  4446. return;
  4447. }
  4448. if ((ref->prop.flags & ZEND_ACC_STATIC)) {
  4449. if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "z", &value) == FAILURE) {
  4450. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz", &tmp, &value) == FAILURE) {
  4451. return;
  4452. }
  4453. }
  4454. zend_update_class_constants(intern->ce TSRMLS_CC);
  4455. if (!CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]) {
  4456. php_error_docref(NULL TSRMLS_CC, E_ERROR, "Internal error: Could not find the property %s::%s", intern->ce->name, ref->prop.name);
  4457. /* Bails out */
  4458. }
  4459. variable_ptr = &CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset];
  4460. if (*variable_ptr != value) {
  4461. if (PZVAL_IS_REF(*variable_ptr)) {
  4462. zval garbage = **variable_ptr; /* old value should be destroyed */
  4463. /* To check: can't *variable_ptr be some system variable like error_zval here? */
  4464. Z_TYPE_PP(variable_ptr) = Z_TYPE_P(value);
  4465. (*variable_ptr)->value = value->value;
  4466. if (Z_REFCOUNT_P(value) > 0) {
  4467. zval_copy_ctor(*variable_ptr);
  4468. }
  4469. zval_dtor(&garbage);
  4470. } else {
  4471. zval *garbage = *variable_ptr;
  4472. /* if we assign referenced variable, we should separate it */
  4473. Z_ADDREF_P(value);
  4474. if (PZVAL_IS_REF(value)) {
  4475. SEPARATE_ZVAL(&value);
  4476. }
  4477. *variable_ptr = value;
  4478. zval_ptr_dtor(&garbage);
  4479. }
  4480. }
  4481. } else {
  4482. const char *class_name, *prop_name;
  4483. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "oz", &object, &value) == FAILURE) {
  4484. return;
  4485. }
  4486. zend_unmangle_property_name(ref->prop.name, ref->prop.name_length, &class_name, &prop_name);
  4487. zend_update_property(ref->ce, object, prop_name, strlen(prop_name), value TSRMLS_CC);
  4488. }
  4489. }
  4490. /* }}} */
  4491. /* {{{ proto public ReflectionClass ReflectionProperty::getDeclaringClass()
  4492. Get the declaring class */
  4493. ZEND_METHOD(reflection_property, getDeclaringClass)
  4494. {
  4495. reflection_object *intern;
  4496. property_reference *ref;
  4497. zend_class_entry *tmp_ce, *ce;
  4498. zend_property_info *tmp_info;
  4499. const char *prop_name, *class_name;
  4500. int prop_name_len;
  4501. if (zend_parse_parameters_none() == FAILURE) {
  4502. return;
  4503. }
  4504. GET_REFLECTION_OBJECT_PTR(ref);
  4505. if (zend_unmangle_property_name(ref->prop.name, ref->prop.name_length, &class_name, &prop_name) != SUCCESS) {
  4506. RETURN_FALSE;
  4507. }
  4508. prop_name_len = strlen(prop_name);
  4509. ce = tmp_ce = ref->ce;
  4510. while (tmp_ce && zend_hash_find(&tmp_ce->properties_info, prop_name, prop_name_len + 1, (void **) &tmp_info) == SUCCESS) {
  4511. if (tmp_info->flags & ZEND_ACC_PRIVATE || tmp_info->flags & ZEND_ACC_SHADOW) {
  4512. /* it's a private property, so it can't be inherited */
  4513. break;
  4514. }
  4515. ce = tmp_ce;
  4516. if (tmp_ce == tmp_info->ce) {
  4517. /* declared in this class, done */
  4518. break;
  4519. }
  4520. tmp_ce = tmp_ce->parent;
  4521. }
  4522. zend_reflection_class_factory(ce, return_value TSRMLS_CC);
  4523. }
  4524. /* }}} */
  4525. /* {{{ proto public string ReflectionProperty::getDocComment()
  4526. Returns the doc comment for this property */
  4527. ZEND_METHOD(reflection_property, getDocComment)
  4528. {
  4529. reflection_object *intern;
  4530. property_reference *ref;
  4531. if (zend_parse_parameters_none() == FAILURE) {
  4532. return;
  4533. }
  4534. GET_REFLECTION_OBJECT_PTR(ref);
  4535. if (ref->prop.doc_comment) {
  4536. RETURN_STRINGL(ref->prop.doc_comment, ref->prop.doc_comment_len, 1);
  4537. }
  4538. RETURN_FALSE;
  4539. }
  4540. /* }}} */
  4541. /* {{{ proto public int ReflectionProperty::setAccessible(bool visible)
  4542. Sets whether non-public properties can be requested */
  4543. ZEND_METHOD(reflection_property, setAccessible)
  4544. {
  4545. reflection_object *intern;
  4546. zend_bool visible;
  4547. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &visible) == FAILURE) {
  4548. return;
  4549. }
  4550. intern = (reflection_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
  4551. if (intern == NULL) {
  4552. return;
  4553. }
  4554. intern->ignore_visibility = visible;
  4555. }
  4556. /* }}} */
  4557. /* {{{ proto public static mixed ReflectionExtension::export(string name [, bool return]) throws ReflectionException
  4558. Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  4559. ZEND_METHOD(reflection_extension, export)
  4560. {
  4561. _reflection_export(INTERNAL_FUNCTION_PARAM_PASSTHRU, reflection_extension_ptr, 1);
  4562. }
  4563. /* }}} */
  4564. /* {{{ proto public void ReflectionExtension::__construct(string name)
  4565. Constructor. Throws an Exception in case the given extension does not exist */
  4566. ZEND_METHOD(reflection_extension, __construct)
  4567. {
  4568. zval *name;
  4569. zval *object;
  4570. char *lcname;
  4571. reflection_object *intern;
  4572. zend_module_entry *module;
  4573. char *name_str;
  4574. int name_len;
  4575. ALLOCA_FLAG(use_heap)
  4576. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name_str, &name_len) == FAILURE) {
  4577. return;
  4578. }
  4579. object = getThis();
  4580. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  4581. if (intern == NULL) {
  4582. return;
  4583. }
  4584. lcname = do_alloca(name_len + 1, use_heap);
  4585. zend_str_tolower_copy(lcname, name_str, name_len);
  4586. if (zend_hash_find(&module_registry, lcname, name_len + 1, (void **)&module) == FAILURE) {
  4587. free_alloca(lcname, use_heap);
  4588. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4589. "Extension %s does not exist", name_str);
  4590. return;
  4591. }
  4592. free_alloca(lcname, use_heap);
  4593. MAKE_STD_ZVAL(name);
  4594. ZVAL_STRING(name, module->name, 1);
  4595. reflection_update_property( object, "name", name);
  4596. intern->ptr = module;
  4597. intern->ref_type = REF_TYPE_OTHER;
  4598. intern->ce = NULL;
  4599. }
  4600. /* }}} */
  4601. /* {{{ proto public string ReflectionExtension::__toString()
  4602. Returns a string representation */
  4603. ZEND_METHOD(reflection_extension, __toString)
  4604. {
  4605. reflection_object *intern;
  4606. zend_module_entry *module;
  4607. string str;
  4608. if (zend_parse_parameters_none() == FAILURE) {
  4609. return;
  4610. }
  4611. GET_REFLECTION_OBJECT_PTR(module);
  4612. string_init(&str);
  4613. _extension_string(&str, module, "" TSRMLS_CC);
  4614. RETURN_STRINGL(str.string, str.len - 1, 0);
  4615. }
  4616. /* }}} */
  4617. /* {{{ proto public string ReflectionExtension::getName()
  4618. Returns this extension's name */
  4619. ZEND_METHOD(reflection_extension, getName)
  4620. {
  4621. if (zend_parse_parameters_none() == FAILURE) {
  4622. return;
  4623. }
  4624. _default_get_entry(getThis(), "name", sizeof("name"), return_value TSRMLS_CC);
  4625. }
  4626. /* }}} */
  4627. /* {{{ proto public string ReflectionExtension::getVersion()
  4628. Returns this extension's version */
  4629. ZEND_METHOD(reflection_extension, getVersion)
  4630. {
  4631. reflection_object *intern;
  4632. zend_module_entry *module;
  4633. if (zend_parse_parameters_none() == FAILURE) {
  4634. return;
  4635. }
  4636. GET_REFLECTION_OBJECT_PTR(module);
  4637. /* An extension does not necessarily have a version number */
  4638. if (module->version == NO_VERSION_YET) {
  4639. RETURN_NULL();
  4640. } else {
  4641. RETURN_STRING(module->version, 1);
  4642. }
  4643. }
  4644. /* }}} */
  4645. /* {{{ proto public ReflectionFunction[] ReflectionExtension::getFunctions()
  4646. Returns an array of this extension's functions */
  4647. ZEND_METHOD(reflection_extension, getFunctions)
  4648. {
  4649. reflection_object *intern;
  4650. zend_module_entry *module;
  4651. HashPosition iterator;
  4652. zval *function;
  4653. zend_function *fptr;
  4654. if (zend_parse_parameters_none() == FAILURE) {
  4655. return;
  4656. }
  4657. GET_REFLECTION_OBJECT_PTR(module);
  4658. array_init(return_value);
  4659. zend_hash_internal_pointer_reset_ex(CG(function_table), &iterator);
  4660. while (zend_hash_get_current_data_ex(CG(function_table), (void **) &fptr, &iterator) == SUCCESS) {
  4661. if (fptr->common.type==ZEND_INTERNAL_FUNCTION
  4662. && fptr->internal_function.module == module) {
  4663. ALLOC_ZVAL(function);
  4664. reflection_function_factory(fptr, NULL, function TSRMLS_CC);
  4665. add_assoc_zval(return_value, fptr->common.function_name, function);
  4666. }
  4667. zend_hash_move_forward_ex(CG(function_table), &iterator);
  4668. }
  4669. }
  4670. /* }}} */
  4671. static int _addconstant(zend_constant *constant TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */
  4672. {
  4673. zval *const_val;
  4674. zval *retval = va_arg(args, zval*);
  4675. int number = va_arg(args, int);
  4676. if (number == constant->module_number) {
  4677. ALLOC_ZVAL(const_val);
  4678. *const_val = constant->value;
  4679. zval_copy_ctor(const_val);
  4680. INIT_PZVAL(const_val);
  4681. add_assoc_zval_ex(retval, constant->name, constant->name_len, const_val);
  4682. }
  4683. return 0;
  4684. }
  4685. /* }}} */
  4686. /* {{{ proto public array ReflectionExtension::getConstants()
  4687. Returns an associative array containing this extension's constants and their values */
  4688. ZEND_METHOD(reflection_extension, getConstants)
  4689. {
  4690. reflection_object *intern;
  4691. zend_module_entry *module;
  4692. if (zend_parse_parameters_none() == FAILURE) {
  4693. return;
  4694. }
  4695. GET_REFLECTION_OBJECT_PTR(module);
  4696. array_init(return_value);
  4697. zend_hash_apply_with_arguments(EG(zend_constants) TSRMLS_CC, (apply_func_args_t) _addconstant, 2, return_value, module->module_number);
  4698. }
  4699. /* }}} */
  4700. /* {{{ _addinientry */
  4701. static int _addinientry(zend_ini_entry *ini_entry TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
  4702. {
  4703. zval *retval = va_arg(args, zval*);
  4704. int number = va_arg(args, int);
  4705. if (number == ini_entry->module_number) {
  4706. if (ini_entry->value) {
  4707. add_assoc_stringl(retval, ini_entry->name, ini_entry->value, ini_entry->value_length, 1);
  4708. } else {
  4709. add_assoc_null(retval, ini_entry->name);
  4710. }
  4711. }
  4712. return ZEND_HASH_APPLY_KEEP;
  4713. }
  4714. /* }}} */
  4715. /* {{{ proto public array ReflectionExtension::getINIEntries()
  4716. Returns an associative array containing this extension's INI entries and their values */
  4717. ZEND_METHOD(reflection_extension, getINIEntries)
  4718. {
  4719. reflection_object *intern;
  4720. zend_module_entry *module;
  4721. if (zend_parse_parameters_none() == FAILURE) {
  4722. return;
  4723. }
  4724. GET_REFLECTION_OBJECT_PTR(module);
  4725. array_init(return_value);
  4726. zend_hash_apply_with_arguments(EG(ini_directives) TSRMLS_CC, (apply_func_args_t) _addinientry, 2, return_value, module->module_number);
  4727. }
  4728. /* }}} */
  4729. /* {{{ add_extension_class */
  4730. static int add_extension_class(zend_class_entry **pce TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
  4731. {
  4732. zval *class_array = va_arg(args, zval*), *zclass;
  4733. struct _zend_module_entry *module = va_arg(args, struct _zend_module_entry*);
  4734. int add_reflection_class = va_arg(args, int);
  4735. if (((*pce)->type == ZEND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->info.internal.module->name, module->name)) {
  4736. const char *name;
  4737. int nlen;
  4738. if (zend_binary_strcasecmp((*pce)->name, (*pce)->name_length, hash_key->arKey, hash_key->nKeyLength-1)) {
  4739. /* This is an class alias, use alias name */
  4740. name = hash_key->arKey;
  4741. nlen = hash_key->nKeyLength-1;
  4742. } else {
  4743. /* Use class name */
  4744. name = (*pce)->name;
  4745. nlen = (*pce)->name_length;
  4746. }
  4747. if (add_reflection_class) {
  4748. ALLOC_ZVAL(zclass);
  4749. zend_reflection_class_factory(*pce, zclass TSRMLS_CC);
  4750. add_assoc_zval_ex(class_array, name, nlen+1, zclass);
  4751. } else {
  4752. add_next_index_stringl(class_array, name, nlen, 1);
  4753. }
  4754. }
  4755. return ZEND_HASH_APPLY_KEEP;
  4756. }
  4757. /* }}} */
  4758. /* {{{ proto public ReflectionClass[] ReflectionExtension::getClasses()
  4759. Returns an array containing ReflectionClass objects for all classes of this extension */
  4760. ZEND_METHOD(reflection_extension, getClasses)
  4761. {
  4762. reflection_object *intern;
  4763. zend_module_entry *module;
  4764. if (zend_parse_parameters_none() == FAILURE) {
  4765. return;
  4766. }
  4767. GET_REFLECTION_OBJECT_PTR(module);
  4768. array_init(return_value);
  4769. zend_hash_apply_with_arguments(EG(class_table) TSRMLS_CC, (apply_func_args_t) add_extension_class, 3, return_value, module, 1);
  4770. }
  4771. /* }}} */
  4772. /* {{{ proto public array ReflectionExtension::getClassNames()
  4773. Returns an array containing all names of all classes of this extension */
  4774. ZEND_METHOD(reflection_extension, getClassNames)
  4775. {
  4776. reflection_object *intern;
  4777. zend_module_entry *module;
  4778. if (zend_parse_parameters_none() == FAILURE) {
  4779. return;
  4780. }
  4781. GET_REFLECTION_OBJECT_PTR(module);
  4782. array_init(return_value);
  4783. zend_hash_apply_with_arguments(EG(class_table) TSRMLS_CC, (apply_func_args_t) add_extension_class, 3, return_value, module, 0);
  4784. }
  4785. /* }}} */
  4786. /* {{{ proto public array ReflectionExtension::getDependencies()
  4787. Returns an array containing all names of all extensions this extension depends on */
  4788. ZEND_METHOD(reflection_extension, getDependencies)
  4789. {
  4790. reflection_object *intern;
  4791. zend_module_entry *module;
  4792. const zend_module_dep *dep;
  4793. if (zend_parse_parameters_none() == FAILURE) {
  4794. return;
  4795. }
  4796. GET_REFLECTION_OBJECT_PTR(module);
  4797. array_init(return_value);
  4798. dep = module->deps;
  4799. if (!dep)
  4800. {
  4801. return;
  4802. }
  4803. while(dep->name) {
  4804. char *relation;
  4805. char *rel_type;
  4806. int len;
  4807. switch(dep->type) {
  4808. case MODULE_DEP_REQUIRED:
  4809. rel_type = "Required";
  4810. break;
  4811. case MODULE_DEP_CONFLICTS:
  4812. rel_type = "Conflicts";
  4813. break;
  4814. case MODULE_DEP_OPTIONAL:
  4815. rel_type = "Optional";
  4816. break;
  4817. default:
  4818. rel_type = "Error"; /* shouldn't happen */
  4819. break;
  4820. }
  4821. len = spprintf(&relation, 0, "%s%s%s%s%s",
  4822. rel_type,
  4823. dep->rel ? " " : "",
  4824. dep->rel ? dep->rel : "",
  4825. dep->version ? " " : "",
  4826. dep->version ? dep->version : "");
  4827. add_assoc_stringl(return_value, dep->name, relation, len, 0);
  4828. dep++;
  4829. }
  4830. }
  4831. /* }}} */
  4832. /* {{{ proto public void ReflectionExtension::info()
  4833. Prints phpinfo block for the extension */
  4834. ZEND_METHOD(reflection_extension, info)
  4835. {
  4836. reflection_object *intern;
  4837. zend_module_entry *module;
  4838. if (zend_parse_parameters_none() == FAILURE) {
  4839. return;
  4840. }
  4841. GET_REFLECTION_OBJECT_PTR(module);
  4842. php_info_print_module(module TSRMLS_CC);
  4843. }
  4844. /* }}} */
  4845. /* {{{ proto public bool ReflectionExtension::isPersistent()
  4846. Returns whether this extension is persistent */
  4847. ZEND_METHOD(reflection_extension, isPersistent)
  4848. {
  4849. reflection_object *intern;
  4850. zend_module_entry *module;
  4851. if (zend_parse_parameters_none() == FAILURE) {
  4852. return;
  4853. }
  4854. GET_REFLECTION_OBJECT_PTR(module);
  4855. RETURN_BOOL(module->type == MODULE_PERSISTENT);
  4856. }
  4857. /* }}} */
  4858. /* {{{ proto public bool ReflectionExtension::isTemporary()
  4859. Returns whether this extension is temporary */
  4860. ZEND_METHOD(reflection_extension, isTemporary)
  4861. {
  4862. reflection_object *intern;
  4863. zend_module_entry *module;
  4864. if (zend_parse_parameters_none() == FAILURE) {
  4865. return;
  4866. }
  4867. GET_REFLECTION_OBJECT_PTR(module);
  4868. RETURN_BOOL(module->type == MODULE_TEMPORARY);
  4869. }
  4870. /* }}} */
  4871. /* {{{ proto public static mixed ReflectionZendExtension::export(string name [, bool return]) throws ReflectionException
  4872. * Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
  4873. ZEND_METHOD(reflection_zend_extension, export)
  4874. {
  4875. _reflection_export(INTERNAL_FUNCTION_PARAM_PASSTHRU, reflection_zend_extension_ptr, 1);
  4876. }
  4877. /* }}} */
  4878. /* {{{ proto public void ReflectionZendExtension::__construct(string name)
  4879. Constructor. Throws an Exception in case the given Zend extension does not exist */
  4880. ZEND_METHOD(reflection_zend_extension, __construct)
  4881. {
  4882. zval *name;
  4883. zval *object;
  4884. reflection_object *intern;
  4885. zend_extension *extension;
  4886. char *name_str;
  4887. int name_len;
  4888. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name_str, &name_len) == FAILURE) {
  4889. return;
  4890. }
  4891. object = getThis();
  4892. intern = (reflection_object *) zend_object_store_get_object(object TSRMLS_CC);
  4893. if (intern == NULL) {
  4894. return;
  4895. }
  4896. extension = zend_get_extension(name_str);
  4897. if (!extension) {
  4898. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  4899. "Zend Extension %s does not exist", name_str);
  4900. return;
  4901. }
  4902. MAKE_STD_ZVAL(name);
  4903. ZVAL_STRING(name, extension->name, 1);
  4904. reflection_update_property(object, "name", name);
  4905. intern->ptr = extension;
  4906. intern->ref_type = REF_TYPE_OTHER;
  4907. intern->ce = NULL;
  4908. }
  4909. /* }}} */
  4910. /* {{{ proto public string ReflectionZendExtension::__toString()
  4911. Returns a string representation */
  4912. ZEND_METHOD(reflection_zend_extension, __toString)
  4913. {
  4914. reflection_object *intern;
  4915. zend_extension *extension;
  4916. string str;
  4917. if (zend_parse_parameters_none() == FAILURE) {
  4918. return;
  4919. }
  4920. GET_REFLECTION_OBJECT_PTR(extension);
  4921. string_init(&str);
  4922. _zend_extension_string(&str, extension, "" TSRMLS_CC);
  4923. RETURN_STRINGL(str.string, str.len - 1, 0);
  4924. }
  4925. /* }}} */
  4926. /* {{{ proto public string ReflectionZendExtension::getName()
  4927. Returns the name of this Zend extension */
  4928. ZEND_METHOD(reflection_zend_extension, getName)
  4929. {
  4930. reflection_object *intern;
  4931. zend_extension *extension;
  4932. if (zend_parse_parameters_none() == FAILURE) {
  4933. return;
  4934. }
  4935. GET_REFLECTION_OBJECT_PTR(extension);
  4936. RETURN_STRING(extension->name, 1);
  4937. }
  4938. /* }}} */
  4939. /* {{{ proto public string ReflectionZendExtension::getVersion()
  4940. Returns the version information of this Zend extension */
  4941. ZEND_METHOD(reflection_zend_extension, getVersion)
  4942. {
  4943. reflection_object *intern;
  4944. zend_extension *extension;
  4945. if (zend_parse_parameters_none() == FAILURE) {
  4946. return;
  4947. }
  4948. GET_REFLECTION_OBJECT_PTR(extension);
  4949. RETURN_STRING(extension->version ? extension->version : "", 1);
  4950. }
  4951. /* }}} */
  4952. /* {{{ proto public void ReflectionZendExtension::getAuthor()
  4953. * Returns the name of this Zend extension's author */
  4954. ZEND_METHOD(reflection_zend_extension, getAuthor)
  4955. {
  4956. reflection_object *intern;
  4957. zend_extension *extension;
  4958. if (zend_parse_parameters_none() == FAILURE) {
  4959. return;
  4960. }
  4961. GET_REFLECTION_OBJECT_PTR(extension);
  4962. RETURN_STRING(extension->author ? extension->author : "", 1);
  4963. }
  4964. /* }}} */
  4965. /* {{{ proto public void ReflectionZendExtension::getURL()
  4966. Returns this Zend extension's URL*/
  4967. ZEND_METHOD(reflection_zend_extension, getURL)
  4968. {
  4969. reflection_object *intern;
  4970. zend_extension *extension;
  4971. if (zend_parse_parameters_none() == FAILURE) {
  4972. return;
  4973. }
  4974. GET_REFLECTION_OBJECT_PTR(extension);
  4975. RETURN_STRING(extension->URL ? extension->URL : "", 1);
  4976. }
  4977. /* }}} */
  4978. /* {{{ proto public void ReflectionZendExtension::getCopyright()
  4979. Returns this Zend extension's copyright information */
  4980. ZEND_METHOD(reflection_zend_extension, getCopyright)
  4981. {
  4982. reflection_object *intern;
  4983. zend_extension *extension;
  4984. if (zend_parse_parameters_none() == FAILURE) {
  4985. return;
  4986. }
  4987. GET_REFLECTION_OBJECT_PTR(extension);
  4988. RETURN_STRING(extension->copyright ? extension->copyright : "", 1);
  4989. }
  4990. /* }}} */
  4991. /* {{{ method tables */
  4992. static const zend_function_entry reflection_exception_functions[] = {
  4993. PHP_FE_END
  4994. };
  4995. ZEND_BEGIN_ARG_INFO(arginfo_reflection__void, 0)
  4996. ZEND_END_ARG_INFO()
  4997. ZEND_BEGIN_ARG_INFO(arginfo_reflection_getModifierNames, 0)
  4998. ZEND_ARG_INFO(0, modifiers)
  4999. ZEND_END_ARG_INFO()
  5000. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_export, 0, 0, 1)
  5001. ZEND_ARG_OBJ_INFO(0, reflector, Reflector, 0)
  5002. ZEND_ARG_INFO(0, return)
  5003. ZEND_END_ARG_INFO()
  5004. static const zend_function_entry reflection_functions[] = {
  5005. ZEND_ME(reflection, getModifierNames, arginfo_reflection_getModifierNames, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
  5006. ZEND_ME(reflection, export, arginfo_reflection_export, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
  5007. PHP_FE_END
  5008. };
  5009. static const zend_function_entry reflector_functions[] = {
  5010. ZEND_FENTRY(export, NULL, NULL, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
  5011. ZEND_ABSTRACT_ME(reflector, __toString, arginfo_reflection__void)
  5012. PHP_FE_END
  5013. };
  5014. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_function_export, 0, 0, 1)
  5015. ZEND_ARG_INFO(0, name)
  5016. ZEND_ARG_INFO(0, return)
  5017. ZEND_END_ARG_INFO()
  5018. ZEND_BEGIN_ARG_INFO(arginfo_reflection_function___construct, 0)
  5019. ZEND_ARG_INFO(0, name)
  5020. ZEND_END_ARG_INFO()
  5021. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_function_invoke, 0, 0, 0)
  5022. ZEND_ARG_INFO(0, args)
  5023. ZEND_END_ARG_INFO()
  5024. ZEND_BEGIN_ARG_INFO(arginfo_reflection_function_invokeArgs, 0)
  5025. ZEND_ARG_ARRAY_INFO(0, args, 0)
  5026. ZEND_END_ARG_INFO()
  5027. static const zend_function_entry reflection_function_abstract_functions[] = {
  5028. ZEND_ME(reflection, __clone, arginfo_reflection__void, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
  5029. PHP_ABSTRACT_ME(reflection_function, __toString, arginfo_reflection__void)
  5030. ZEND_ME(reflection_function, inNamespace, arginfo_reflection__void, 0)
  5031. ZEND_ME(reflection_function, isClosure, arginfo_reflection__void, 0)
  5032. ZEND_ME(reflection_function, isDeprecated, arginfo_reflection__void, 0)
  5033. ZEND_ME(reflection_function, isInternal, arginfo_reflection__void, 0)
  5034. ZEND_ME(reflection_function, isUserDefined, arginfo_reflection__void, 0)
  5035. ZEND_ME(reflection_function, isGenerator, arginfo_reflection__void, 0)
  5036. ZEND_ME(reflection_function, isVariadic, arginfo_reflection__void, 0)
  5037. ZEND_ME(reflection_function, getClosureThis, arginfo_reflection__void, 0)
  5038. ZEND_ME(reflection_function, getClosureScopeClass, arginfo_reflection__void, 0)
  5039. ZEND_ME(reflection_function, getDocComment, arginfo_reflection__void, 0)
  5040. ZEND_ME(reflection_function, getEndLine, arginfo_reflection__void, 0)
  5041. ZEND_ME(reflection_function, getExtension, arginfo_reflection__void, 0)
  5042. ZEND_ME(reflection_function, getExtensionName, arginfo_reflection__void, 0)
  5043. ZEND_ME(reflection_function, getFileName, arginfo_reflection__void, 0)
  5044. ZEND_ME(reflection_function, getName, arginfo_reflection__void, 0)
  5045. ZEND_ME(reflection_function, getNamespaceName, arginfo_reflection__void, 0)
  5046. ZEND_ME(reflection_function, getNumberOfParameters, arginfo_reflection__void, 0)
  5047. ZEND_ME(reflection_function, getNumberOfRequiredParameters, arginfo_reflection__void, 0)
  5048. ZEND_ME(reflection_function, getParameters, arginfo_reflection__void, 0)
  5049. ZEND_ME(reflection_function, getShortName, arginfo_reflection__void, 0)
  5050. ZEND_ME(reflection_function, getStartLine, arginfo_reflection__void, 0)
  5051. ZEND_ME(reflection_function, getStaticVariables, arginfo_reflection__void, 0)
  5052. ZEND_ME(reflection_function, returnsReference, arginfo_reflection__void, 0)
  5053. PHP_FE_END
  5054. };
  5055. static const zend_function_entry reflection_function_functions[] = {
  5056. ZEND_ME(reflection_function, __construct, arginfo_reflection_function___construct, 0)
  5057. ZEND_ME(reflection_function, __toString, arginfo_reflection__void, 0)
  5058. ZEND_ME(reflection_function, export, arginfo_reflection_function_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
  5059. ZEND_ME(reflection_function, isDisabled, arginfo_reflection__void, 0)
  5060. ZEND_ME(reflection_function, invoke, arginfo_reflection_function_invoke, 0)
  5061. ZEND_ME(reflection_function, invokeArgs, arginfo_reflection_function_invokeArgs, 0)
  5062. ZEND_ME(reflection_function, getClosure, arginfo_reflection__void, 0)
  5063. PHP_FE_END
  5064. };
  5065. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_method_export, 0, 0, 2)
  5066. ZEND_ARG_INFO(0, class)
  5067. ZEND_ARG_INFO(0, name)
  5068. ZEND_ARG_INFO(0, return)
  5069. ZEND_END_ARG_INFO()
  5070. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_method___construct, 0, 0, 1)
  5071. ZEND_ARG_INFO(0, class_or_method)
  5072. ZEND_ARG_INFO(0, name)
  5073. ZEND_END_ARG_INFO()
  5074. ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_invoke, 0)
  5075. ZEND_ARG_INFO(0, object)
  5076. ZEND_ARG_INFO(0, args)
  5077. ZEND_END_ARG_INFO()
  5078. ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_invokeArgs, 0)
  5079. ZEND_ARG_INFO(0, object)
  5080. ZEND_ARG_ARRAY_INFO(0, args, 0)
  5081. ZEND_END_ARG_INFO()
  5082. ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_setAccessible, 0)
  5083. ZEND_ARG_INFO(0, value)
  5084. ZEND_END_ARG_INFO()
  5085. ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_getClosure, 0)
  5086. ZEND_ARG_INFO(0, object)
  5087. ZEND_END_ARG_INFO()
  5088. static const zend_function_entry reflection_method_functions[] = {
  5089. ZEND_ME(reflection_method, export, arginfo_reflection_method_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
  5090. ZEND_ME(reflection_method, __construct, arginfo_reflection_method___construct, 0)
  5091. ZEND_ME(reflection_method, __toString, arginfo_reflection__void, 0)
  5092. ZEND_ME(reflection_method, isPublic, arginfo_reflection__void, 0)
  5093. ZEND_ME(reflection_method, isPrivate, arginfo_reflection__void, 0)
  5094. ZEND_ME(reflection_method, isProtected, arginfo_reflection__void, 0)
  5095. ZEND_ME(reflection_method, isAbstract, arginfo_reflection__void, 0)
  5096. ZEND_ME(reflection_method, isFinal, arginfo_reflection__void, 0)
  5097. ZEND_ME(reflection_method, isStatic, arginfo_reflection__void, 0)
  5098. ZEND_ME(reflection_method, isConstructor, arginfo_reflection__void, 0)
  5099. ZEND_ME(reflection_method, isDestructor, arginfo_reflection__void, 0)
  5100. ZEND_ME(reflection_method, getClosure, arginfo_reflection_method_getClosure, 0)
  5101. ZEND_ME(reflection_method, getModifiers, arginfo_reflection__void, 0)
  5102. ZEND_ME(reflection_method, invoke, arginfo_reflection_method_invoke, 0)
  5103. ZEND_ME(reflection_method, invokeArgs, arginfo_reflection_method_invokeArgs, 0)
  5104. ZEND_ME(reflection_method, getDeclaringClass, arginfo_reflection__void, 0)
  5105. ZEND_ME(reflection_method, getPrototype, arginfo_reflection__void, 0)
  5106. ZEND_ME(reflection_property, setAccessible, arginfo_reflection_method_setAccessible, 0)
  5107. PHP_FE_END
  5108. };
  5109. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_class_export, 0, 0, 1)
  5110. ZEND_ARG_INFO(0, argument)
  5111. ZEND_ARG_INFO(0, return)
  5112. ZEND_END_ARG_INFO()
  5113. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class___construct, 0)
  5114. ZEND_ARG_INFO(0, argument)
  5115. ZEND_END_ARG_INFO()
  5116. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_class_getStaticPropertyValue, 0, 0, 1)
  5117. ZEND_ARG_INFO(0, name)
  5118. ZEND_ARG_INFO(0, default)
  5119. ZEND_END_ARG_INFO()
  5120. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_setStaticPropertyValue, 0)
  5121. ZEND_ARG_INFO(0, name)
  5122. ZEND_ARG_INFO(0, value)
  5123. ZEND_END_ARG_INFO()
  5124. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_hasMethod, 0)
  5125. ZEND_ARG_INFO(0, name)
  5126. ZEND_END_ARG_INFO()
  5127. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_getMethod, 0)
  5128. ZEND_ARG_INFO(0, name)
  5129. ZEND_END_ARG_INFO()
  5130. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_class_getMethods, 0, 0, 0)
  5131. ZEND_ARG_INFO(0, filter)
  5132. ZEND_END_ARG_INFO()
  5133. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_hasProperty, 0)
  5134. ZEND_ARG_INFO(0, name)
  5135. ZEND_END_ARG_INFO()
  5136. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_getProperty, 0)
  5137. ZEND_ARG_INFO(0, name)
  5138. ZEND_END_ARG_INFO()
  5139. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_class_getProperties, 0, 0, 0)
  5140. ZEND_ARG_INFO(0, filter)
  5141. ZEND_END_ARG_INFO()
  5142. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_hasConstant, 0)
  5143. ZEND_ARG_INFO(0, name)
  5144. ZEND_END_ARG_INFO()
  5145. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_getConstant, 0)
  5146. ZEND_ARG_INFO(0, name)
  5147. ZEND_END_ARG_INFO()
  5148. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_isInstance, 0)
  5149. ZEND_ARG_INFO(0, object)
  5150. ZEND_END_ARG_INFO()
  5151. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_newInstance, 0)
  5152. ZEND_ARG_INFO(0, args)
  5153. ZEND_END_ARG_INFO()
  5154. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_newInstanceWithoutConstructor, 0)
  5155. ZEND_END_ARG_INFO()
  5156. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_class_newInstanceArgs, 0, 0, 0)
  5157. ZEND_ARG_ARRAY_INFO(0, args, 0)
  5158. ZEND_END_ARG_INFO()
  5159. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_isSubclassOf, 0)
  5160. ZEND_ARG_INFO(0, class)
  5161. ZEND_END_ARG_INFO()
  5162. ZEND_BEGIN_ARG_INFO(arginfo_reflection_class_implementsInterface, 0)
  5163. ZEND_ARG_INFO(0, interface)
  5164. ZEND_END_ARG_INFO()
  5165. static const zend_function_entry reflection_class_functions[] = {
  5166. ZEND_ME(reflection, __clone, arginfo_reflection__void, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
  5167. ZEND_ME(reflection_class, export, arginfo_reflection_class_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
  5168. ZEND_ME(reflection_class, __construct, arginfo_reflection_class___construct, 0)
  5169. ZEND_ME(reflection_class, __toString, arginfo_reflection__void, 0)
  5170. ZEND_ME(reflection_class, getName, arginfo_reflection__void, 0)
  5171. ZEND_ME(reflection_class, isInternal, arginfo_reflection__void, 0)
  5172. ZEND_ME(reflection_class, isUserDefined, arginfo_reflection__void, 0)
  5173. ZEND_ME(reflection_class, isInstantiable, arginfo_reflection__void, 0)
  5174. ZEND_ME(reflection_class, isCloneable, arginfo_reflection__void, 0)
  5175. ZEND_ME(reflection_class, getFileName, arginfo_reflection__void, 0)
  5176. ZEND_ME(reflection_class, getStartLine, arginfo_reflection__void, 0)
  5177. ZEND_ME(reflection_class, getEndLine, arginfo_reflection__void, 0)
  5178. ZEND_ME(reflection_class, getDocComment, arginfo_reflection__void, 0)
  5179. ZEND_ME(reflection_class, getConstructor, arginfo_reflection__void, 0)
  5180. ZEND_ME(reflection_class, hasMethod, arginfo_reflection_class_hasMethod, 0)
  5181. ZEND_ME(reflection_class, getMethod, arginfo_reflection_class_getMethod, 0)
  5182. ZEND_ME(reflection_class, getMethods, arginfo_reflection_class_getMethods, 0)
  5183. ZEND_ME(reflection_class, hasProperty, arginfo_reflection_class_hasProperty, 0)
  5184. ZEND_ME(reflection_class, getProperty, arginfo_reflection_class_getProperty, 0)
  5185. ZEND_ME(reflection_class, getProperties, arginfo_reflection_class_getProperties, 0)
  5186. ZEND_ME(reflection_class, hasConstant, arginfo_reflection_class_hasConstant, 0)
  5187. ZEND_ME(reflection_class, getConstants, arginfo_reflection__void, 0)
  5188. ZEND_ME(reflection_class, getConstant, arginfo_reflection_class_getConstant, 0)
  5189. ZEND_ME(reflection_class, getInterfaces, arginfo_reflection__void, 0)
  5190. ZEND_ME(reflection_class, getInterfaceNames, arginfo_reflection__void, 0)
  5191. ZEND_ME(reflection_class, isInterface, arginfo_reflection__void, 0)
  5192. ZEND_ME(reflection_class, getTraits, arginfo_reflection__void, 0)
  5193. ZEND_ME(reflection_class, getTraitNames, arginfo_reflection__void, 0)
  5194. ZEND_ME(reflection_class, getTraitAliases, arginfo_reflection__void, 0)
  5195. ZEND_ME(reflection_class, isTrait, arginfo_reflection__void, 0)
  5196. ZEND_ME(reflection_class, isAbstract, arginfo_reflection__void, 0)
  5197. ZEND_ME(reflection_class, isFinal, arginfo_reflection__void, 0)
  5198. ZEND_ME(reflection_class, getModifiers, arginfo_reflection__void, 0)
  5199. ZEND_ME(reflection_class, isInstance, arginfo_reflection_class_isInstance, 0)
  5200. ZEND_ME(reflection_class, newInstance, arginfo_reflection_class_newInstance, 0)
  5201. ZEND_ME(reflection_class, newInstanceWithoutConstructor, arginfo_reflection_class_newInstanceWithoutConstructor, 0)
  5202. ZEND_ME(reflection_class, newInstanceArgs, arginfo_reflection_class_newInstanceArgs, 0)
  5203. ZEND_ME(reflection_class, getParentClass, arginfo_reflection__void, 0)
  5204. ZEND_ME(reflection_class, isSubclassOf, arginfo_reflection_class_isSubclassOf, 0)
  5205. ZEND_ME(reflection_class, getStaticProperties, arginfo_reflection__void, 0)
  5206. ZEND_ME(reflection_class, getStaticPropertyValue, arginfo_reflection_class_getStaticPropertyValue, 0)
  5207. ZEND_ME(reflection_class, setStaticPropertyValue, arginfo_reflection_class_setStaticPropertyValue, 0)
  5208. ZEND_ME(reflection_class, getDefaultProperties, arginfo_reflection__void, 0)
  5209. ZEND_ME(reflection_class, isIterateable, arginfo_reflection__void, 0)
  5210. ZEND_ME(reflection_class, implementsInterface, arginfo_reflection_class_implementsInterface, 0)
  5211. ZEND_ME(reflection_class, getExtension, arginfo_reflection__void, 0)
  5212. ZEND_ME(reflection_class, getExtensionName, arginfo_reflection__void, 0)
  5213. ZEND_ME(reflection_class, inNamespace, arginfo_reflection__void, 0)
  5214. ZEND_ME(reflection_class, getNamespaceName, arginfo_reflection__void, 0)
  5215. ZEND_ME(reflection_class, getShortName, arginfo_reflection__void, 0)
  5216. PHP_FE_END
  5217. };
  5218. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_object_export, 0, 0, 1)
  5219. ZEND_ARG_INFO(0, argument)
  5220. ZEND_ARG_INFO(0, return)
  5221. ZEND_END_ARG_INFO()
  5222. ZEND_BEGIN_ARG_INFO(arginfo_reflection_object___construct, 0)
  5223. ZEND_ARG_INFO(0, argument)
  5224. ZEND_END_ARG_INFO()
  5225. static const zend_function_entry reflection_object_functions[] = {
  5226. ZEND_ME(reflection_object, export, arginfo_reflection_object_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
  5227. ZEND_ME(reflection_object, __construct, arginfo_reflection_object___construct, 0)
  5228. PHP_FE_END
  5229. };
  5230. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_property_export, 0, 0, 2)
  5231. ZEND_ARG_INFO(0, class)
  5232. ZEND_ARG_INFO(0, name)
  5233. ZEND_ARG_INFO(0, return)
  5234. ZEND_END_ARG_INFO()
  5235. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_property___construct, 0, 0, 2)
  5236. ZEND_ARG_INFO(0, class)
  5237. ZEND_ARG_INFO(0, name)
  5238. ZEND_END_ARG_INFO()
  5239. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_property_getValue, 0, 0, 0)
  5240. ZEND_ARG_INFO(0, object)
  5241. ZEND_END_ARG_INFO()
  5242. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_property_setValue, 0, 0, 1)
  5243. ZEND_ARG_INFO(0, object)
  5244. ZEND_ARG_INFO(0, value)
  5245. ZEND_END_ARG_INFO()
  5246. ZEND_BEGIN_ARG_INFO(arginfo_reflection_property_setAccessible, 0)
  5247. ZEND_ARG_INFO(0, visible)
  5248. ZEND_END_ARG_INFO()
  5249. static const zend_function_entry reflection_property_functions[] = {
  5250. ZEND_ME(reflection, __clone, arginfo_reflection__void, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
  5251. ZEND_ME(reflection_property, export, arginfo_reflection_property_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
  5252. ZEND_ME(reflection_property, __construct, arginfo_reflection_property___construct, 0)
  5253. ZEND_ME(reflection_property, __toString, arginfo_reflection__void, 0)
  5254. ZEND_ME(reflection_property, getName, arginfo_reflection__void, 0)
  5255. ZEND_ME(reflection_property, getValue, arginfo_reflection_property_getValue, 0)
  5256. ZEND_ME(reflection_property, setValue, arginfo_reflection_property_setValue, 0)
  5257. ZEND_ME(reflection_property, isPublic, arginfo_reflection__void, 0)
  5258. ZEND_ME(reflection_property, isPrivate, arginfo_reflection__void, 0)
  5259. ZEND_ME(reflection_property, isProtected, arginfo_reflection__void, 0)
  5260. ZEND_ME(reflection_property, isStatic, arginfo_reflection__void, 0)
  5261. ZEND_ME(reflection_property, isDefault, arginfo_reflection__void, 0)
  5262. ZEND_ME(reflection_property, getModifiers, arginfo_reflection__void, 0)
  5263. ZEND_ME(reflection_property, getDeclaringClass, arginfo_reflection__void, 0)
  5264. ZEND_ME(reflection_property, getDocComment, arginfo_reflection__void, 0)
  5265. ZEND_ME(reflection_property, setAccessible, arginfo_reflection_property_setAccessible, 0)
  5266. PHP_FE_END
  5267. };
  5268. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_parameter_export, 0, 0, 2)
  5269. ZEND_ARG_INFO(0, function)
  5270. ZEND_ARG_INFO(0, parameter)
  5271. ZEND_ARG_INFO(0, return)
  5272. ZEND_END_ARG_INFO()
  5273. ZEND_BEGIN_ARG_INFO(arginfo_reflection_parameter___construct, 0)
  5274. ZEND_ARG_INFO(0, function)
  5275. ZEND_ARG_INFO(0, parameter)
  5276. ZEND_END_ARG_INFO()
  5277. static const zend_function_entry reflection_parameter_functions[] = {
  5278. ZEND_ME(reflection, __clone, arginfo_reflection__void, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
  5279. ZEND_ME(reflection_parameter, export, arginfo_reflection_parameter_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
  5280. ZEND_ME(reflection_parameter, __construct, arginfo_reflection_parameter___construct, 0)
  5281. ZEND_ME(reflection_parameter, __toString, arginfo_reflection__void, 0)
  5282. ZEND_ME(reflection_parameter, getName, arginfo_reflection__void, 0)
  5283. ZEND_ME(reflection_parameter, isPassedByReference, arginfo_reflection__void, 0)
  5284. ZEND_ME(reflection_parameter, canBePassedByValue, arginfo_reflection__void, 0)
  5285. ZEND_ME(reflection_parameter, getDeclaringFunction, arginfo_reflection__void, 0)
  5286. ZEND_ME(reflection_parameter, getDeclaringClass, arginfo_reflection__void, 0)
  5287. ZEND_ME(reflection_parameter, getClass, arginfo_reflection__void, 0)
  5288. ZEND_ME(reflection_parameter, isArray, arginfo_reflection__void, 0)
  5289. ZEND_ME(reflection_parameter, isCallable, arginfo_reflection__void, 0)
  5290. ZEND_ME(reflection_parameter, allowsNull, arginfo_reflection__void, 0)
  5291. ZEND_ME(reflection_parameter, getPosition, arginfo_reflection__void, 0)
  5292. ZEND_ME(reflection_parameter, isOptional, arginfo_reflection__void, 0)
  5293. ZEND_ME(reflection_parameter, isDefaultValueAvailable, arginfo_reflection__void, 0)
  5294. ZEND_ME(reflection_parameter, getDefaultValue, arginfo_reflection__void, 0)
  5295. ZEND_ME(reflection_parameter, isDefaultValueConstant, arginfo_reflection__void, 0)
  5296. ZEND_ME(reflection_parameter, getDefaultValueConstantName, arginfo_reflection__void, 0)
  5297. ZEND_ME(reflection_parameter, isVariadic, arginfo_reflection__void, 0)
  5298. PHP_FE_END
  5299. };
  5300. ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_extension_export, 0, 0, 1)
  5301. ZEND_ARG_INFO(0, name)
  5302. ZEND_ARG_INFO(0, return)
  5303. ZEND_END_ARG_INFO()
  5304. ZEND_BEGIN_ARG_INFO(arginfo_reflection_extension___construct, 0)
  5305. ZEND_ARG_INFO(0, name)
  5306. ZEND_END_ARG_INFO()
  5307. static const zend_function_entry reflection_extension_functions[] = {
  5308. ZEND_ME(reflection, __clone, arginfo_reflection__void, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
  5309. ZEND_ME(reflection_extension, export, arginfo_reflection_extension_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
  5310. ZEND_ME(reflection_extension, __construct, arginfo_reflection_extension___construct, 0)
  5311. ZEND_ME(reflection_extension, __toString, arginfo_reflection__void, 0)
  5312. ZEND_ME(reflection_extension, getName, arginfo_reflection__void, 0)
  5313. ZEND_ME(reflection_extension, getVersion, arginfo_reflection__void, 0)
  5314. ZEND_ME(reflection_extension, getFunctions, arginfo_reflection__void, 0)
  5315. ZEND_ME(reflection_extension, getConstants, arginfo_reflection__void, 0)
  5316. ZEND_ME(reflection_extension, getINIEntries, arginfo_reflection__void, 0)
  5317. ZEND_ME(reflection_extension, getClasses, arginfo_reflection__void, 0)
  5318. ZEND_ME(reflection_extension, getClassNames, arginfo_reflection__void, 0)
  5319. ZEND_ME(reflection_extension, getDependencies, arginfo_reflection__void, 0)
  5320. ZEND_ME(reflection_extension, info, arginfo_reflection__void, 0)
  5321. ZEND_ME(reflection_extension, isPersistent, arginfo_reflection__void, 0)
  5322. ZEND_ME(reflection_extension, isTemporary, arginfo_reflection__void, 0)
  5323. PHP_FE_END
  5324. };
  5325. ZEND_BEGIN_ARG_INFO(arginfo_reflection_zend_extension___construct, 0)
  5326. ZEND_ARG_INFO(0, name)
  5327. ZEND_END_ARG_INFO()
  5328. static const zend_function_entry reflection_zend_extension_functions[] = {
  5329. ZEND_ME(reflection, __clone, arginfo_reflection__void, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL)
  5330. ZEND_ME(reflection_zend_extension, export, arginfo_reflection_extension_export, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
  5331. ZEND_ME(reflection_zend_extension, __construct, arginfo_reflection_zend_extension___construct, 0)
  5332. ZEND_ME(reflection_zend_extension, __toString, arginfo_reflection__void, 0)
  5333. ZEND_ME(reflection_zend_extension, getName, arginfo_reflection__void, 0)
  5334. ZEND_ME(reflection_zend_extension, getVersion, arginfo_reflection__void, 0)
  5335. ZEND_ME(reflection_zend_extension, getAuthor, arginfo_reflection__void, 0)
  5336. ZEND_ME(reflection_zend_extension, getURL, arginfo_reflection__void, 0)
  5337. ZEND_ME(reflection_zend_extension, getCopyright, arginfo_reflection__void, 0)
  5338. PHP_FE_END
  5339. };
  5340. /* }}} */
  5341. const zend_function_entry reflection_ext_functions[] = { /* {{{ */
  5342. PHP_FE_END
  5343. }; /* }}} */
  5344. static zend_object_handlers *zend_std_obj_handlers;
  5345. /* {{{ _reflection_write_property */
  5346. static void _reflection_write_property(zval *object, zval *member, zval *value, const zend_literal *key TSRMLS_DC)
  5347. {
  5348. if ((Z_TYPE_P(member) == IS_STRING)
  5349. && zend_hash_exists(&Z_OBJCE_P(object)->properties_info, Z_STRVAL_P(member), Z_STRLEN_P(member)+1)
  5350. && ((Z_STRLEN_P(member) == sizeof("name") - 1 && !memcmp(Z_STRVAL_P(member), "name", sizeof("name")))
  5351. || (Z_STRLEN_P(member) == sizeof("class") - 1 && !memcmp(Z_STRVAL_P(member), "class", sizeof("class")))))
  5352. {
  5353. zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
  5354. "Cannot set read-only property %s::$%s", Z_OBJCE_P(object)->name, Z_STRVAL_P(member));
  5355. }
  5356. else
  5357. {
  5358. zend_std_obj_handlers->write_property(object, member, value, key TSRMLS_CC);
  5359. }
  5360. }
  5361. /* }}} */
  5362. PHP_MINIT_FUNCTION(reflection) /* {{{ */
  5363. {
  5364. zend_class_entry _reflection_entry;
  5365. zend_std_obj_handlers = zend_get_std_object_handlers();
  5366. memcpy(&reflection_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
  5367. reflection_object_handlers.clone_obj = NULL;
  5368. reflection_object_handlers.write_property = _reflection_write_property;
  5369. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionException", reflection_exception_functions);
  5370. reflection_exception_ptr = zend_register_internal_class_ex(&_reflection_entry, zend_exception_get_default(TSRMLS_C), NULL TSRMLS_CC);
  5371. INIT_CLASS_ENTRY(_reflection_entry, "Reflection", reflection_functions);
  5372. reflection_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC);
  5373. INIT_CLASS_ENTRY(_reflection_entry, "Reflector", reflector_functions);
  5374. reflector_ptr = zend_register_internal_interface(&_reflection_entry TSRMLS_CC);
  5375. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionFunctionAbstract", reflection_function_abstract_functions);
  5376. _reflection_entry.create_object = reflection_objects_new;
  5377. reflection_function_abstract_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC);
  5378. reflection_register_implement(reflection_function_abstract_ptr, reflector_ptr TSRMLS_CC);
  5379. zend_declare_property_string(reflection_function_abstract_ptr, "name", sizeof("name")-1, "", ZEND_ACC_ABSTRACT TSRMLS_CC);
  5380. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionFunction", reflection_function_functions);
  5381. _reflection_entry.create_object = reflection_objects_new;
  5382. reflection_function_ptr = zend_register_internal_class_ex(&_reflection_entry, reflection_function_abstract_ptr, NULL TSRMLS_CC);
  5383. zend_declare_property_string(reflection_function_ptr, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5384. REGISTER_REFLECTION_CLASS_CONST_LONG(function, "IS_DEPRECATED", ZEND_ACC_DEPRECATED);
  5385. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionParameter", reflection_parameter_functions);
  5386. _reflection_entry.create_object = reflection_objects_new;
  5387. reflection_parameter_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC);
  5388. reflection_register_implement(reflection_parameter_ptr, reflector_ptr TSRMLS_CC);
  5389. zend_declare_property_string(reflection_parameter_ptr, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5390. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionMethod", reflection_method_functions);
  5391. _reflection_entry.create_object = reflection_objects_new;
  5392. reflection_method_ptr = zend_register_internal_class_ex(&_reflection_entry, reflection_function_abstract_ptr, NULL TSRMLS_CC);
  5393. zend_declare_property_string(reflection_method_ptr, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5394. zend_declare_property_string(reflection_method_ptr, "class", sizeof("class")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5395. REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_STATIC", ZEND_ACC_STATIC);
  5396. REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PUBLIC", ZEND_ACC_PUBLIC);
  5397. REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PROTECTED", ZEND_ACC_PROTECTED);
  5398. REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_PRIVATE", ZEND_ACC_PRIVATE);
  5399. REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_ABSTRACT", ZEND_ACC_ABSTRACT);
  5400. REGISTER_REFLECTION_CLASS_CONST_LONG(method, "IS_FINAL", ZEND_ACC_FINAL);
  5401. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionClass", reflection_class_functions);
  5402. _reflection_entry.create_object = reflection_objects_new;
  5403. reflection_class_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC);
  5404. reflection_register_implement(reflection_class_ptr, reflector_ptr TSRMLS_CC);
  5405. zend_declare_property_string(reflection_class_ptr, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5406. REGISTER_REFLECTION_CLASS_CONST_LONG(class, "IS_IMPLICIT_ABSTRACT", ZEND_ACC_IMPLICIT_ABSTRACT_CLASS);
  5407. REGISTER_REFLECTION_CLASS_CONST_LONG(class, "IS_EXPLICIT_ABSTRACT", ZEND_ACC_EXPLICIT_ABSTRACT_CLASS);
  5408. REGISTER_REFLECTION_CLASS_CONST_LONG(class, "IS_FINAL", ZEND_ACC_FINAL_CLASS);
  5409. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionObject", reflection_object_functions);
  5410. _reflection_entry.create_object = reflection_objects_new;
  5411. reflection_object_ptr = zend_register_internal_class_ex(&_reflection_entry, reflection_class_ptr, NULL TSRMLS_CC);
  5412. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionProperty", reflection_property_functions);
  5413. _reflection_entry.create_object = reflection_objects_new;
  5414. reflection_property_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC);
  5415. reflection_register_implement(reflection_property_ptr, reflector_ptr TSRMLS_CC);
  5416. zend_declare_property_string(reflection_property_ptr, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5417. zend_declare_property_string(reflection_property_ptr, "class", sizeof("class")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5418. REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_STATIC", ZEND_ACC_STATIC);
  5419. REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PUBLIC", ZEND_ACC_PUBLIC);
  5420. REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PROTECTED", ZEND_ACC_PROTECTED);
  5421. REGISTER_REFLECTION_CLASS_CONST_LONG(property, "IS_PRIVATE", ZEND_ACC_PRIVATE);
  5422. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionExtension", reflection_extension_functions);
  5423. _reflection_entry.create_object = reflection_objects_new;
  5424. reflection_extension_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC);
  5425. reflection_register_implement(reflection_extension_ptr, reflector_ptr TSRMLS_CC);
  5426. zend_declare_property_string(reflection_extension_ptr, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5427. INIT_CLASS_ENTRY(_reflection_entry, "ReflectionZendExtension", reflection_zend_extension_functions);
  5428. _reflection_entry.create_object = reflection_objects_new;
  5429. reflection_zend_extension_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC);
  5430. reflection_register_implement(reflection_zend_extension_ptr, reflector_ptr TSRMLS_CC);
  5431. zend_declare_property_string(reflection_zend_extension_ptr, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC);
  5432. return SUCCESS;
  5433. } /* }}} */
  5434. PHP_MINFO_FUNCTION(reflection) /* {{{ */
  5435. {
  5436. php_info_print_table_start();
  5437. php_info_print_table_header(2, "Reflection", "enabled");
  5438. php_info_print_table_row(2, "Version", "$Id$");
  5439. php_info_print_table_end();
  5440. } /* }}} */
  5441. zend_module_entry reflection_module_entry = { /* {{{ */
  5442. STANDARD_MODULE_HEADER,
  5443. "Reflection",
  5444. reflection_ext_functions,
  5445. PHP_MINIT(reflection),
  5446. NULL,
  5447. NULL,
  5448. NULL,
  5449. PHP_MINFO(reflection),
  5450. "$Id$",
  5451. STANDARD_MODULE_PROPERTIES
  5452. }; /* }}} */
  5453. /*
  5454. * Local variables:
  5455. * tab-width: 4
  5456. * c-basic-offset: 4
  5457. * indent-tabs-mode: t
  5458. * End:
  5459. * vim600: noet sw=4 ts=4 fdm=marker
  5460. */