123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585 |
- {
- This file is part of the Free Pascal run time library.
- Copyright (C) 2013 Joost van der Sluis [email protected]
- member of the Free Pascal development team.
- Extended RTTI compatibility unit
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- }
- unit Rtti experimental;
- {$mode objfpc}{$H+}
- {$modeswitch advancedrecords}
- {$goto on}
- {$Assertions on}
- { Note: since the Lazarus IDE is not yet capable of correctly handling generic
- functions it is best to define a InLazIDE define inside the IDE that disables
- the generic code for CodeTools. To do this do this:
- - go to Tools -> Codetools Defines Editor
- - go to Edit -> Insert Node Below -> Define Recurse
- - enter the following values:
- Name: InLazIDE
- Description: Define InLazIDE everywhere
- Variable: InLazIDE
- Value from text: 1
- }
- {$ifdef InLazIDE}
- {$define NoGenericMethods}
- {$endif}
- interface
- uses
- Classes,
- SysUtils,
- typinfo;
- type
- TRttiObject = class;
- TRttiType = class;
- TRttiMethod = class;
- TRttiProperty = class;
- TRttiInstanceType = class;
- TFunctionCallCallback = class
- protected
- function GetCodeAddress: CodePointer; virtual; abstract;
- public
- property CodeAddress: CodePointer read GetCodeAddress;
- end;
- TFunctionCallFlag = (
- fcfStatic
- );
- TFunctionCallFlags = set of TFunctionCallFlag;
- TFunctionCallParameterInfo = record
- ParamType: PTypeInfo;
- ParamFlags: TParamFlags;
- ParaLocs: PParameterLocations;
- end;
- IValueData = interface
- ['{1338B2F3-2C21-4798-A641-CA2BC5BF2396}']
- procedure ExtractRawData(ABuffer: pointer);
- procedure ExtractRawDataNoCopy(ABuffer: pointer);
- function GetDataSize: SizeInt;
- function GetReferenceToRawData: pointer;
- end;
- TValueData = record
- FTypeInfo: PTypeInfo;
- FValueData: IValueData;
- case integer of
- 0: (FAsUByte: Byte);
- 1: (FAsUWord: Word);
- 2: (FAsULong: LongWord);
- 3: (FAsObject: Pointer);
- 4: (FAsClass: TClass);
- 5: (FAsSByte: Shortint);
- 6: (FAsSWord: Smallint);
- 7: (FAsSLong: LongInt);
- 8: (FAsSingle: Single);
- 9: (FAsDouble: Double);
- 10: (FAsExtended: Extended);
- 11: (FAsComp: Comp);
- 12: (FAsCurr: Currency);
- 13: (FAsUInt64: QWord);
- 14: (FAsSInt64: Int64);
- 15: (FAsMethod: TMethod);
- 16: (FAsPointer: Pointer);
- { FPC addition for open arrays }
- 17: (FArrLength: SizeInt; FElSize: SizeInt);
- end;
- { TValue }
- TValue = record
- private
- FData: TValueData;
- function GetDataSize: SizeInt;
- function GetTypeDataProp: PTypeData; inline;
- function GetTypeInfo: PTypeInfo; inline;
- function GetTypeKind: TTypeKind; inline;
- function GetIsEmpty: boolean; inline;
- public
- class function Empty: TValue; static;
- class procedure Make(ABuffer: pointer; ATypeInfo: PTypeInfo; out result: TValue); static;
- { Note: a TValue based on an open array is only valid until the routine having the open array parameter is left! }
- class procedure MakeOpenArray(AArray: Pointer; ALength: SizeInt; ATypeInfo: PTypeInfo; out Result: TValue); static;
- {$ifndef NoGenericMethods}
- generic class function From<T>(constref aValue: T): TValue; static; inline;
- { Note: a TValue based on an open array is only valid until the routine having the open array parameter is left! }
- generic class function FromOpenArray<T>(constref aValue: array of T): TValue; static; inline;
- {$endif}
- function IsArray: boolean; inline;
- function IsOpenArray: Boolean; inline;
- function AsString: string; inline;
- function AsUnicodeString: UnicodeString;
- function AsAnsiString: AnsiString;
- function AsExtended: Extended;
- function IsClass: boolean; inline;
- function AsClass: TClass;
- function IsObject: boolean; inline;
- function AsObject: TObject;
- function IsOrdinal: boolean; inline;
- function AsOrdinal: Int64;
- function AsBoolean: boolean;
- function AsCurrency: Currency;
- function AsInteger: Integer;
- function AsInt64: Int64;
- function AsUInt64: QWord;
- function AsInterface: IInterface;
- function ToString: String;
- function GetArrayLength: SizeInt;
- function GetArrayElement(AIndex: SizeInt): TValue;
- procedure SetArrayElement(AIndex: SizeInt; constref AValue: TValue);
- function IsType(ATypeInfo: PTypeInfo): boolean; inline;
- function TryAsOrdinal(out AResult: int64): boolean;
- function GetReferenceToRawData: Pointer;
- procedure ExtractRawData(ABuffer: Pointer);
- procedure ExtractRawDataNoCopy(ABuffer: Pointer);
- class operator := (const AValue: String): TValue; inline;
- class operator := (AValue: LongInt): TValue; inline;
- class operator := (AValue: Single): TValue; inline;
- class operator := (AValue: Double): TValue; inline;
- {$ifdef FPC_HAS_TYPE_EXTENDED}
- class operator := (AValue: Extended): TValue; inline;
- {$endif}
- class operator := (AValue: Currency): TValue; inline;
- class operator := (AValue: Int64): TValue; inline;
- class operator := (AValue: QWord): TValue; inline;
- class operator := (AValue: TObject): TValue; inline;
- class operator := (AValue: TClass): TValue; inline;
- class operator := (AValue: Boolean): TValue; inline;
- property DataSize: SizeInt read GetDataSize;
- property Kind: TTypeKind read GetTypeKind;
- property TypeData: PTypeData read GetTypeDataProp;
- property TypeInfo: PTypeInfo read GetTypeInfo;
- property IsEmpty: boolean read GetIsEmpty;
- end;
- TValueArray = specialize TArray<TValue>;
- { TRttiContext }
- TRttiContext = record
- private
- FContextToken: IInterface;
- function GetByHandle(AHandle: Pointer): TRttiObject;
- procedure AddObject(AObject: TRttiObject);
- public
- class function Create: TRttiContext; static;
- procedure Free;
- function GetType(ATypeInfo: PTypeInfo): TRttiType;
- function GetType(AClass: TClass): TRttiType;
- //function GetTypes: specialize TArray<TRttiType>;
- end;
- { TRttiObject }
- TRttiObject = class abstract
- protected
- function GetHandle: Pointer; virtual; abstract;
- public
- property Handle: Pointer read GetHandle;
- end;
- { TRttiNamedObject }
- TRttiNamedObject = class(TRttiObject)
- protected
- function GetName: string; virtual;
- public
- property Name: string read GetName;
- end;
- { TRttiType }
- TRttiType = class(TRttiNamedObject)
- private
- FTypeInfo: PTypeInfo;
- FMethods: specialize TArray<TRttiMethod>;
- function GetAsInstance: TRttiInstanceType;
- protected
- FTypeData: PTypeData;
- function GetName: string; override;
- function GetHandle: Pointer; override;
- function GetIsInstance: boolean; virtual;
- function GetIsManaged: boolean; virtual;
- function GetIsOrdinal: boolean; virtual;
- function GetIsRecord: boolean; virtual;
- function GetIsSet: boolean; virtual;
- function GetTypeKind: TTypeKind; virtual;
- function GetTypeSize: integer; virtual;
- function GetBaseType: TRttiType; virtual;
- public
- constructor Create(ATypeInfo : PTypeInfo);
- function GetProperties: specialize TArray<TRttiProperty>; virtual;
- function GetProperty(const AName: string): TRttiProperty; virtual;
- function GetMethods: specialize TArray<TRttiMethod>; virtual;
- function GetMethod(const aName: String): TRttiMethod; virtual;
- function GetDeclaredMethods: specialize TArray<TRttiMethod>; virtual;
- property IsInstance: boolean read GetIsInstance;
- property isManaged: boolean read GetIsManaged;
- property IsOrdinal: boolean read GetIsOrdinal;
- property IsRecord: boolean read GetIsRecord;
- property IsSet: boolean read GetIsSet;
- property BaseType: TRttiType read GetBaseType;
- property AsInstance: TRttiInstanceType read GetAsInstance;
- property TypeKind: TTypeKind read GetTypeKind;
- property TypeSize: integer read GetTypeSize;
- end;
- { TRttiFloatType }
- TRttiFloatType = class(TRttiType)
- private
- function GetFloatType: TFloatType;
- public
- property FloatType: TFloatType read GetFloatType;
- end;
- TRttiStringKind = (skShortString, skAnsiString, skWideString, skUnicodeString);
- { TRttiStringType }
- TRttiStringType = class(TRttiType)
- private
- function GetStringKind: TRttiStringKind;
- public
- property StringKind: TRttiStringKind read GetStringKind;
- end;
- TRttiPointerType = class(TRttiType)
- private
- function GetReferredType: TRttiType;
- public
- property ReferredType: TRttiType read GetReferredType;
- end;
- { TRttiMember }
- TMemberVisibility=(mvPrivate, mvProtected, mvPublic, mvPublished);
- TRttiMember = class(TRttiNamedObject)
- private
- FParent: TRttiType;
- protected
- function GetVisibility: TMemberVisibility; virtual;
- public
- constructor Create(AParent: TRttiType);
- property Visibility: TMemberVisibility read GetVisibility;
- property Parent: TRttiType read FParent;
- end;
- { TRttiProperty }
- TRttiProperty = class(TRttiMember)
- private
- FPropInfo: PPropInfo;
- function GetPropertyType: TRttiType;
- function GetIsWritable: boolean;
- function GetIsReadable: boolean;
- protected
- function GetVisibility: TMemberVisibility; override;
- function GetName: string; override;
- function GetHandle: Pointer; override;
- public
- constructor Create(AParent: TRttiType; APropInfo: PPropInfo);
- function GetValue(Instance: pointer): TValue;
- procedure SetValue(Instance: pointer; const AValue: TValue);
- property PropertyType: TRttiType read GetPropertyType;
- property IsReadable: boolean read GetIsReadable;
- property IsWritable: boolean read GetIsWritable;
- property Visibility: TMemberVisibility read GetVisibility;
- end;
- TRttiParameter = class(TRttiNamedObject)
- private
- FString: String;
- protected
- function GetParamType: TRttiType; virtual; abstract;
- function GetFlags: TParamFlags; virtual; abstract;
- public
- property ParamType: TRttiType read GetParamType;
- property Flags: TParamFlags read GetFlags;
- function ToString: String; override;
- end;
- TMethodImplementationCallbackMethod = procedure(aUserData: Pointer; const aArgs: TValueArray; out aResult: TValue) of object;
- TMethodImplementationCallbackProc = procedure(aUserData: Pointer; const aArgs: TValueArray; out aResult: TValue);
- TMethodImplementation = class
- private
- fLowLevelCallback: TFunctionCallCallback;
- fCallbackProc: TMethodImplementationCallbackProc;
- fCallbackMethod: TMethodImplementationCallbackMethod;
- fArgs: specialize TArray<TFunctionCallParameterInfo>;
- fArgLen: SizeInt;
- fRefArgs: specialize TArray<SizeInt>;
- fFlags: TFunctionCallFlags;
- fResult: PTypeInfo;
- fCC: TCallConv;
- function GetCodeAddress: CodePointer;
- procedure InitArgs;
- procedure HandleCallback(const aArgs: specialize TArray<Pointer>; aResult: Pointer; aContext: Pointer);
- constructor Create(aCC: TCallConv; aArgs: specialize TArray<TFunctionCallParameterInfo>; aResult: PTypeInfo; aFlags: TFunctionCallFlags; aUserData: Pointer; aCallback: TMethodImplementationCallbackMethod);
- constructor Create(aCC: TCallConv; aArgs: specialize TArray<TFunctionCallParameterInfo>; aResult: PTypeInfo; aFlags: TFunctionCallFlags; aUserData: Pointer; aCallback: TMethodImplementationCallbackProc);
- public
- constructor Create;
- destructor Destroy; override;
- property CodeAddress: CodePointer read GetCodeAddress;
- end;
- TRttiInvokableType = class(TRttiType)
- protected
- function GetParameters(aWithHidden: Boolean): specialize TArray<TRttiParameter>; virtual; abstract;
- function GetCallingConvention: TCallConv; virtual; abstract;
- function GetReturnType: TRttiType; virtual; abstract;
- function GetFlags: TFunctionCallFlags; virtual; abstract;
- public type
- TCallbackMethod = procedure(aInvokable: TRttiInvokableType; const aArgs: TValueArray; out aResult: TValue) of object;
- TCallbackProc = procedure(aInvokable: TRttiInvokableType; const aArgs: TValueArray; out aResult: TValue);
- public
- function GetParameters: specialize TArray<TRttiParameter>; inline;
- property CallingConvention: TCallConv read GetCallingConvention;
- property ReturnType: TRttiType read GetReturnType;
- function Invoke(const aProcOrMeth: TValue; const aArgs: array of TValue): TValue; virtual; abstract;
- { Note: once "reference to" is supported these will be replaced by a single method }
- function CreateImplementation(aCallback: TCallbackMethod): TMethodImplementation;
- function CreateImplementation(aCallback: TCallbackProc): TMethodImplementation;
- end;
- TRttiMethodType = class(TRttiInvokableType)
- private
- FCallConv: TCallConv;
- FReturnType: TRttiType;
- FParams, FParamsAll: specialize TArray<TRttiParameter>;
- protected
- function GetParameters(aWithHidden: Boolean): specialize TArray<TRttiParameter>; override;
- function GetCallingConvention: TCallConv; override;
- function GetReturnType: TRttiType; override;
- function GetFlags: TFunctionCallFlags; override;
- public
- function Invoke(const aCallable: TValue; const aArgs: array of TValue): TValue; override;
- end;
- TRttiProcedureType = class(TRttiInvokableType)
- private
- FParams, FParamsAll: specialize TArray<TRttiParameter>;
- protected
- function GetParameters(aWithHidden: Boolean): specialize TArray<TRttiParameter>; override;
- function GetCallingConvention: TCallConv; override;
- function GetReturnType: TRttiType; override;
- function GetFlags: TFunctionCallFlags; override;
- public
- function Invoke(const aCallable: TValue; const aArgs: array of TValue): TValue; override;
- end;
- TDispatchKind = (
- dkStatic,
- dkVtable,
- dkDynamic,
- dkMessage,
- dkInterface,
- { the following are FPC-only and will be moved should Delphi add more }
- dkMessageString
- );
- TRttiMethod = class(TRttiMember)
- private
- FString: String;
- protected
- function GetCallingConvention: TCallConv; virtual; abstract;
- function GetCodeAddress: CodePointer; virtual; abstract;
- function GetDispatchKind: TDispatchKind; virtual; abstract;
- function GetHasExtendedInfo: Boolean; virtual;
- function GetIsClassMethod: Boolean; virtual; abstract;
- function GetIsConstructor: Boolean; virtual; abstract;
- function GetIsDestructor: Boolean; virtual; abstract;
- function GetIsStatic: Boolean; virtual; abstract;
- function GetMethodKind: TMethodKind; virtual; abstract;
- function GetReturnType: TRttiType; virtual; abstract;
- function GetVirtualIndex: SmallInt; virtual; abstract;
- function GetParameters(aWithHidden: Boolean): specialize TArray<TRttiParameter>; virtual; abstract;
- public
- property CallingConvention: TCallConv read GetCallingConvention;
- property CodeAddress: CodePointer read GetCodeAddress;
- property DispatchKind: TDispatchKind read GetDispatchKind;
- property HasExtendedInfo: Boolean read GetHasExtendedInfo;
- property IsClassMethod: Boolean read GetIsClassMethod;
- property IsConstructor: Boolean read GetIsConstructor;
- property IsDestructor: Boolean read GetIsDestructor;
- property IsStatic: Boolean read GetIsStatic;
- property MethodKind: TMethodKind read GetMethodKind;
- property ReturnType: TRttiType read GetReturnType;
- property VirtualIndex: SmallInt read GetVirtualIndex;
- function ToString: String; override;
- function GetParameters: specialize TArray<TRttiParameter>; inline;
- function Invoke(aInstance: TObject; const aArgs: array of TValue): TValue;
- function Invoke(aInstance: TClass; const aArgs: array of TValue): TValue;
- function Invoke(aInstance: TValue; const aArgs: array of TValue): TValue;
- end;
- TRttiStructuredType = class(TRttiType)
- end;
- TInterfaceType = (
- itRefCounted, { aka COM interface }
- itRaw { aka CORBA interface }
- );
- TRttiInterfaceType = class(TRttiType)
- private
- fDeclaredMethods: specialize TArray<TRttiMethod>;
- protected
- function IntfMethodCount: Word;
- function MethodTable: PIntfMethodTable; virtual; abstract;
- function GetBaseType: TRttiType; override;
- function GetIntfBaseType: TRttiInterfaceType; virtual; abstract;
- function GetDeclaringUnitName: String; virtual; abstract;
- function GetGUID: TGUID; virtual; abstract;
- function GetGUIDStr: String; virtual;
- function GetIntfFlags: TIntfFlags; virtual; abstract;
- function GetIntfType: TInterfaceType; virtual; abstract;
- public
- property BaseType: TRttiInterfaceType read GetIntfBaseType;
- property DeclaringUnitName: String read GetDeclaringUnitName;
- property GUID: TGUID read GetGUID;
- property GUIDStr: String read GetGUIDStr;
- property IntfFlags: TIntfFlags read GetIntfFlags;
- property IntfType: TInterfaceType read GetIntfType;
- function GetDeclaredMethods: specialize TArray<TRttiMethod>; override;
- end;
- { TRttiInstanceType }
- TRttiInstanceType = class(TRttiStructuredType)
- private
- FPropertiesResolved: Boolean;
- FProperties: specialize TArray<TRttiProperty>;
- function GetDeclaringUnitName: string;
- function GetMetaClassType: TClass;
- protected
- function GetIsInstance: boolean; override;
- function GetTypeSize: integer; override;
- function GetBaseType: TRttiType; override;
- public
- function GetProperties: specialize TArray<TRttiProperty>; override;
- property MetaClassType: TClass read GetMetaClassType;
- property DeclaringUnitName: string read GetDeclaringUnitName;
- end;
- EInsufficientRtti = class(Exception);
- EInvocationError = class(Exception);
- ENonPublicType = class(Exception);
- TFunctionCallParameter = record
- ValueRef: Pointer;
- ValueSize: SizeInt;
- Info: TFunctionCallParameterInfo;
- end;
- TFunctionCallParameterArray = specialize TArray<TFunctionCallParameter>;
- TFunctionCallProc = procedure(const aArgs: specialize TArray<Pointer>; aResult: Pointer; aContext: Pointer);
- TFunctionCallMethod = procedure(const aArgs: specialize TArray<Pointer>; aResult: Pointer; aContext: Pointer) of object;
- TFunctionCallManager = record
- Invoke: procedure(CodeAddress: CodePointer; const Args: TFunctionCallParameterArray; CallingConvention: TCallConv;
- ResultType: PTypeInfo; ResultValue: Pointer; Flags: TFunctionCallFlags);
- CreateCallbackProc: function(aHandler: TFunctionCallProc; aCallConv: TCallConv; aArgs: array of TFunctionCallParameterInfo; aResultType: PTypeInfo; aFlags: TFunctionCallFlags; aContext: Pointer): TFunctionCallCallback;
- CreateCallbackMethod: function(aHandler: TFunctionCallMethod; aCallConv: TCallConv; aArgs: array of TFunctionCallParameterInfo; aResultType: PTypeInfo; aFlags: TFunctionCallFlags; aContext: Pointer): TFunctionCallCallback;
- end;
- TFunctionCallManagerArray = array[TCallConv] of TFunctionCallManager;
- TCallConvSet = set of TCallConv;
- procedure SetFunctionCallManager(aCallConv: TCallConv; constref aFuncCallMgr: TFunctionCallManager; out aOldFuncCallMgr: TFunctionCallManager);
- procedure SetFunctionCallManager(aCallConv: TCallConv; constref aFuncCallMgr: TFunctionCallManager);
- procedure SetFunctionCallManager(aCallConvs: TCallConvSet; constref aFuncCallMgr: TFunctionCallManager; out aOldFuncCallMgrs: TFunctionCallManagerArray);
- procedure SetFunctionCallManager(aCallConvs: TCallConvSet; constref aFuncCallMgr: TFunctionCallManager);
- procedure SetFunctionCallManagers(aCallConvs: TCallConvSet; constref aFuncCallMgrs: TFunctionCallManagerArray; out aOldFuncCallMgrs: TFunctionCallManagerArray);
- procedure SetFunctionCallManagers(aCallConvs: TCallConvSet; constref aFuncCallMgrs: TFunctionCallManagerArray);
- procedure SetFunctionCallManagers(constref aFuncCallMgrs: TFunctionCallManagerArray; out aOldFuncCallMgrs: TFunctionCallManagerArray);
- procedure SetFunctionCallManagers(constref aFuncCallMgrs: TFunctionCallManagerArray);
- procedure GetFunctionCallManager(aCallConv: TCallConv; out aFuncCallMgr: TFunctionCallManager);
- procedure GetFunctionCallManagers(aCallConvs: TCallConvSet; out aFuncCallMgrs: TFunctionCallManagerArray);
- procedure GetFunctionCallManagers(out aFuncCallMgrs: TFunctionCallManagerArray);
- function Invoke(aCodeAddress: CodePointer; const aArgs: TValueArray; aCallConv: TCallConv;
- aResultType: PTypeInfo; aIsStatic: Boolean; aIsConstructor: Boolean): TValue;
- function CreateCallbackProc(aHandler: TFunctionCallProc; aCallConv: TCallConv; aArgs: array of TFunctionCallParameterInfo; aResultType: PTypeInfo; aFlags: TFunctionCallFlags; aContext: Pointer): TFunctionCallCallback;
- function CreateCallbackMethod(aHandler: TFunctionCallMethod; aCallConv: TCallConv; aArgs: array of TFunctionCallParameterInfo; aResultType: PTypeInfo; aFlags: TFunctionCallFlags; aContext: Pointer): TFunctionCallCallback;
- function IsManaged(TypeInfo: PTypeInfo): boolean;
- {$ifndef InLazIDE}
- generic function OpenArrayToDynArrayValue<T>(constref aArray: array of T): TValue;
- {$endif}
- { these resource strings are needed by units implementing function call managers }
- resourcestring
- SErrInvokeNotImplemented = 'Invoke functionality is not implemented';
- SErrInvokeResultTypeNoValue = 'Function has a result type, but no result pointer provided';
- SErrInvokeFailed = 'Invoke call failed';
- SErrCallbackNotImplented = 'Callback functionality is not implemented';
- SErrCallConvNotSupported = 'Calling convention not supported: %s';
- SErrTypeKindNotSupported = 'Type kind is not supported: %s';
- SErrCallbackHandlerNil = 'Callback handler is Nil';
- SErrMissingSelfParam = 'Missing self parameter';
- implementation
- uses
- {$ifdef windows}
- Windows,
- {$endif}
- fgl;
- type
- { TRttiPool }
- TRttiPool = class
- private type
- TRttiObjectMap = specialize TFPGMap<Pointer, TRttiObject>;
- private
- FObjectMap: TRttiObjectMap;
- FTypesList: specialize TArray<TRttiType>;
- FTypeCount: LongInt;
- FLock: TRTLCriticalSection;
- public
- function GetTypes: specialize TArray<TRttiType>;
- function GetType(ATypeInfo: PTypeInfo): TRttiType;
- function GetByHandle(aHandle: Pointer): TRttiObject;
- procedure AddObject(aObject: TRttiObject);
- constructor Create;
- destructor Destroy; override;
- end;
- IPooltoken = interface
- ['{3CDB3CE9-AB55-CBAA-7B9D-2F3BB1CF5AF8}']
- function RttiPool: TRttiPool;
- end;
- { TPoolToken }
- TPoolToken = class(TInterfacedObject, IPooltoken)
- public
- constructor Create;
- destructor Destroy; override;
- function RttiPool: TRttiPool;
- end;
- { TValueDataIntImpl }
- TValueDataIntImpl = class(TInterfacedObject, IValueData)
- private
- FBuffer: Pointer;
- FDataSize: SizeInt;
- FTypeInfo: PTypeInfo;
- FIsCopy: Boolean;
- FUseAddRef: Boolean;
- public
- constructor CreateCopy(ACopyFromBuffer: Pointer; ALen: SizeInt; ATypeInfo: PTypeInfo; AAddRef: Boolean);
- constructor CreateRef(AData: Pointer; ATypeInfo: PTypeInfo; AAddRef: Boolean);
- destructor Destroy; override;
- procedure ExtractRawData(ABuffer: pointer);
- procedure ExtractRawDataNoCopy(ABuffer: pointer);
- function GetDataSize: SizeInt;
- function GetReferenceToRawData: pointer;
- end;
- TRttiRefCountedInterfaceType = class(TRttiInterfaceType)
- private
- function IntfData: PInterfaceData; inline;
- protected
- function MethodTable: PIntfMethodTable; override;
- function GetIntfBaseType: TRttiInterfaceType; override;
- function GetDeclaringUnitName: String; override;
- function GetGUID: TGUID; override;
- function GetIntfFlags: TIntfFlags; override;
- function GetIntfType: TInterfaceType; override;
- end;
- TRttiRawInterfaceType = class(TRttiInterfaceType)
- private
- function IntfData: PInterfaceRawData; inline;
- protected
- function MethodTable: PIntfMethodTable; override;
- function GetIntfBaseType: TRttiInterfaceType; override;
- function GetDeclaringUnitName: String; override;
- function GetGUID: TGUID; override;
- function GetGUIDStr: String; override;
- function GetIntfFlags: TIntfFlags; override;
- function GetIntfType: TInterfaceType; override;
- end;
- TRttiVmtMethodParameter = class(TRttiParameter)
- private
- FVmtMethodParam: PVmtMethodParam;
- protected
- function GetHandle: Pointer; override;
- function GetName: String; override;
- function GetFlags: TParamFlags; override;
- function GetParamType: TRttiType; override;
- public
- constructor Create(AVmtMethodParam: PVmtMethodParam);
- end;
- TRttiMethodTypeParameter = class(TRttiParameter)
- private
- fHandle: Pointer;
- fName: String;
- fFlags: TParamFlags;
- fType: PTypeInfo;
- protected
- function GetHandle: Pointer; override;
- function GetName: String; override;
- function GetFlags: TParamFlags; override;
- function GetParamType: TRttiType; override;
- public
- constructor Create(aHandle: Pointer; const aName: String; aFlags: TParamFlags; aType: PTypeInfo);
- end;
- TRttiIntfMethod = class(TRttiMethod)
- private
- FIntfMethodEntry: PIntfMethodEntry;
- FIndex: SmallInt;
- FParams, FParamsAll: specialize TArray<TRttiParameter>;
- protected
- function GetHandle: Pointer; override;
- function GetName: String; override;
- function GetCallingConvention: TCallConv; override;
- function GetCodeAddress: CodePointer; override;
- function GetDispatchKind: TDispatchKind; override;
- function GetHasExtendedInfo: Boolean; override;
- function GetIsClassMethod: Boolean; override;
- function GetIsConstructor: Boolean; override;
- function GetIsDestructor: Boolean; override;
- function GetIsStatic: Boolean; override;
- function GetMethodKind: TMethodKind; override;
- function GetReturnType: TRttiType; override;
- function GetVirtualIndex: SmallInt; override;
- function GetParameters(aWithHidden: Boolean): specialize TArray<TRttiParameter>; override;
- public
- constructor Create(AParent: TRttiType; AIntfMethodEntry: PIntfMethodEntry; AIndex: SmallInt);
- end;
- resourcestring
- SErrUnableToGetValueForType = 'Unable to get value for type %s';
- SErrUnableToSetValueForType = 'Unable to set value for type %s';
- SErrInvalidTypecast = 'Invalid class typecast';
- SErrRttiObjectNoHandle = 'RTTI object instance has no valid handle property';
- SErrRttiObjectAlreadyRegistered = 'A RTTI object with handle 0x%x is already registered';
- SErrInvokeInsufficientRtti = 'Insufficient RTTI to invoke function';
- SErrInvokeStaticNoSelf = 'Static function must not be called with in an instance: %s';
- SErrInvokeNotStaticNeedsSelf = 'Non static function must be called with an instance: %s';
- SErrInvokeClassMethodClassSelf = 'Class method needs to be called with a class type: %s';
- SErrInvokeArrayArgExpected = 'Array argument expected for parameter %s of method %s';
- SErrInvokeArgInvalidType = 'Invalid type of argument for parameter %s of method %s';
- SErrInvokeArgCount = 'Invalid argument count for method %s; expected %d, but got %d';
- SErrInvokeNoCodeAddr = 'Failed to determine code address for method: %s';
- SErrInvokeRttiDataError = 'The RTTI data is inconsistent for method: %s';
- SErrInvokeCallableNotProc = 'The callable value is not a procedure variable for: %s';
- SErrInvokeCallableNotMethod = 'The callable value is not a method variable for: %s';
- SErrMethodImplNoCallback = 'No callback specified for method implementation';
- SErrMethodImplInsufficientRtti = 'Insufficient RTTI to create method implementation';
- SErrMethodImplCreateFailed = 'Failed to create method implementation';
- SErrMethodImplCreateNoArg = 'TMethodImplementation can not be created this way';
- var
- PoolRefCount : integer;
- GRttiPool : TRttiPool;
- FuncCallMgr: TFunctionCallManagerArray;
- function AllocateMemory(aSize: PtrUInt): Pointer;
- begin
- {$IF DEFINED(WINDOWS)}
- Result := VirtualAlloc(Nil, aSize, MEM_RESERVE or MEM_COMMIT, PAGE_READWRITE);
- {$ELSE}
- Result := GetMem(aSize);
- {$ENDIF}
- end;
- function ProtectMemory(aPtr: Pointer; aSize: PtrUInt; aExecutable: Boolean): Boolean;
- {$IF DEFINED(WINDOWS)}
- var
- oldprot: DWORD;
- {$ENDIF}
- begin
- {$IF DEFINED(WINDOWS)}
- if aExecutable then
- Result := VirtualProtect(aPtr, aSize, PAGE_EXECUTE_READ, oldprot)
- else
- Result := VirtualProtect(aPtr, aSize, PAGE_READWRITE, oldprot);
- {$ELSE}
- Result := True;
- {$ENDIF}
- end;
- procedure FreeMemory(aPtr: Pointer);
- begin
- {$IF DEFINED(WINDOWS)}
- VirtualFree(aPtr, 0, MEM_RELEASE);
- {$ELSE}
- FreeMem(aPtr);
- {$ENDIF}
- end;
- function CCToStr(aCC: TCallConv): String; inline;
- begin
- WriteStr(Result, aCC);
- end;
- procedure NoInvoke(aCodeAddress: CodePointer; const aArgs: TFunctionCallParameterArray; aCallConv: TCallConv;
- aResultType: PTypeInfo; aResultValue: Pointer; aFlags: TFunctionCallFlags);
- begin
- raise ENotImplemented.Create(SErrInvokeNotImplemented);
- end;
- function NoCreateCallbackProc(aFunc: TFunctionCallProc; aCallConv: TCallConv; aArgs: array of TFunctionCallParameterInfo; aResultType: PTypeInfo; aFlags: TFunctionCallFlags; aContext: Pointer): TFunctionCallCallback;
- begin
- Result := Nil;
- raise ENotImplemented.Create(SErrCallbackNotImplented);
- end;
- function NoCreateCallbackMethod(aFunc: TFunctionCallMethod; aCallConv: TCallConv; aArgs: array of TFunctionCallParameterInfo; aResultType: PTypeInfo; aFlags: TFunctionCallFlags; aContext: Pointer): TFunctionCallCallback;
- begin
- Result := Nil;
- raise ENotImplemented.Create(SErrCallbackNotImplented);
- end;
- const
- NoFunctionCallManager: TFunctionCallManager = (
- Invoke: @NoInvoke;
- CreateCallbackProc: @NoCreateCallbackProc;
- CreateCallbackMethod: @NoCreateCallbackMethod;
- );
- procedure SetFunctionCallManager(aCallConv: TCallConv; constref aFuncCallMgr: TFunctionCallManager;
- out aOldFuncCallMgr: TFunctionCallManager);
- begin
- aOldFuncCallMgr := FuncCallMgr[aCallConv];
- FuncCallMgr[aCallConv] := aFuncCallMgr;
- end;
- procedure SetFunctionCallManager(aCallConv: TCallConv; constref aFuncCallMgr: TFunctionCallManager);
- var
- dummy: TFunctionCallManager;
- begin
- SetFunctionCallManager(aCallConv, aFuncCallMgr, dummy);
- end;
- procedure SetFunctionCallManager(aCallConvs: TCallConvSet; constref aFuncCallMgr: TFunctionCallManager;
- out aOldFuncCallMgrs: TFunctionCallManagerArray);
- var
- cc: TCallConv;
- begin
- for cc := Low(TCallConv) to High(TCallConv) do
- if cc in aCallConvs then begin
- aOldFuncCallMgrs[cc] := FuncCallMgr[cc];
- FuncCallMgr[cc] := aFuncCallMgr;
- end else
- aOldFuncCallMgrs[cc] := Default(TFunctionCallManager);
- end;
- procedure SetFunctionCallManager(aCallConvs: TCallConvSet; constref aFuncCallMgr: TFunctionCallManager);
- var
- dummy: TFunctionCallManagerArray;
- begin
- SetFunctionCallManager(aCallConvs, aFuncCallMgr, dummy);
- end;
- procedure SetFunctionCallManagers(aCallConvs: TCallConvSet; constref aFuncCallMgrs: TFunctionCallManagerArray; out aOldFuncCallMgrs: TFunctionCallManagerArray);
- var
- cc: TCallConv;
- begin
- for cc := Low(TCallConv) to High(TCallConv) do
- if cc in aCallConvs then begin
- aOldFuncCallMgrs[cc] := FuncCallMgr[cc];
- FuncCallMgr[cc] := aFuncCallMgrs[cc];
- end else
- aOldFuncCallMgrs[cc] := Default(TFunctionCallManager);
- end;
- procedure SetFunctionCallManagers(aCallConvs: TCallConvSet; constref aFuncCallMgrs: TFunctionCallManagerArray);
- var
- dummy: TFunctionCallManagerArray;
- begin
- SetFunctionCallManagers(aCallConvs, aFuncCallMgrs, dummy);
- end;
- procedure SetFunctionCallManagers(constref aFuncCallMgrs: TFunctionCallManagerArray; out aOldFuncCallMgrs: TFunctionCallManagerArray);
- begin
- aOldFuncCallMgrs := FuncCallMgr;
- FuncCallMgr := aFuncCallMgrs;
- end;
- procedure SetFunctionCallManagers(constref aFuncCallMgrs: TFunctionCallManagerArray);
- var
- dummy: TFunctionCallManagerArray;
- begin
- SetFunctionCallManagers(aFuncCallMgrs, dummy);
- end;
- procedure GetFunctionCallManager(aCallConv: TCallConv; out aFuncCallMgr: TFunctionCallManager);
- begin
- aFuncCallMgr := FuncCallMgr[aCallConv];
- end;
- procedure GetFunctionCallManagers(aCallConvs: TCallConvSet; out aFuncCallMgrs: TFunctionCallManagerArray);
- var
- cc: TCallConv;
- begin
- for cc := Low(TCallConv) to High(TCallConv) do
- if cc in aCallConvs then
- aFuncCallMgrs[cc] := FuncCallMgr[cc]
- else
- aFuncCallMgrs[cc] := Default(TFunctionCallManager);
- end;
- procedure GetFunctionCallManagers(out aFuncCallMgrs: TFunctionCallManagerArray);
- begin
- aFuncCallMgrs := FuncCallMgr;
- end;
- procedure InitDefaultFunctionCallManager;
- var
- cc: TCallConv;
- begin
- for cc := Low(TCallConv) to High(TCallConv) do
- FuncCallMgr[cc] := NoFunctionCallManager;
- end;
- { TRttiPool }
- function TRttiPool.GetTypes: specialize TArray<TRttiType>;
- begin
- if not Assigned(FTypesList) then
- Exit(Nil);
- {$ifdef FPC_HAS_FEATURE_THREADING}
- EnterCriticalsection(FLock);
- try
- {$endif}
- Result := Copy(FTypesList, 0, FTypeCount);
- {$ifdef FPC_HAS_FEATURE_THREADING}
- finally
- LeaveCriticalsection(FLock);
- end;
- {$endif}
- end;
- function TRttiPool.GetType(ATypeInfo: PTypeInfo): TRttiType;
- var
- obj: TRttiObject;
- begin
- if not Assigned(ATypeInfo) then
- Exit(Nil);
- {$ifdef FPC_HAS_FEATURE_THREADING}
- EnterCriticalsection(FLock);
- try
- {$endif}
- Result := Nil;
- obj := GetByHandle(ATypeInfo);
- if Assigned(obj) then
- Result := obj as TRttiType;
- if not Assigned(Result) then
- begin
- if FTypeCount = Length(FTypesList) then
- begin
- SetLength(FTypesList, FTypeCount * 2);
- end;
- case ATypeInfo^.Kind of
- tkClass : Result := TRttiInstanceType.Create(ATypeInfo);
- tkInterface: Result := TRttiRefCountedInterfaceType.Create(ATypeInfo);
- tkInterfaceRaw: Result := TRttiRawInterfaceType.Create(ATypeInfo);
- tkSString,
- tkLString,
- tkAString,
- tkUString,
- tkWString : Result := TRttiStringType.Create(ATypeInfo);
- tkFloat : Result := TRttiFloatType.Create(ATypeInfo);
- tkPointer : Result := TRttiPointerType.Create(ATypeInfo);
- tkProcVar : Result := TRttiProcedureType.Create(ATypeInfo);
- tkMethod : Result := TRttiMethodType.Create(ATypeInfo);
- else
- Result := TRttiType.Create(ATypeInfo);
- end;
- FTypesList[FTypeCount] := Result;
- FObjectMap.Add(ATypeInfo, Result);
- Inc(FTypeCount);
- end;
- {$ifdef FPC_HAS_FEATURE_THREADING}
- finally
- LeaveCriticalsection(FLock);
- end;
- {$endif}
- end;
- function TRttiPool.GetByHandle(aHandle: Pointer): TRttiObject;
- var
- idx: LongInt;
- begin
- if not Assigned(aHandle) then
- Exit(Nil);
- {$ifdef FPC_HAS_FEATURE_THREADING}
- EnterCriticalsection(FLock);
- try
- {$endif}
- idx := FObjectMap.IndexOf(aHandle);
- if idx < 0 then
- Result := Nil
- else
- Result := FObjectMap.Data[idx];
- {$ifdef FPC_HAS_FEATURE_THREADING}
- finally
- LeaveCriticalsection(FLock);
- end;
- {$endif}
- end;
- procedure TRttiPool.AddObject(aObject: TRttiObject);
- var
- idx: LongInt;
- begin
- if not Assigned(aObject) then
- Exit;
- if not Assigned(aObject.Handle) then
- raise EArgumentException.Create(SErrRttiObjectNoHandle);
- {$ifdef FPC_HAS_FEATURE_THREADING}
- EnterCriticalsection(FLock);
- try
- {$endif}
- idx := FObjectMap.IndexOf(aObject.Handle);
- if idx < 0 then
- FObjectMap.Add(aObject.Handle, aObject)
- else if FObjectMap.Data[idx] <> aObject then
- raise EInvalidOpException.CreateFmt(SErrRttiObjectAlreadyRegistered, [aObject.Handle]);
- {$ifdef FPC_HAS_FEATURE_THREADING}
- finally
- LeaveCriticalsection(FLock);
- end;
- {$endif}
- end;
- constructor TRttiPool.Create;
- begin
- {$ifdef FPC_HAS_FEATURE_THREADING}
- InitCriticalSection(FLock);
- {$endif}
- SetLength(FTypesList, 32);
- FObjectMap := TRttiObjectMap.Create;
- end;
- destructor TRttiPool.Destroy;
- var
- i: LongInt;
- begin
- for i := 0 to FObjectMap.Count - 1 do
- FObjectMap.Data[i].Free;
- FObjectMap.Free;
- {$ifdef FPC_HAS_FEATURE_THREADING}
- DoneCriticalsection(FLock);
- {$endif}
- inherited Destroy;
- end;
- { TPoolToken }
- constructor TPoolToken.Create;
- begin
- inherited Create;
- if InterlockedIncrement(PoolRefCount)=1 then
- GRttiPool := TRttiPool.Create;
- end;
- destructor TPoolToken.Destroy;
- begin
- if InterlockedDecrement(PoolRefCount)=0 then
- GRttiPool.Free;
- inherited;
- end;
- function TPoolToken.RttiPool: TRttiPool;
- begin
- result := GRttiPool;
- end;
- { TValueDataIntImpl }
- procedure IntFinalize(APointer, ATypeInfo: Pointer);
- external name 'FPC_FINALIZE';
- procedure IntInitialize(APointer, ATypeInfo: Pointer);
- external name 'FPC_INITIALIZE';
- procedure IntAddRef(APointer, ATypeInfo: Pointer);
- external name 'FPC_ADDREF';
- function IntCopy(ASource, ADest, ATypeInfo: Pointer): SizeInt;
- external name 'FPC_COPY';
- constructor TValueDataIntImpl.CreateCopy(ACopyFromBuffer: Pointer; ALen: SizeInt; ATypeInfo: PTypeInfo; AAddRef: Boolean);
- begin
- FTypeInfo := ATypeInfo;
- FDataSize:=ALen;
- if ALen>0 then
- begin
- Getmem(FBuffer,FDataSize);
- if Assigned(ACopyFromBuffer) then
- system.move(ACopyFromBuffer^,FBuffer^,FDataSize)
- else
- FillChar(FBuffer^, FDataSize, 0);
- end;
- FIsCopy := True;
- FUseAddRef := AAddRef;
- if AAddRef and (ALen > 0) then begin
- if Assigned(ACopyFromBuffer) then
- IntAddRef(FBuffer, FTypeInfo)
- else
- IntInitialize(FBuffer, FTypeInfo);
- end;
- end;
- constructor TValueDataIntImpl.CreateRef(AData: Pointer; ATypeInfo: PTypeInfo; AAddRef: Boolean);
- begin
- FTypeInfo := ATypeInfo;
- FDataSize := SizeOf(Pointer);
- if Assigned(AData) then
- FBuffer := PPointer(AData)^
- else
- FBuffer := Nil;
- FIsCopy := False;
- FUseAddRef := AAddRef;
- if AAddRef and Assigned(AData) then
- IntAddRef(@FBuffer, FTypeInfo);
- end;
- destructor TValueDataIntImpl.Destroy;
- begin
- if Assigned(FBuffer) then begin
- if FUseAddRef then
- if FIsCopy then
- IntFinalize(FBuffer, FTypeInfo)
- else
- IntFinalize(@FBuffer, FTypeInfo);
- if FIsCopy then
- Freemem(FBuffer);
- end;
- inherited Destroy;
- end;
- procedure TValueDataIntImpl.ExtractRawData(ABuffer: pointer);
- begin
- if FDataSize = 0 then
- Exit;
- if FIsCopy then
- System.Move(FBuffer^, ABuffer^, FDataSize)
- else
- System.Move(FBuffer{!}, ABuffer^, FDataSize);
- if FUseAddRef then
- IntAddRef(ABuffer, FTypeInfo);
- end;
- procedure TValueDataIntImpl.ExtractRawDataNoCopy(ABuffer: pointer);
- begin
- if FDataSize = 0 then
- Exit;
- if FIsCopy then
- system.move(FBuffer^, ABuffer^, FDataSize)
- else
- System.Move(FBuffer{!}, ABuffer^, FDataSize);
- end;
- function TValueDataIntImpl.GetDataSize: SizeInt;
- begin
- result := FDataSize;
- end;
- function TValueDataIntImpl.GetReferenceToRawData: pointer;
- begin
- if FIsCopy then
- result := FBuffer
- else
- result := @FBuffer;
- end;
- { TValue }
- class function TValue.Empty: TValue;
- begin
- result.FData.FTypeInfo := nil;
- {$if SizeOf(TMethod) > SizeOf(QWord)}
- Result.FData.FAsMethod.Code := Nil;
- Result.FData.FAsMethod.Data := Nil;
- {$else}
- Result.FData.FAsUInt64 := 0;
- {$endif}
- end;
- function TValue.GetTypeDataProp: PTypeData;
- begin
- result := GetTypeData(FData.FTypeInfo);
- end;
- function TValue.GetTypeInfo: PTypeInfo;
- begin
- result := FData.FTypeInfo;
- end;
- function TValue.GetTypeKind: TTypeKind;
- begin
- if not Assigned(FData.FTypeInfo) then
- Result := tkUnknown
- else
- result := FData.FTypeInfo^.Kind;
- end;
- function TValue.GetDataSize: SizeInt;
- begin
- if Assigned(FData.FValueData) and (Kind <> tkSString) then
- Result := FData.FValueData.GetDataSize
- else begin
- Result := 0;
- case Kind of
- tkEnumeration,
- tkBool,
- tkInt64,
- tkQWord,
- tkInteger:
- case TypeData^.OrdType of
- otSByte,
- otUByte:
- Result := SizeOf(Byte);
- otSWord,
- otUWord:
- Result := SizeOf(Word);
- otSLong,
- otULong:
- Result := SizeOf(LongWord);
- otSQWord,
- otUQWord:
- Result := SizeOf(QWord);
- end;
- tkChar:
- Result := SizeOf(AnsiChar);
- tkFloat:
- case TypeData^.FloatType of
- ftSingle:
- Result := SizeOf(Single);
- ftDouble:
- Result := SizeOf(Double);
- ftExtended:
- Result := SizeOf(Extended);
- ftComp:
- Result := SizeOf(Comp);
- ftCurr:
- Result := SizeOf(Currency);
- end;
- tkSet:
- Result := TypeData^.SetSize;
- tkMethod:
- Result := SizeOf(TMethod);
- tkSString:
- { ShortString can hold max. 254 characters as [0] is Length and [255] is #0 }
- Result := SizeOf(ShortString) - 2;
- tkVariant:
- Result := SizeOf(Variant);
- tkProcVar:
- Result := SizeOf(CodePointer);
- tkWChar:
- Result := SizeOf(WideChar);
- tkUChar:
- Result := SizeOf(UnicodeChar);
- tkFile:
- { ToDo }
- Result := SizeOf(TTextRec);
- tkAString,
- tkWString,
- tkUString,
- tkInterface,
- tkDynArray,
- tkClass,
- tkHelper,
- tkClassRef,
- tkInterfaceRaw,
- tkPointer:
- Result := SizeOf(Pointer);
- tkObject,
- tkRecord:
- Result := TypeData^.RecSize;
- tkArray:
- Result := TypeData^.ArrayData.Size;
- tkUnknown,
- tkLString:
- Assert(False);
- end;
- end;
- end;
- class procedure TValue.Make(ABuffer: pointer; ATypeInfo: PTypeInfo; out result: TValue);
- type
- PBoolean16 = ^Boolean16;
- PBoolean32 = ^Boolean32;
- PBoolean64 = ^Boolean64;
- PByteBool = ^ByteBool;
- PQWordBool = ^QWordBool;
- PMethod = ^TMethod;
- var
- td: PTypeData;
- size: SizeInt;
- begin
- result.FData.FTypeInfo:=ATypeInfo;
- { resets the whole variant part; FValueData is already Nil }
- {$if SizeOf(TMethod) > SizeOf(QWord)}
- Result.FData.FAsMethod.Code := Nil;
- Result.FData.FAsMethod.Data := Nil;
- {$else}
- Result.FData.FAsUInt64 := 0;
- {$endif}
- if not Assigned(ATypeInfo) then
- Exit;
- { first handle those types that need a TValueData implementation }
- case ATypeInfo^.Kind of
- tkSString : begin
- td := GetTypeData(ATypeInfo);
- result.FData.FValueData := TValueDataIntImpl.CreateCopy(ABuffer, td^.MaxLength + 1, ATypeInfo, True);
- end;
- tkWString,
- tkUString,
- tkAString : result.FData.FValueData := TValueDataIntImpl.CreateRef(ABuffer, ATypeInfo, True);
- tkDynArray : result.FData.FValueData := TValueDataIntImpl.CreateRef(ABuffer, ATypeInfo, True);
- tkArray : result.FData.FValueData := TValueDataIntImpl.CreateCopy(ABuffer, Result.TypeData^.ArrayData.Size, ATypeInfo, False);
- tkObject,
- tkRecord : result.FData.FValueData := TValueDataIntImpl.CreateCopy(ABuffer, Result.TypeData^.RecSize, ATypeInfo, False);
- tkInterface: result.FData.FValueData := TValueDataIntImpl.CreateRef(ABuffer, ATypeInfo, True);
- end;
- if not Assigned(ABuffer) then
- Exit;
- { now handle those that are happy with the variant part of FData }
- case ATypeInfo^.Kind of
- tkSString,
- tkWString,
- tkUString,
- tkAString,
- tkDynArray,
- tkArray,
- tkObject,
- tkRecord,
- tkInterface:
- { ignore }
- ;
- tkClass : result.FData.FAsObject := PPointer(ABuffer)^;
- tkClassRef : result.FData.FAsClass := PClass(ABuffer)^;
- tkInterfaceRaw : result.FData.FAsPointer := PPointer(ABuffer)^;
- tkInt64 : result.FData.FAsSInt64 := PInt64(ABuffer)^;
- tkQWord : result.FData.FAsUInt64 := PQWord(ABuffer)^;
- tkProcVar : result.FData.FAsMethod.Code := PCodePointer(ABuffer)^;
- tkMethod : result.FData.FAsMethod := PMethod(ABuffer)^;
- tkPointer : result.FData.FAsPointer := PPointer(ABuffer)^;
- tkSet : begin
- td := GetTypeData(ATypeInfo);
- case td^.OrdType of
- otUByte: begin
- { this can either really be 1 Byte or a set > 32-bit, so
- check the underlying type }
- if not (td^.CompType^.Kind in [tkInteger,tkEnumeration]) then
- raise Exception.CreateFmt(SErrUnableToGetValueForType,[ATypeInfo^.Name]);
- case td^.SetSize of
- 0, 1:
- Result.FData.FAsUByte := PByte(ABuffer)^;
- { these two cases shouldn't happen, but better safe than sorry... }
- 2:
- Result.FData.FAsUWord := PWord(ABuffer)^;
- 3, 4:
- Result.FData.FAsULong := PLongWord(ABuffer)^;
- { maybe we should also allow storage as otUQWord? }
- 5..8:
- Result.FData.FAsUInt64 := PQWord(ABuffer)^;
- else
- Result.FData.FValueData := TValueDataIntImpl.CreateCopy(ABuffer, td^.SetSize, ATypeInfo, False);
- end;
- end;
- otUWord:
- Result.FData.FAsUWord := PWord(ABuffer)^;
- otULong:
- Result.FData.FAsULong := PLongWord(ABuffer)^;
- else
- { ehm... Panic? }
- raise Exception.CreateFmt(SErrUnableToGetValueForType,[ATypeInfo^.Name]);
- end;
- end;
- tkEnumeration,
- tkInteger : begin
- case GetTypeData(ATypeInfo)^.OrdType of
- otSByte: result.FData.FAsSByte := PShortInt(ABuffer)^;
- otUByte: result.FData.FAsUByte := PByte(ABuffer)^;
- otSWord: result.FData.FAsSWord := PSmallInt(ABuffer)^;
- otUWord: result.FData.FAsUWord := PWord(ABuffer)^;
- otSLong: result.FData.FAsSLong := PLongInt(ABuffer)^;
- otULong: result.FData.FAsULong := PLongWord(ABuffer)^;
- end;
- end;
- tkBool : begin
- case GetTypeData(ATypeInfo)^.OrdType of
- otUByte: result.FData.FAsUByte := Byte(System.PBoolean(ABuffer)^);
- otUWord: result.FData.FAsUWord := Word(PBoolean16(ABuffer)^);
- otULong: result.FData.FAsULong := DWord(PBoolean32(ABuffer)^);
- otUQWord: result.FData.FAsUInt64 := QWord(PBoolean64(ABuffer)^);
- otSByte: result.FData.FAsSByte := ShortInt(PByteBool(ABuffer)^);
- otSWord: result.FData.FAsSWord := SmallInt(PWordBool(ABuffer)^);
- otSLong: result.FData.FAsSLong := LongInt(PLongBool(ABuffer)^);
- otSQWord: result.FData.FAsSInt64 := Int64(PQWordBool(ABuffer)^);
- end;
- end;
- tkFloat : begin
- case GetTypeData(ATypeInfo)^.FloatType of
- ftCurr : result.FData.FAsCurr := PCurrency(ABuffer)^;
- ftSingle : result.FData.FAsSingle := PSingle(ABuffer)^;
- ftDouble : result.FData.FAsDouble := PDouble(ABuffer)^;
- ftExtended: result.FData.FAsExtended := PExtended(ABuffer)^;
- ftComp : result.FData.FAsComp := PComp(ABuffer)^;
- end;
- end;
- else
- raise Exception.CreateFmt(SErrUnableToGetValueForType,[ATypeInfo^.Name]);
- end;
- end;
- class procedure TValue.MakeOpenArray(AArray: Pointer; ALength: SizeInt; ATypeInfo: PTypeInfo; out Result: TValue);
- var
- el: TValue;
- begin
- Result.FData.FTypeInfo := ATypeInfo;
- { resets the whole variant part; FValueData is already Nil }
- {$if SizeOf(TMethod) > SizeOf(QWord)}
- Result.FData.FAsMethod.Code := Nil;
- Result.FData.FAsMethod.Data := Nil;
- {$else}
- Result.FData.FAsUInt64 := 0;
- {$endif}
- if not Assigned(ATypeInfo) then
- Exit;
- if ATypeInfo^.Kind <> tkArray then
- Exit;
- if not Assigned(AArray) then
- Exit;
- if ALength < 0 then
- Exit;
- Result.FData.FValueData := TValueDataIntImpl.CreateRef(@AArray, ATypeInfo, False);
- Result.FData.FArrLength := ALength;
- Make(Nil, Result.TypeData^.ArrayData.ElType, el);
- Result.FData.FElSize := el.DataSize;
- end;
- {$ifndef NoGenericMethods}
- generic class function TValue.From<T>(constref aValue: T): TValue;
- begin
- TValue.Make(@aValue, System.TypeInfo(T), Result);
- end;
- generic class function TValue.FromOpenArray<T>(constref aValue: array of T): TValue;
- var
- arrdata: Pointer;
- begin
- if Length(aValue) > 0 then
- arrdata := @aValue[0]
- else
- arrdata := Nil;
- TValue.MakeOpenArray(arrdata, Length(aValue), System.TypeInfo(aValue), Result);
- end;
- {$endif}
- function TValue.GetIsEmpty: boolean;
- begin
- result := (FData.FTypeInfo=nil) or
- ((Kind in [tkSString, tkObject, tkRecord, tkArray]) and not Assigned(FData.FValueData)) or
- ((Kind in [tkClass, tkClassRef, tkInterfaceRaw]) and not Assigned(FData.FAsPointer));
- end;
- function TValue.IsArray: boolean;
- begin
- result := kind in [tkArray, tkDynArray];
- end;
- function TValue.IsOpenArray: Boolean;
- var
- td: PTypeData;
- begin
- td := TypeData;
- Result := (Kind = tkArray) and (td^.ArrayData.Size = 0) and (td^.ArrayData.ElCount = 0)
- end;
- function TValue.AsString: string;
- begin
- if System.GetTypeKind(String) = tkUString then
- Result := String(AsUnicodeString)
- else
- Result := String(AsAnsiString);
- end;
- function TValue.AsUnicodeString: UnicodeString;
- begin
- if (Kind in [tkSString, tkAString, tkUString, tkWString]) and not Assigned(FData.FValueData) then
- Result := ''
- else
- case Kind of
- tkSString:
- Result := UnicodeString(PShortString(FData.FValueData.GetReferenceToRawData)^);
- tkAString:
- Result := UnicodeString(PAnsiString(FData.FValueData.GetReferenceToRawData)^);
- tkWString:
- Result := UnicodeString(PWideString(FData.FValueData.GetReferenceToRawData)^);
- tkUString:
- Result := UnicodeString(PUnicodeString(FData.FValueData.GetReferenceToRawData)^);
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- end;
- function TValue.AsAnsiString: AnsiString;
- begin
- if (Kind in [tkSString, tkAString, tkUString, tkWString]) and not Assigned(FData.FValueData) then
- Result := ''
- else
- case Kind of
- tkSString:
- Result := AnsiString(PShortString(FData.FValueData.GetReferenceToRawData)^);
- tkAString:
- Result := AnsiString(PAnsiString(FData.FValueData.GetReferenceToRawData)^);
- tkWString:
- Result := AnsiString(PWideString(FData.FValueData.GetReferenceToRawData)^);
- tkUString:
- Result := AnsiString(PUnicodeString(FData.FValueData.GetReferenceToRawData)^);
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- end;
- function TValue.AsExtended: Extended;
- begin
- if Kind = tkFloat then
- begin
- case TypeData^.FloatType of
- ftSingle : result := FData.FAsSingle;
- ftDouble : result := FData.FAsDouble;
- ftExtended : result := FData.FAsExtended;
- ftCurr : result := FData.FAsCurr;
- ftComp : result := FData.FAsComp;
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- end
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.IsObject: boolean;
- begin
- result := (Kind = tkClass) or ((Kind = tkUnknown) and not Assigned(FData.FAsObject));
- end;
- function TValue.IsClass: boolean;
- begin
- result := (Kind = tkClassRef) or ((Kind in [tkClass,tkUnknown]) and not Assigned(FData.FAsObject));
- end;
- function TValue.IsOrdinal: boolean;
- begin
- result := (Kind in [tkInteger, tkInt64, tkQWord, tkBool]) or
- ((Kind in [tkClass, tkClassRef, tkInterfaceRaw, tkUnknown]) and not Assigned(FData.FAsPointer));
- end;
- function TValue.IsType(ATypeInfo: PTypeInfo): boolean;
- begin
- result := ATypeInfo = TypeInfo;
- end;
- function TValue.AsObject: TObject;
- begin
- if IsObject or (IsClass and not Assigned(FData.FAsObject)) then
- result := TObject(FData.FAsObject)
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.AsClass: TClass;
- begin
- if IsClass then
- result := FData.FAsClass
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.AsBoolean: boolean;
- begin
- if (Kind = tkBool) then
- case TypeData^.OrdType of
- otSByte: Result := ByteBool(FData.FAsSByte);
- otUByte: Result := Boolean(FData.FAsUByte);
- otSWord: Result := WordBool(FData.FAsSWord);
- otUWord: Result := Boolean16(FData.FAsUWord);
- otSLong: Result := LongBool(FData.FAsSLong);
- otULong: Result := Boolean32(FData.FAsULong);
- otSQWord: Result := QWordBool(FData.FAsSInt64);
- otUQWord: Result := Boolean64(FData.FAsUInt64);
- end
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.AsOrdinal: Int64;
- begin
- if IsOrdinal then
- if Kind in [tkClass, tkClassRef, tkInterfaceRaw, tkUnknown] then
- Result := 0
- else
- case TypeData^.OrdType of
- otSByte: Result := FData.FAsSByte;
- otUByte: Result := FData.FAsUByte;
- otSWord: Result := FData.FAsSWord;
- otUWord: Result := FData.FAsUWord;
- otSLong: Result := FData.FAsSLong;
- otULong: Result := FData.FAsULong;
- otSQWord: Result := FData.FAsSInt64;
- otUQWord: Result := FData.FAsUInt64;
- end
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.AsCurrency: Currency;
- begin
- if (Kind = tkFloat) and (TypeData^.FloatType=ftCurr) then
- result := FData.FAsCurr
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.AsInteger: Integer;
- begin
- if Kind in [tkInteger, tkInt64, tkQWord] then
- case TypeData^.OrdType of
- otSByte: Result := FData.FAsSByte;
- otUByte: Result := FData.FAsUByte;
- otSWord: Result := FData.FAsSWord;
- otUWord: Result := FData.FAsUWord;
- otSLong: Result := FData.FAsSLong;
- otULong: Result := FData.FAsULong;
- otSQWord: Result := FData.FAsSInt64;
- otUQWord: Result := FData.FAsUInt64;
- end
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.AsInt64: Int64;
- begin
- if Kind in [tkInteger, tkInt64, tkQWord] then
- case TypeData^.OrdType of
- otSByte: Result := FData.FAsSByte;
- otUByte: Result := FData.FAsUByte;
- otSWord: Result := FData.FAsSWord;
- otUWord: Result := FData.FAsUWord;
- otSLong: Result := FData.FAsSLong;
- otULong: Result := FData.FAsULong;
- otSQWord: Result := FData.FAsSInt64;
- otUQWord: Result := FData.FAsUInt64;
- end
- else if (Kind = tkFloat) and (TypeData^.FloatType = ftComp) then
- Result := Int64(FData.FAsComp)
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.AsUInt64: QWord;
- begin
- if Kind in [tkInteger, tkInt64, tkQWord] then
- case TypeData^.OrdType of
- otSByte: Result := FData.FAsSByte;
- otUByte: Result := FData.FAsUByte;
- otSWord: Result := FData.FAsSWord;
- otUWord: Result := FData.FAsUWord;
- otSLong: Result := FData.FAsSLong;
- otULong: Result := FData.FAsULong;
- otSQWord: Result := FData.FAsSInt64;
- otUQWord: Result := FData.FAsUInt64;
- end
- else if (Kind = tkFloat) and (TypeData^.FloatType = ftComp) then
- Result := QWord(FData.FAsComp)
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.AsInterface: IInterface;
- begin
- if Kind = tkInterface then
- Result := PInterface(FData.FValueData.GetReferenceToRawData)^
- else if (Kind in [tkClass, tkClassRef, tkUnknown]) and not Assigned(FData.FAsPointer) then
- Result := Nil
- else
- raise EInvalidCast.Create(SErrInvalidTypecast);
- end;
- function TValue.ToString: String;
- begin
- case Kind of
- tkWString,
- tkUString : result := AsUnicodeString;
- tkSString,
- tkAString : result := AsAnsiString;
- tkInteger : result := IntToStr(AsInteger);
- tkQWord : result := IntToStr(AsUInt64);
- tkInt64 : result := IntToStr(AsInt64);
- tkBool : result := BoolToStr(AsBoolean, True);
- else
- result := '';
- end;
- end;
- function TValue.GetArrayLength: SizeInt;
- var
- td: PTypeData;
- begin
- if not IsArray then
- raise EInvalidCast.Create(SErrInvalidTypecast);
- if Kind = tkDynArray then
- Result := DynArraySize(PPointer(FData.FValueData.GetReferenceToRawData)^)
- else begin
- td := TypeData;
- if (td^.ArrayData.Size = 0) and (td^.ArrayData.ElCount = 0) then
- Result := FData.FArrLength
- else
- Result := td^.ArrayData.ElCount;
- end;
- end;
- function TValue.GetArrayElement(AIndex: SizeInt): TValue;
- var
- data: Pointer;
- eltype: PTypeInfo;
- elsize: SizeInt;
- td: PTypeData;
- begin
- if not IsArray then
- raise EInvalidCast.Create(SErrInvalidTypecast);
- if Kind = tkDynArray then begin
- data := DynArrayIndex(PPointer(FData.FValueData.GetReferenceToRawData)^, [AIndex], FData.FTypeInfo);
- eltype := TypeData^.elType2;
- end else begin
- td := TypeData;
- eltype := td^.ArrayData.ElType;
- { open array? }
- if (td^.ArrayData.Size = 0) and (td^.ArrayData.ElCount = 0) then begin
- data := PPointer(FData.FValueData.GetReferenceToRawData)^;
- elsize := FData.FElSize
- end else begin
- data := FData.FValueData.GetReferenceToRawData;
- elsize := td^.ArrayData.Size div td^.ArrayData.ElCount;
- end;
- data := PByte(data) + AIndex * elsize;
- end;
- { MakeWithoutCopy? }
- Make(data, eltype, Result);
- end;
- procedure TValue.SetArrayElement(AIndex: SizeInt; constref AValue: TValue);
- var
- data: Pointer;
- eltype: PTypeInfo;
- elsize: SizeInt;
- td, tdv: PTypeData;
- begin
- if not IsArray then
- raise EInvalidCast.Create(SErrInvalidTypecast);
- if Kind = tkDynArray then begin
- data := DynArrayIndex(PPointer(FData.FValueData.GetReferenceToRawData)^, [AIndex], FData.FTypeInfo);
- eltype := TypeData^.elType2;
- end else begin
- td := TypeData;
- eltype := td^.ArrayData.ElType;
- { open array? }
- if (td^.ArrayData.Size = 0) and (td^.ArrayData.ElCount = 0) then begin
- data := PPointer(FData.FValueData.GetReferenceToRawData)^;
- elsize := FData.FElSize
- end else begin
- data := FData.FValueData.GetReferenceToRawData;
- elsize := td^.ArrayData.Size div td^.ArrayData.ElCount;
- end;
- data := PByte(data) + AIndex * elsize;
- end;
- { maybe we'll later on allow some typecasts, but for now be restrictive }
- if eltype^.Kind <> AValue.Kind then
- raise EInvalidCast.Create(SErrInvalidTypecast);
- td := GetTypeData(eltype);
- tdv := AValue.TypeData;
- if ((eltype^.Kind in [tkInteger, tkBool, tkEnumeration, tkSet]) and (td^.OrdType <> tdv^.OrdType)) or
- ((eltype^.Kind = tkFloat) and (td^.FloatType <> tdv^.FloatType)) then
- raise EInvalidCast.Create(SErrInvalidTypecast);
- if Assigned(AValue.FData.FValueData) and (eltype^.Kind <> tkSString) then
- IntCopy(AValue.FData.FValueData.GetReferenceToRawData, data, eltype)
- else
- Move(AValue.GetReferenceToRawData^, data^, AValue.DataSize);
- end;
- function TValue.TryAsOrdinal(out AResult: int64): boolean;
- begin
- result := IsOrdinal;
- if result then
- AResult := AsOrdinal;
- end;
- function TValue.GetReferenceToRawData: Pointer;
- begin
- if not Assigned(FData.FTypeInfo) then
- Result := Nil
- else if Assigned(FData.FValueData) then
- Result := FData.FValueData.GetReferenceToRawData
- else begin
- Result := Nil;
- case Kind of
- tkInteger,
- tkEnumeration,
- tkInt64,
- tkQWord,
- tkBool:
- case TypeData^.OrdType of
- otSByte:
- Result := @FData.FAsSByte;
- otUByte:
- Result := @FData.FAsUByte;
- otSWord:
- Result := @FData.FAsSWord;
- otUWord:
- Result := @FData.FAsUWord;
- otSLong:
- Result := @FData.FAsSLong;
- otULong:
- Result := @FData.FAsULong;
- otSQWord:
- Result := @FData.FAsSInt64;
- otUQWord:
- Result := @FData.FAsUInt64;
- end;
- tkSet: begin
- case TypeData^.OrdType of
- otUByte: begin
- case TypeData^.SetSize of
- 1:
- Result := @FData.FAsUByte;
- 2:
- Result := @FData.FAsUWord;
- 3, 4:
- Result := @FData.FAsULong;
- 5..8:
- Result := @FData.FAsUInt64;
- else
- { this should have gone through FAsValueData :/ }
- Result := Nil;
- end;
- end;
- otUWord:
- Result := @FData.FAsUWord;
- otULong:
- Result := @FData.FAsULong;
- else
- Result := Nil;
- end;
- end;
- tkChar:
- Result := @FData.FAsUByte;
- tkFloat:
- case TypeData^.FloatType of
- ftSingle:
- Result := @FData.FAsSingle;
- ftDouble:
- Result := @FData.FAsDouble;
- ftExtended:
- Result := @FData.FAsExtended;
- ftComp:
- Result := @FData.FAsComp;
- ftCurr:
- Result := @FData.FAsCurr;
- end;
- tkMethod:
- Result := @FData.FAsMethod;
- tkClass:
- Result := @FData.FAsObject;
- tkWChar:
- Result := @FData.FAsUWord;
- tkInterfaceRaw:
- Result := @FData.FAsPointer;
- tkProcVar:
- Result := @FData.FAsMethod.Code;
- tkUChar:
- Result := @FData.FAsUWord;
- tkFile:
- Result := @FData.FAsPointer;
- tkClassRef:
- Result := @FData.FAsClass;
- tkPointer:
- Result := @FData.FAsPointer;
- tkVariant,
- tkDynArray,
- tkArray,
- tkObject,
- tkRecord,
- tkInterface,
- tkSString,
- tkLString,
- tkAString,
- tkUString,
- tkWString:
- Assert(false, 'Managed/complex type not handled through IValueData');
- end;
- end;
- end;
- procedure TValue.ExtractRawData(ABuffer: Pointer);
- begin
- if Assigned(FData.FValueData) then
- FData.FValueData.ExtractRawData(ABuffer)
- else if Assigned(FData.FTypeInfo) then
- Move((@FData.FAsPointer)^, ABuffer^, DataSize);
- end;
- procedure TValue.ExtractRawDataNoCopy(ABuffer: Pointer);
- begin
- if Assigned(FData.FValueData) then
- FData.FValueData.ExtractRawDataNoCopy(ABuffer)
- else if Assigned(FData.FTypeInfo) then
- Move((@FData.FAsPointer)^, ABuffer^, DataSize);
- end;
- class operator TValue.:=(const AValue: String): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- class operator TValue.:=(AValue: LongInt): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- class operator TValue.:=(AValue: Single): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- class operator TValue.:=(AValue: Double): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- {$ifdef FPC_HAS_TYPE_EXTENDED}
- class operator TValue.:=(AValue: Extended): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- {$endif}
- class operator TValue.:=(AValue: Currency): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- class operator TValue.:=(AValue: Int64): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- class operator TValue.:=(AValue: QWord): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- class operator TValue.:=(AValue: TObject): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- class operator TValue.:=(AValue: TClass): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- class operator TValue.:=(AValue: Boolean): TValue;
- begin
- Make(@AValue, System.TypeInfo(AValue), Result);
- end;
- function Invoke(aCodeAddress: CodePointer; const aArgs: TValueArray;
- aCallConv: TCallConv; aResultType: PTypeInfo; aIsStatic: Boolean;
- aIsConstructor: Boolean): TValue;
- var
- funcargs: TFunctionCallParameterArray;
- i: LongInt;
- flags: TFunctionCallFlags;
- begin
- { sanity check }
- if not Assigned(FuncCallMgr[aCallConv].Invoke) then
- raise ENotImplemented.Create(SErrInvokeNotImplemented);
- { ToDo: handle IsConstructor }
- if aIsConstructor then
- raise ENotImplemented.Create(SErrInvokeNotImplemented);
- flags := [];
- if aIsStatic then
- Include(flags, fcfStatic)
- else if Length(aArgs) = 0 then
- raise EInvocationError.Create(SErrMissingSelfParam);
- SetLength(funcargs, Length(aArgs));
- for i := Low(aArgs) to High(aArgs) do begin
- funcargs[i - Low(aArgs) + Low(funcargs)].ValueRef := aArgs[i].GetReferenceToRawData;
- funcargs[i - Low(aArgs) + Low(funcargs)].ValueSize := aArgs[i].DataSize;
- funcargs[i - Low(aArgs) + Low(funcargs)].Info.ParamType := aArgs[i].TypeInfo;
- funcargs[i - Low(aArgs) + Low(funcargs)].Info.ParamFlags := [];
- funcargs[i - Low(aArgs) + Low(funcargs)].Info.ParaLocs := Nil;
- end;
- if Assigned(aResultType) then
- TValue.Make(Nil, aResultType, Result)
- else
- Result := TValue.Empty;
- FuncCallMgr[aCallConv].Invoke(aCodeAddress, funcargs, aCallConv, aResultType, Result.GetReferenceToRawData, flags);
- end;
- function Invoke(const aName: String; aCodeAddress: CodePointer; aCallConv: TCallConv; aStatic: Boolean; aInstance: TValue; constref aArgs: array of TValue; const aParams: specialize TArray<TRttiParameter>; aReturnType: TRttiType): TValue;
- var
- arrparam, param: TRttiParameter;
- unhidden, highs, i: SizeInt;
- args: TFunctionCallParameterArray;
- highargs: array of SizeInt;
- restype: PTypeInfo;
- resptr: Pointer;
- mgr: TFunctionCallManager;
- flags: TFunctionCallFlags;
- begin
- mgr := FuncCallMgr[aCallConv];
- if not Assigned(mgr.Invoke) then
- raise EInvocationError.CreateFmt(SErrCallConvNotSupported, [CCToStr(aCallConv)]);
- if not Assigned(aCodeAddress) then
- raise EInvocationError.CreateFmt(SErrInvokeNoCodeAddr, [aName]);
- unhidden := 0;
- highs := 0;
- for param in aParams do begin
- if unhidden < Length(aArgs) then begin
- if pfArray in param.Flags then begin
- if Assigned(aArgs[unhidden].TypeInfo) and not aArgs[unhidden].IsArray and (aArgs[unhidden].Kind <> param.ParamType.TypeKind) then
- raise EInvocationError.CreateFmt(SErrInvokeArrayArgExpected, [param.Name, aName]);
- end else if not (pfHidden in param.Flags) then begin
- if Assigned(param.ParamType) and (aArgs[unhidden].Kind <> param.ParamType.TypeKind) then
- raise EInvocationError.CreateFmt(SErrInvokeArgInvalidType, [param.Name, aName]);
- end;
- end;
- if not (pfHidden in param.Flags) then
- Inc(unhidden);
- if pfHigh in param.Flags then
- Inc(highs);
- end;
- if unhidden <> Length(aArgs) then
- raise EInvocationError.CreateFmt(SErrInvokeArgCount, [aName, unhidden, Length(aArgs)]);
- if Assigned(aReturnType) then begin
- TValue.Make(Nil, aReturnType.FTypeInfo, Result);
- resptr := Result.GetReferenceToRawData;
- restype := aReturnType.FTypeInfo;
- end else begin
- Result := TValue.Empty;
- resptr := Nil;
- restype := Nil;
- end;
- SetLength(highargs, highs);
- SetLength(args, Length(aParams));
- unhidden := 0;
- highs := 0;
- for i := 0 to High(aParams) do begin
- param := aParams[i];
- if Assigned(param.ParamType) then
- args[i].Info.ParamType := param.ParamType.FTypeInfo
- else
- args[i].Info.ParamType := Nil;
- args[i].Info.ParamFlags := param.Flags;
- args[i].Info.ParaLocs := Nil;
- if pfHidden in param.Flags then begin
- if pfSelf in param.Flags then
- args[i].ValueRef := aInstance.GetReferenceToRawData
- else if pfResult in param.Flags then begin
- if not Assigned(restype) then
- raise EInvocationError.CreateFmt(SErrInvokeRttiDataError, [aName]);
- args[i].ValueRef := resptr;
- restype := Nil;
- resptr := Nil;
- end else if pfHigh in param.Flags then begin
- { the corresponding array argument is the *previous* unhidden argument }
- if aArgs[unhidden - 1].IsArray then
- highargs[highs] := aArgs[unhidden - 1].GetArrayLength - 1
- else if not Assigned(aArgs[unhidden - 1].TypeInfo) then
- highargs[highs] := -1
- else
- highargs[highs] := 0;
- args[i].ValueRef := @highargs[highs];
- Inc(highs);
- end;
- end else begin
- if (pfArray in param.Flags) then begin
- if not Assigned(aArgs[unhidden].TypeInfo) then
- args[i].ValueRef := Nil
- else if aArgs[unhidden].Kind = tkDynArray then
- args[i].ValueRef := PPointer(aArgs[unhidden].GetReferenceToRawData)^
- else
- args[i].ValueRef := aArgs[unhidden].GetReferenceToRawData;
- end else
- args[i].ValueRef := aArgs[unhidden].GetReferenceToRawData;
- Inc(unhidden);
- end;
- end;
- flags := [];
- if aStatic then
- Include(flags, fcfStatic);
- mgr.Invoke(aCodeAddress, args, aCallConv, restype, resptr, flags);
- end;
- function CreateCallbackProc(aHandler: TFunctionCallProc; aCallConv: TCallConv; aArgs: array of TFunctionCallParameterInfo; aResultType: PTypeInfo; aFlags: TFunctionCallFlags; aContext: Pointer): TFunctionCallCallback;
- begin
- if not Assigned(FuncCallMgr[aCallConv].CreateCallbackProc) then
- raise ENotImplemented.Create(SErrCallbackNotImplented);
- if not Assigned(aHandler) then
- raise EArgumentNilException.Create(SErrCallbackHandlerNil);
- Result := FuncCallMgr[aCallConv].CreateCallbackProc(aHandler, aCallConv, aArgs, aResultType, aFlags, aContext);
- end;
- function CreateCallbackMethod(aHandler: TFunctionCallMethod; aCallConv: TCallConv; aArgs: array of TFunctionCallParameterInfo; aResultType: PTypeInfo; aFlags: TFunctionCallFlags; aContext: Pointer): TFunctionCallCallback;
- begin
- if not Assigned(FuncCallMgr[aCallConv].CreateCallbackMethod) then
- raise ENotImplemented.Create(SErrCallbackNotImplented);
- if not Assigned(aHandler) then
- raise EArgumentNilException.Create(SErrCallbackHandlerNil);
- Result := FuncCallMgr[aCallConv].CreateCallbackMethod(aHandler, aCallConv, aArgs, aResultType, aFlags, aContext);
- end;
- function IsManaged(TypeInfo: PTypeInfo): boolean;
- begin
- if Assigned(TypeInfo) then
- case TypeInfo^.Kind of
- tkAString,
- tkLString,
- tkWString,
- tkUString,
- tkInterface,
- tkVariant,
- tkDynArray : Result := true;
- tkArray : Result := IsManaged(GetTypeData(TypeInfo)^.ArrayData.ElType);
- tkRecord,
- tkObject :
- with GetTypeData(TypeInfo)^.RecInitData^ do
- Result := (ManagedFieldCount > 0) or Assigned(ManagementOp);
- else
- Result := false;
- end
- else
- Result := false;
- end;
- {$ifndef InLazIDE}
- generic function OpenArrayToDynArrayValue<T>(constref aArray: array of T): TValue;
- var
- arr: specialize TArray<T>;
- i: SizeInt;
- begin
- SetLength(arr, Length(aArray));
- for i := 0 to High(aArray) do
- arr[i] := aArray[i];
- Result := TValue.specialize From<specialize TArray<T>>(arr);
- end;
- {$endif}
- { TRttiPointerType }
- function TRttiPointerType.GetReferredType: TRttiType;
- begin
- Result := GRttiPool.GetType(FTypeData^.RefType);
- end;
- { TRttiRefCountedInterfaceType }
- function TRttiRefCountedInterfaceType.IntfData: PInterfaceData;
- begin
- Result := PInterfaceData(FTypeData);
- end;
- function TRttiRefCountedInterfaceType.MethodTable: PIntfMethodTable;
- begin
- Result := IntfData^.MethodTable;
- end;
- function TRttiRefCountedInterfaceType.GetIntfBaseType: TRttiInterfaceType;
- var
- context: TRttiContext;
- begin
- if not Assigned(IntfData^.Parent) then
- Exit(Nil);
- context := TRttiContext.Create;
- try
- Result := context.GetType(IntfData^.Parent^) as TRttiInterfaceType;
- finally
- context.Free;
- end;
- end;
- function TRttiRefCountedInterfaceType.GetDeclaringUnitName: String;
- begin
- Result := IntfData^.UnitName;
- end;
- function TRttiRefCountedInterfaceType.GetGUID: TGUID;
- begin
- Result := IntfData^.GUID;
- end;
- function TRttiRefCountedInterfaceType.GetIntfFlags: TIntfFlags;
- begin
- Result := IntfData^.Flags;
- end;
- function TRttiRefCountedInterfaceType.GetIntfType: TInterfaceType;
- begin
- Result := itRefCounted;
- end;
- { TRttiRawInterfaceType }
- function TRttiRawInterfaceType.IntfData: PInterfaceRawData;
- begin
- Result := PInterfaceRawData(FTypeData);
- end;
- function TRttiRawInterfaceType.MethodTable: PIntfMethodTable;
- begin
- { currently there is none! }
- Result := Nil;
- end;
- function TRttiRawInterfaceType.GetIntfBaseType: TRttiInterfaceType;
- var
- context: TRttiContext;
- begin
- if not Assigned(IntfData^.Parent) then
- Exit(Nil);
- context := TRttiContext.Create;
- try
- Result := context.GetType(IntfData^.Parent^) as TRttiInterfaceType;
- finally
- context.Free;
- end;
- end;
- function TRttiRawInterfaceType.GetDeclaringUnitName: String;
- begin
- Result := IntfData^.UnitName;
- end;
- function TRttiRawInterfaceType.GetGUID: TGUID;
- begin
- Result := IntfData^.IID;
- end;
- function TRttiRawInterfaceType.GetGUIDStr: String;
- begin
- Result := IntfData^.IIDStr;
- end;
- function TRttiRawInterfaceType.GetIntfFlags: TIntfFlags;
- begin
- Result := IntfData^.Flags;
- end;
- function TRttiRawInterfaceType.GetIntfType: TInterfaceType;
- begin
- Result := itRaw;
- end;
- { TRttiVmtMethodParameter }
- function TRttiVmtMethodParameter.GetHandle: Pointer;
- begin
- Result := FVmtMethodParam;
- end;
- function TRttiVmtMethodParameter.GetName: String;
- begin
- Result := FVmtMethodParam^.Name;
- end;
- function TRttiVmtMethodParameter.GetFlags: TParamFlags;
- begin
- Result := FVmtMethodParam^.Flags;
- end;
- function TRttiVmtMethodParameter.GetParamType: TRttiType;
- var
- context: TRttiContext;
- begin
- if not Assigned(FVmtMethodParam^.ParamType) then
- Exit(Nil);
- context := TRttiContext.Create;
- try
- Result := context.GetType(FVmtMethodParam^.ParamType^);
- finally
- context.Free;
- end;
- end;
- constructor TRttiVmtMethodParameter.Create(AVmtMethodParam: PVmtMethodParam);
- begin
- inherited Create;
- FVmtMethodParam := AVmtMethodParam;
- end;
- { TRttiMethodTypeParameter }
- function TRttiMethodTypeParameter.GetHandle: Pointer;
- begin
- Result := fHandle;
- end;
- function TRttiMethodTypeParameter.GetName: String;
- begin
- Result := fName;
- end;
- function TRttiMethodTypeParameter.GetFlags: TParamFlags;
- begin
- Result := fFlags;
- end;
- function TRttiMethodTypeParameter.GetParamType: TRttiType;
- var
- context: TRttiContext;
- begin
- context := TRttiContext.Create;
- try
- Result := context.GetType(FType);
- finally
- context.Free;
- end;
- end;
- constructor TRttiMethodTypeParameter.Create(aHandle: Pointer; const aName: String; aFlags: TParamFlags; aType: PTypeInfo);
- begin
- fHandle := aHandle;
- fName := aName;
- fFlags := aFlags;
- fType := aType;
- end;
- { TRttiIntfMethod }
- function TRttiIntfMethod.GetHandle: Pointer;
- begin
- Result := FIntfMethodEntry;
- end;
- function TRttiIntfMethod.GetName: String;
- begin
- Result := FIntfMethodEntry^.Name;
- end;
- function TRttiIntfMethod.GetCallingConvention: TCallConv;
- begin
- Result := FIntfMethodEntry^.CC;
- end;
- function TRttiIntfMethod.GetCodeAddress: CodePointer;
- begin
- Result := Nil;
- end;
- function TRttiIntfMethod.GetDispatchKind: TDispatchKind;
- begin
- Result := dkInterface;
- end;
- function TRttiIntfMethod.GetHasExtendedInfo: Boolean;
- begin
- Result := True;
- end;
- function TRttiIntfMethod.GetIsClassMethod: Boolean;
- begin
- Result := False;
- end;
- function TRttiIntfMethod.GetIsConstructor: Boolean;
- begin
- Result := False;
- end;
- function TRttiIntfMethod.GetIsDestructor: Boolean;
- begin
- Result := False;
- end;
- function TRttiIntfMethod.GetIsStatic: Boolean;
- begin
- Result := False;
- end;
- function TRttiIntfMethod.GetMethodKind: TMethodKind;
- begin
- Result := FIntfMethodEntry^.Kind;
- end;
- function TRttiIntfMethod.GetReturnType: TRttiType;
- var
- context: TRttiContext;
- begin
- if not Assigned(FIntfMethodEntry^.ResultType) then
- Exit(Nil);
- context := TRttiContext.Create;
- try
- Result := context.GetType(FIntfMethodEntry^.ResultType^);
- finally
- context.Free;
- end;
- end;
- function TRttiIntfMethod.GetVirtualIndex: SmallInt;
- begin
- Result := FIndex;
- end;
- constructor TRttiIntfMethod.Create(AParent: TRttiType; AIntfMethodEntry: PIntfMethodEntry; AIndex: SmallInt);
- begin
- inherited Create(AParent);
- FIntfMethodEntry := AIntfMethodEntry;
- FIndex := AIndex;
- end;
- function TRttiIntfMethod.GetParameters(aWithHidden: Boolean): specialize TArray<TRttiParameter>;
- var
- param: PVmtMethodParam;
- total, visible: SizeInt;
- context: TRttiContext;
- obj: TRttiObject;
- begin
- if aWithHidden and (Length(FParamsAll) > 0) then
- Exit(FParamsAll);
- if not aWithHidden and (Length(FParams) > 0) then
- Exit(FParams);
- if FIntfMethodEntry^.ParamCount = 0 then
- Exit(Nil);
- SetLength(FParams, FIntfMethodEntry^.ParamCount);
- SetLength(FParamsAll, FIntfMethodEntry^.ParamCount);
- context := TRttiContext.Create;
- try
- total := 0;
- visible := 0;
- param := FIntfMethodEntry^.Param[0];
- while total < FIntfMethodEntry^.ParamCount do begin
- obj := context.GetByHandle(param);
- if Assigned(obj) then
- FParamsAll[total] := obj as TRttiVmtMethodParameter
- else begin
- FParamsAll[total] := TRttiVmtMethodParameter.Create(param);
- context.AddObject(FParamsAll[total]);
- end;
- if not (pfHidden in param^.Flags) then begin
- FParams[visible] := FParamsAll[total];
- Inc(visible);
- end;
- param := param^.Next;
- Inc(total);
- end;
- if visible <> total then
- SetLength(FParams, visible);
- finally
- context.Free;
- end;
- if aWithHidden then
- Result := FParamsAll
- else
- Result := FParams;
- end;
- { TRttiFloatType }
- function TRttiFloatType.GetFloatType: TFloatType;
- begin
- result := FTypeData^.FloatType;
- end;
- { TRttiParameter }
- function TRttiParameter.ToString: String;
- var
- f: TParamFlags;
- n: String;
- t: TRttiType;
- begin
- if FString = '' then begin
- f := Flags;
- if pfVar in f then
- FString := 'var'
- else if pfConst in f then
- FString := 'const'
- else if pfOut in f then
- FString := 'out'
- else if pfConstRef in f then
- FString := 'constref';
- if FString <> '' then
- FString := FString + ' ';
- n := Name;
- if n = '' then
- n := '<unknown>';
- FString := FString + n;
- t := ParamType;
- if Assigned(t) then begin
- FString := FString + ': ';
- if pfArray in flags then
- FString := 'array of ';
- FString := FString + t.Name;
- end;
- end;
- Result := FString;
- end;
- { TMethodImplementation }
- function TMethodImplementation.GetCodeAddress: CodePointer;
- begin
- Result := fLowLevelCallback.CodeAddress;
- end;
- procedure TMethodImplementation.InitArgs;
- var
- i, refargs: SizeInt;
- begin
- i := 0;
- refargs := 0;
- SetLength(fRefArgs, Length(fArgs));
- while i < Length(fArgs) do begin
- if (fArgs[i].ParamFlags * [pfVar, pfOut] <> []) and not (pfHidden in fArgs[i].ParamFlags) then begin
- fRefArgs[refargs] := fArgLen;
- Inc(refargs);
- end;
- if pfArray in fArgs[i].ParamFlags then begin
- Inc(i);
- if (i = Length(fArgs)) or not (pfHigh in fArgs[i].ParamFlags) then
- raise EInsufficientRtti.Create(SErrMethodImplCreateFailed);
- Inc(fArgLen);
- end else if not (pfHidden in fArgs[i].ParamFlags) or (pfSelf in fArgs[i].ParamFlags) then
- Inc(fArgLen)
- else if (pfResult in fArgs[i].ParamFlags) then
- fResult := fArgs[i].ParamType;
- Inc(i);
- end;
- SetLength(fRefArgs, refargs);
- end;
- procedure TMethodImplementation.HandleCallback(const aArgs: specialize TArray<Pointer>; aResult: Pointer; aContext: Pointer);
- var
- i, argidx: SizeInt;
- args: TValueArray;
- res: TValue;
- begin
- Assert(fArgLen = Length(aArgs), 'Length of arguments does not match');
- SetLength(args, fArgLen);
- argidx := 0;
- i := 0;
- while i < Length(fArgs) do begin
- if pfArray in fArgs[i].ParamFlags then begin
- Inc(i);
- Assert((i < Length(fArgs)) and (pfHigh in fArgs[i].ParamFlags), 'Expected high parameter after open array parameter');
- TValue.MakeOpenArray(aArgs[i - 1], SizeInt(aArgs[i]), fArgs[i].ParamType, args[argidx]);
- end else if not (pfHidden in fArgs[i].ParamFlags) or (pfSelf in fArgs[i].ParamFlags) then begin
- if Assigned(fArgs[i].ParamType) then
- TValue.Make(aArgs[i], fArgs[i].ParamType, args[argidx])
- else
- TValue.Make(@aArgs[i], TypeInfo(Pointer), args[argidx]);
- end;
- Inc(i);
- Inc(argidx);
- end;
- if Assigned(fCallbackMethod) then
- fCallbackMethod(aContext, args, res)
- else
- fCallbackProc(aContext, args, res);
- { copy back var/out parameters }
- for i := 0 to High(fRefArgs) do begin
- args[fRefArgs[i]].ExtractRawData(aArgs[fRefArgs[i]]);
- end;
- if Assigned(fResult) then
- res.ExtractRawData(aResult);
- end;
- constructor TMethodImplementation.Create(aCC: TCallConv; aArgs: specialize TArray<TFunctionCallParameterInfo>; aResult: PTypeInfo; aFlags: TFunctionCallFlags; aUserData: Pointer; aCallback: TMethodImplementationCallbackMethod);
- begin
- fCC := aCC;
- fArgs := aArgs;
- fResult := aResult;
- fFlags := aFlags;
- fCallbackMethod := aCallback;
- InitArgs;
- fLowLevelCallback := CreateCallbackMethod(@HandleCallback, fCC, aArgs, aResult, aFlags, aUserData);
- if not Assigned(fLowLevelCallback) then
- raise EInsufficientRtti.Create(SErrMethodImplCreateFailed);
- end;
- constructor TMethodImplementation.Create(aCC: TCallConv; aArgs: specialize TArray<TFunctionCallParameterInfo>; aResult: PTypeInfo; aFlags: TFunctionCallFlags; aUserData: Pointer; aCallback: TMethodImplementationCallbackProc);
- begin
- fCC := aCC;
- fArgs := aArgs;
- fResult := aResult;
- fFlags := aFlags;
- fCallbackProc := aCallback;
- InitArgs;
- fLowLevelCallback := CreateCallbackMethod(@HandleCallback, fCC, aArgs, aResult, aFlags, aUserData);
- if not Assigned(fLowLevelCallback) then
- raise EInsufficientRtti.Create(SErrMethodImplCreateFailed);
- end;
- constructor TMethodImplementation.Create;
- begin
- raise EInvalidOpException.Create(SErrMethodImplCreateNoArg);
- end;
- destructor TMethodImplementation.Destroy;
- begin
- fLowLevelCallback.Free;
- inherited Destroy;
- end;
- { TRttiMethod }
- function TRttiMethod.GetHasExtendedInfo: Boolean;
- begin
- Result := False;
- end;
- function TRttiMethod.GetParameters: specialize TArray<TRttiParameter>;
- begin
- Result := GetParameters(False);
- end;
- function TRttiMethod.ToString: String;
- var
- ret: TRttiType;
- n: String;
- params: specialize TArray<TRttiParameter>;
- i: LongInt;
- begin
- if FString = '' then begin
- n := Name;
- if n = '' then
- n := '<unknown>';
- if not HasExtendedInfo then begin
- FString := 'method ' + n;
- end else begin
- ret := ReturnType;
- if IsClassMethod then
- FString := 'class ';
- if IsConstructor then
- FString := FString + 'constructor'
- else if IsDestructor then
- FString := FString + 'destructor'
- else if Assigned(ret) then
- FString := FString + 'function'
- else
- FString := FString + 'procedure';
- FString := FString + ' ' + n;
- params := GetParameters;
- if Length(params) > 0 then begin
- FString := FString + '(';
- for i := 0 to High(params) do begin
- if i > 0 then
- FString := FString + '; ';
- FString := FString + params[i].ToString;
- end;
- FString := FString + ')';
- end;
- if Assigned(ret) then
- FString := FString + ': ' + ret.Name;
- if IsStatic then
- FString := FString + '; static';
- end;
- end;
- Result := FString;
- end;
- function TRttiMethod.Invoke(aInstance: TObject; const aArgs: array of TValue): TValue;
- var
- instance: TValue;
- begin
- TValue.Make(@aInstance, TypeInfo(TObject), instance);
- Result := Invoke(instance, aArgs);
- end;
- function TRttiMethod.Invoke(aInstance: TClass; const aArgs: array of TValue): TValue;
- var
- instance: TValue;
- begin
- TValue.Make(@aInstance, TypeInfo(TClass), instance);
- Result := Invoke(instance, aArgs);
- end;
- function TRttiMethod.Invoke(aInstance: TValue; const aArgs: array of TValue): TValue;
- var
- addr: CodePointer;
- vmt: PCodePointer;
- begin
- if not HasExtendedInfo then
- raise EInvocationError.Create(SErrInvokeInsufficientRtti);
- if IsStatic and not aInstance.IsEmpty then
- raise EInvocationError.CreateFmt(SErrInvokeStaticNoSelf, [Name]);
- if not IsStatic and aInstance.IsEmpty then
- raise EInvocationError.CreateFmt(SErrInvokeNotStaticNeedsSelf, [Name]);
- if not IsStatic and IsClassMethod and not aInstance.IsClass then
- raise EInvocationError.CreateFmt(SErrInvokeClassMethodClassSelf, [Name]);
- addr := Nil;
- if IsStatic then
- addr := CodeAddress
- else begin
- vmt := Nil;
- if aInstance.Kind in [tkInterface, tkInterfaceRaw] then
- vmt := PCodePointer(PPPointer(aInstance.GetReferenceToRawData)^^);
- { ToDo }
- if Assigned(vmt) then
- addr := vmt[VirtualIndex];
- end;
- Result := Rtti.Invoke(Name, addr, CallingConvention, IsStatic, aInstance, aArgs, GetParameters(True), ReturnType);
- end;
- { TRttiInvokableType }
- function TRttiInvokableType.GetParameters: specialize TArray<TRttiParameter>;
- begin
- Result := GetParameters(False);
- end;
- function TRttiInvokableType.CreateImplementation(aCallback: TCallbackMethod): TMethodImplementation;
- var
- params: specialize TArray<TRttiParameter>;
- args: specialize TArray<TFunctionCallParameterInfo>;
- res: PTypeInfo;
- restype: TRttiType;
- resinparam: Boolean;
- i: SizeInt;
- begin
- if not Assigned(aCallback) then
- raise EArgumentNilException.Create(SErrMethodImplNoCallback);
- resinparam := False;
- params := GetParameters(True);
- SetLength(args, Length(params));
- for i := 0 to High(params) do begin
- if Assigned(params[i].ParamType) then
- args[i].ParamType := params[i].ParamType.FTypeInfo
- else
- args[i].ParamType := Nil;
- args[i].ParamFlags := params[i].Flags;
- args[i].ParaLocs := Nil;
- if pfResult in params[i].Flags then
- resinparam := True;
- end;
- restype := GetReturnType;
- if Assigned(restype) and not resinparam then
- res := restype.FTypeInfo
- else
- res := Nil;
- Result := TMethodImplementation.Create(GetCallingConvention, args, res, GetFlags, Self, TMethodImplementationCallbackMethod(aCallback));
- end;
- function TRttiInvokableType.CreateImplementation(aCallback: TCallbackProc): TMethodImplementation;
- var
- params: specialize TArray<TRttiParameter>;
- args: specialize TArray<TFunctionCallParameterInfo>;
- res: PTypeInfo;
- restype: TRttiType;
- resinparam: Boolean;
- i: SizeInt;
- begin
- if not Assigned(aCallback) then
- raise EArgumentNilException.Create(SErrMethodImplNoCallback);
- resinparam := False;
- params := GetParameters(True);
- SetLength(args, Length(params));
- for i := 0 to High(params) do begin
- if Assigned(params[i].ParamType) then
- args[i].ParamType := params[i].ParamType.FTypeInfo
- else
- args[i].ParamType := Nil;
- args[i].ParamFlags := params[i].Flags;
- args[i].ParaLocs := Nil;
- if pfResult in params[i].Flags then
- resinparam := True;
- end;
- restype := GetReturnType;
- if Assigned(restype) and not resinparam then
- res := restype.FTypeInfo
- else
- res := Nil;
- Result := TMethodImplementation.Create(GetCallingConvention, args, res, GetFlags, Self, TMethodImplementationCallbackProc(aCallback));
- end;
- { TRttiMethodType }
- function TRttiMethodType.GetParameters(aWithHidden: Boolean): specialize TArray<TRttiParameter>;
- type
- TParamInfo = record
- Handle: Pointer;
- Flags: TParamFlags;
- Name: String;
- end;
- PParamFlags = ^TParamFlags;
- PCallConv = ^TCallConv;
- PPPTypeInfo = ^PPTypeInfo;
- var
- infos: array of TParamInfo;
- total, visible, i: SizeInt;
- ptr: PByte;
- paramtypes: PPPTypeInfo;
- paramtype: PTypeInfo;
- context: TRttiContext;
- obj: TRttiObject;
- begin
- if aWithHidden and (Length(FParamsAll) > 0) then
- Exit(FParamsAll);
- if not aWithHidden and (Length(FParams) > 0) then
- Exit(FParams);
- ptr := @FTypeData^.ParamList[0];
- visible := 0;
- total := 0;
- if FTypeData^.ParamCount > 0 then begin
- SetLength(infos, FTypeData^.ParamCount);
- while total < FTypeData^.ParamCount do begin
- infos[total].Handle := ptr;
- infos[total].Flags := PParamFlags(ptr)^;
- Inc(ptr, SizeOf(TParamFlags));
- { handle name }
- infos[total].Name := PShortString(ptr)^;
- Inc(ptr, ptr^ + SizeOf(Byte));
- { skip type name }
- Inc(ptr, ptr^ + SizeOf(Byte));
- { align? }
- if not (pfHidden in infos[total].Flags) then
- Inc(visible);
- Inc(total);
- end;
- end;
- if FTypeData^.MethodKind in [mkFunction, mkClassFunction] then begin
- { skip return type name }
- ptr := AlignTypeData(PByte(ptr) + ptr^ + SizeOf(Byte));
- { handle return type }
- FReturnType := GRttiPool.GetType(PPPTypeInfo(ptr)^^);
- Inc(ptr, SizeOf(PPTypeInfo));
- end;
- { handle calling convention }
- FCallConv := PCallConv(ptr)^;
- Inc(ptr, SizeOf(TCallConv));
- SetLength(FParamsAll, FTypeData^.ParamCount);
- SetLength(FParams, visible);
- if FTypeData^.ParamCount > 0 then begin
- context := TRttiContext.Create;
- try
- paramtypes := PPPTypeInfo(ptr);
- visible := 0;
- for i := 0 to FTypeData^.ParamCount - 1 do begin
- obj := context.GetByHandle(infos[i].Handle);
- if Assigned(obj) then
- FParamsAll[i] := obj as TRttiMethodTypeParameter
- else begin
- if Assigned(paramtypes[i]) then
- paramtype := paramtypes[i]^
- else
- paramtype := Nil;
- FParamsAll[i] := TRttiMethodTypeParameter.Create(infos[i].Handle, infos[i].Name, infos[i].Flags, paramtype);
- context.AddObject(FParamsAll[i]);
- end;
- if not (pfHidden in infos[i].Flags) then begin
- FParams[visible] := FParamsAll[i];
- Inc(visible);
- end;
- end;
- finally
- context.Free;
- end;
- end;
- if aWithHidden then
- Result := FParamsAll
- else
- Result := FParams;
- end;
- function TRttiMethodType.GetCallingConvention: TCallConv;
- begin
- { the calling convention is located after the parameters, so get the parameters
- which will also initialize the calling convention }
- GetParameters(True);
- Result := FCallConv;
- end;
- function TRttiMethodType.GetReturnType: TRttiType;
- begin
- if FTypeData^.MethodKind in [mkFunction, mkClassFunction] then begin
- { the return type is located after the parameters, so get the parameters
- which will also initialize the return type }
- GetParameters(True);
- Result := FReturnType;
- end else
- Result := Nil;
- end;
- function TRttiMethodType.GetFlags: TFunctionCallFlags;
- begin
- Result := [];
- end;
- function TRttiMethodType.Invoke(const aCallable: TValue; const aArgs: array of TValue): TValue;
- var
- method: PMethod;
- inst: TValue;
- begin
- if aCallable.Kind <> tkMethod then
- raise EInvocationError.CreateFmt(SErrInvokeCallableNotMethod, [Name]);
- method := PMethod(aCallable.GetReferenceToRawData);
- { by using a pointer we can also use this for non-class instance methods }
- TValue.Make(@method^.Data, PTypeInfo(TypeInfo(Pointer)), inst);
- Result := Rtti.Invoke(Name, method^.Code, CallingConvention, False, inst, aArgs, GetParameters(True), ReturnType);
- end;
- { TRttiProcedureType }
- function TRttiProcedureType.GetParameters(aWithHidden: Boolean): specialize TArray<TRttiParameter>;
- var
- visible, i: SizeInt;
- param: PProcedureParam;
- obj: TRttiObject;
- context: TRttiContext;
- begin
- if aWithHidden and (Length(FParamsAll) > 0) then
- Exit(FParamsAll);
- if not aWithHidden and (Length(FParams) > 0) then
- Exit(FParams);
- if FTypeData^.ProcSig.ParamCount = 0 then
- Exit(Nil);
- SetLength(FParamsAll, FTypeData^.ProcSig.ParamCount);
- SetLength(FParams, FTypeData^.ProcSig.ParamCount);
- context := TRttiContext.Create;
- try
- param := AlignTypeData(PProcedureParam(@FTypeData^.ProcSig.ParamCount + SizeOf(FTypeData^.ProcSig.ParamCount)));
- visible := 0;
- for i := 0 to FTypeData^.ProcSig.ParamCount - 1 do begin
- obj := context.GetByHandle(param);
- if Assigned(obj) then
- FParamsAll[i] := obj as TRttiMethodTypeParameter
- else begin
- FParamsAll[i] := TRttiMethodTypeParameter.Create(param, param^.Name, param^.ParamFlags, param^.ParamType);
- context.AddObject(FParamsAll[i]);
- end;
- if not (pfHidden in param^.ParamFlags) then begin
- FParams[visible] := FParamsAll[i];
- Inc(visible);
- end;
- param := PProcedureParam(AlignTypeData(PByte(@param^.Name) + Length(param^.Name) + SizeOf(param^.Name[0])));
- end;
- SetLength(FParams, visible);
- finally
- context.Free;
- end;
- if aWithHidden then
- Result := FParamsAll
- else
- Result := FParams;
- end;
- function TRttiProcedureType.GetCallingConvention: TCallConv;
- begin
- Result := FTypeData^.ProcSig.CC;
- end;
- function TRttiProcedureType.GetReturnType: TRttiType;
- var
- context: TRttiContext;
- begin
- if not Assigned(FTypeData^.ProcSig.ResultTypeRef) then
- Exit(Nil);
- context := TRttiContext.Create;
- try
- Result := context.GetType(FTypeData^.ProcSig.ResultTypeRef^);
- finally
- context.Free;
- end;
- end;
- function TRttiProcedureType.GetFlags: TFunctionCallFlags;
- begin
- Result := [fcfStatic];
- end;
- function TRttiProcedureType.Invoke(const aCallable: TValue; const aArgs: array of TValue): TValue;
- begin
- if aCallable.Kind <> tkProcVar then
- raise EInvocationError.CreateFmt(SErrInvokeCallableNotProc, [Name]);
- Result := Rtti.Invoke(Name, PCodePointer(aCallable.GetReferenceToRawData)^, CallingConvention, True, TValue.Empty, aArgs, GetParameters(True), ReturnType);
- end;
- { TRttiStringType }
- function TRttiStringType.GetStringKind: TRttiStringKind;
- begin
- case TypeKind of
- tkSString : result := skShortString;
- tkLString : result := skAnsiString;
- tkAString : result := skAnsiString;
- tkUString : result := skUnicodeString;
- tkWString : result := skWideString;
- end;
- end;
- { TRttiInterfaceType }
- function TRttiInterfaceType.IntfMethodCount: Word;
- var
- parent: TRttiInterfaceType;
- table: PIntfMethodTable;
- begin
- parent := GetIntfBaseType;
- if Assigned(parent) then
- Result := parent.IntfMethodCount
- else
- Result := 0;
- table := MethodTable;
- if Assigned(table) then
- Inc(Result, table^.Count);
- end;
- function TRttiInterfaceType.GetBaseType: TRttiType;
- begin
- Result := GetIntfBaseType;
- end;
- function TRttiInterfaceType.GetGUIDStr: String;
- begin
- Result := GUIDToString(GUID);
- end;
- function TRttiInterfaceType.GetDeclaredMethods: specialize TArray<TRttiMethod>;
- var
- methtable: PIntfMethodTable;
- count, index: Word;
- method: PIntfMethodEntry;
- context: TRttiContext;
- obj: TRttiObject;
- parent: TRttiInterfaceType;
- parentmethodcount: Word;
- begin
- if Assigned(fDeclaredMethods) then
- Exit(fDeclaredMethods);
- methtable := MethodTable;
- if not Assigned(methtable) then
- Exit(Nil);
- if (methtable^.Count = 0) or (methtable^.RTTICount = $ffff) then
- Exit(Nil);
- parent := GetIntfBaseType;
- if Assigned(parent) then
- parentmethodcount := parent.IntfMethodCount
- else
- parentmethodcount := 0;
- SetLength(fDeclaredMethods, methtable^.Count);
- context := TRttiContext.Create;
- try
- method := methtable^.Method[0];
- count := methtable^.Count;
- while count > 0 do begin
- index := methtable^.Count - count;
- obj := context.GetByHandle(method);
- if Assigned(obj) then
- fDeclaredMethods[index] := obj as TRttiMethod
- else begin
- fDeclaredMethods[index] := TRttiIntfMethod.Create(Self, method, parentmethodcount + index);
- context.AddObject(fDeclaredMethods[index]);
- end;
- method := method^.Next;
- Dec(count);
- end;
- finally
- context.Free;
- end;
- Result := fDeclaredMethods;
- end;
- { TRttiInstanceType }
- function TRttiInstanceType.GetMetaClassType: TClass;
- begin
- result := FTypeData^.ClassType;
- end;
- function TRttiInstanceType.GetDeclaringUnitName: string;
- begin
- result := FTypeData^.UnitName;
- end;
- function TRttiInstanceType.GetBaseType: TRttiType;
- var
- AContext: TRttiContext;
- begin
- AContext := TRttiContext.Create;
- try
- result := AContext.GetType(FTypeData^.ParentInfo);
- finally
- AContext.Free;
- end;
- end;
- function TRttiInstanceType.GetIsInstance: boolean;
- begin
- Result:=True;
- end;
- function TRttiInstanceType.GetTypeSize: integer;
- begin
- Result:=sizeof(TObject);
- end;
- function TRttiInstanceType.GetProperties: specialize TArray<TRttiProperty>;
- var
- TypeInfo: PTypeInfo;
- TypeRttiType: TRttiType;
- TD: PTypeData;
- PPD: PPropData;
- TP: PPropInfo;
- Count: longint;
- obj: TRttiObject;
- begin
- if not FPropertiesResolved then
- begin
- TypeInfo := FTypeInfo;
- // Get the total properties count
- SetLength(FProperties,FTypeData^.PropCount);
- TypeRttiType:= self;
- repeat
- TD:=GetTypeData(TypeInfo);
- // published properties count for this object
- // skip the attribute-info if available
- PPD := PClassData(TD)^.PropertyTable;
- Count:=PPD^.PropCount;
- // Now point TP to first propinfo record.
- TP:=PPropInfo(@PPD^.PropList);
- While Count>0 do
- begin
- // Don't overwrite properties with the same name
- if FProperties[TP^.NameIndex]=nil then begin
- obj := GRttiPool.GetByHandle(TP);
- if Assigned(obj) then
- FProperties[TP^.NameIndex] := obj as TRttiProperty
- else begin
- FProperties[TP^.NameIndex] := TRttiProperty.Create(TypeRttiType, TP);
- GRttiPool.AddObject(FProperties[TP^.NameIndex]);
- end;
- end;
- // Point to TP next propinfo record.
- // Located at Name[Length(Name)+1] !
- TP:=TP^.Next;
- Dec(Count);
- end;
- TypeInfo:=TD^.Parentinfo;
- TypeRttiType:= GRttiPool.GetType(TypeInfo);
- until TypeInfo=nil;
- end;
- result := FProperties;
- end;
- { TRttiMember }
- function TRttiMember.GetVisibility: TMemberVisibility;
- begin
- result := mvPublished;
- end;
- constructor TRttiMember.Create(AParent: TRttiType);
- begin
- inherited Create();
- FParent := AParent;
- end;
- { TRttiProperty }
- function TRttiProperty.GetPropertyType: TRttiType;
- begin
- result := GRttiPool.GetType(FPropInfo^.PropType);
- end;
- function TRttiProperty.GetIsReadable: boolean;
- begin
- result := assigned(FPropInfo^.GetProc);
- end;
- function TRttiProperty.GetIsWritable: boolean;
- begin
- result := assigned(FPropInfo^.SetProc);
- end;
- function TRttiProperty.GetVisibility: TMemberVisibility;
- begin
- // At this moment only pulished rtti-property-info is supported by fpc
- result := mvPublished;
- end;
- function TRttiProperty.GetName: string;
- begin
- Result:=FPropInfo^.Name;
- end;
- function TRttiProperty.GetHandle: Pointer;
- begin
- Result := FPropInfo;
- end;
- constructor TRttiProperty.Create(AParent: TRttiType; APropInfo: PPropInfo);
- begin
- inherited Create(AParent);
- FPropInfo := APropInfo;
- end;
- function TRttiProperty.GetValue(Instance: pointer): TValue;
- procedure ValueFromBool(value: Int64);
- var
- b8: Boolean;
- b16: Boolean16;
- b32: Boolean32;
- bb: ByteBool;
- bw: WordBool;
- bl: LongBool;
- td: PTypeData;
- p: Pointer;
- begin
- td := GetTypeData(FPropInfo^.PropType);
- case td^.OrdType of
- otUByte:
- begin
- b8 := Boolean(value);
- p := @b8;
- end;
- otUWord:
- begin
- b16 := Boolean16(value);
- p := @b16;
- end;
- otULong:
- begin
- b32 := Boolean32(value);
- p := @b32;
- end;
- otSByte:
- begin
- bb := ByteBool(value);
- p := @bb;
- end;
- otSWord:
- begin
- bw := WordBool(value);
- p := @bw;
- end;
- otSLong:
- begin
- bl := LongBool(value);
- p := @bl;
- end;
- end;
- TValue.Make(p, FPropInfo^.PropType, result);
- end;
- procedure ValueFromInt(value: Int64);
- var
- i8: UInt8;
- i16: UInt16;
- i32: UInt32;
- td: PTypeData;
- p: Pointer;
- begin
- td := GetTypeData(FPropInfo^.PropType);
- case td^.OrdType of
- otUByte,
- otSByte:
- begin
- i8 := value;
- p := @i8;
- end;
- otUWord,
- otSWord:
- begin
- i16 := value;
- p := @i16;
- end;
- otULong,
- otSLong:
- begin
- i32 := value;
- p := @i32;
- end;
- end;
- TValue.Make(p, FPropInfo^.PropType, result);
- end;
- var
- s: string;
- ss: ShortString;
- i: int64;
- c: Char;
- wc: WideChar;
- begin
- case FPropinfo^.PropType^.Kind of
- tkSString:
- begin
- ss := GetStrProp(TObject(Instance), FPropInfo);
- TValue.Make(@ss, FPropInfo^.PropType, result);
- end;
- tkAString:
- begin
- s := GetStrProp(TObject(Instance), FPropInfo);
- TValue.Make(@s, FPropInfo^.PropType, result);
- end;
- tkBool:
- begin
- i := GetOrdProp(TObject(Instance), FPropInfo);
- ValueFromBool(i);
- end;
- tkInteger:
- begin
- i := GetOrdProp(TObject(Instance), FPropInfo);
- ValueFromInt(i);
- end;
- tkChar:
- begin
- c := AnsiChar(GetOrdProp(TObject(Instance), FPropInfo));
- TValue.Make(@c, FPropInfo^.PropType, result);
- end;
- tkWChar:
- begin
- wc := WideChar(GetOrdProp(TObject(Instance), FPropInfo));
- TValue.Make(@wc, FPropInfo^.PropType, result);
- end;
- tkInt64,
- tkQWord:
- begin
- i := GetOrdProp(TObject(Instance), FPropInfo);
- TValue.Make(@i, FPropInfo^.PropType, result);
- end;
- else
- result := TValue.Empty;
- end
- end;
- procedure TRttiProperty.SetValue(Instance: pointer; const AValue: TValue);
- begin
- case FPropinfo^.PropType^.Kind of
- tkSString,
- tkAString:
- SetStrProp(TObject(Instance), FPropInfo, AValue.AsString);
- tkInteger,
- tkInt64,
- tkQWord,
- tkChar,
- tkBool,
- tkWChar:
- SetOrdProp(TObject(Instance), FPropInfo, AValue.AsOrdinal);
- else
- raise exception.createFmt(SErrUnableToSetValueForType, [PropertyType.Name]);
- end
- end;
- function TRttiType.GetIsInstance: boolean;
- begin
- result := false;
- end;
- function TRttiType.GetIsManaged: boolean;
- begin
- result := Rtti.IsManaged(FTypeInfo);
- end;
- function TRttiType.GetIsOrdinal: boolean;
- begin
- result := false;
- end;
- function TRttiType.GetIsRecord: boolean;
- begin
- result := false;
- end;
- function TRttiType.GetIsSet: boolean;
- begin
- result := false;
- end;
- function TRttiType.GetAsInstance: TRttiInstanceType;
- begin
- // This is a ridicoulous design, but Delphi-compatible...
- result := TRttiInstanceType(self);
- end;
- function TRttiType.GetBaseType: TRttiType;
- begin
- result := nil;
- end;
- function TRttiType.GetTypeKind: TTypeKind;
- begin
- result := FTypeInfo^.Kind;
- end;
- function TRttiType.GetTypeSize: integer;
- begin
- result := -1;
- end;
- function TRttiType.GetName: string;
- begin
- Result:=FTypeInfo^.Name;
- end;
- function TRttiType.GetHandle: Pointer;
- begin
- Result := FTypeInfo;
- end;
- constructor TRttiType.Create(ATypeInfo: PTypeInfo);
- begin
- inherited Create();
- FTypeInfo:=ATypeInfo;
- if assigned(FTypeInfo) then
- FTypeData:=GetTypeData(ATypeInfo);
- end;
- function TRttiType.GetProperties: specialize TArray<TRttiProperty>;
- begin
- Result := Nil;
- end;
- function TRttiType.GetProperty(const AName: string): TRttiProperty;
- var
- FPropList: specialize TArray<TRttiProperty>;
- i: Integer;
- begin
- result := nil;
- FPropList := GetProperties;
- for i := 0 to length(FPropList)-1 do
- if sametext(FPropList[i].Name,AName) then
- begin
- result := FPropList[i];
- break;
- end;
- end;
- function TRttiType.GetMethods: specialize TArray<TRttiMethod>;
- var
- parentmethods, selfmethods: specialize TArray<TRttiMethod>;
- parent: TRttiType;
- begin
- if Assigned(fMethods) then
- Exit(fMethods);
- selfmethods := GetDeclaredMethods;
- parent := GetBaseType;
- if Assigned(parent) then begin
- parentmethods := parent.GetMethods;
- end;
- fMethods := Concat(parentmethods, selfmethods);
- Result := fMethods;
- end;
- function TRttiType.GetMethod(const aName: String): TRttiMethod;
- var
- methods: specialize TArray<TRttiMethod>;
- method: TRttiMethod;
- begin
- methods := GetMethods;
- for method in methods do
- if SameText(method.Name, AName) then
- Exit(method);
- Result := Nil;
- end;
- function TRttiType.GetDeclaredMethods: specialize TArray<TRttiMethod>;
- begin
- Result := Nil;
- end;
- { TRttiNamedObject }
- function TRttiNamedObject.GetName: string;
- begin
- result := '';
- end;
- { TRttiContext }
- class function TRttiContext.Create: TRttiContext;
- begin
- result.FContextToken := nil;
- end;
- procedure TRttiContext.Free;
- begin
- FContextToken := nil;
- end;
- function TRttiContext.GetByHandle(AHandle: Pointer): TRttiObject;
- begin
- if not Assigned(FContextToken) then
- FContextToken := TPoolToken.Create;
- Result := (FContextToken as IPooltoken).RttiPool.GetByHandle(AHandle);
- end;
- procedure TRttiContext.AddObject(AObject: TRttiObject);
- begin
- if not Assigned(FContextToken) then
- FContextToken := TPoolToken.Create;
- (FContextToken as IPooltoken).RttiPool.AddObject(AObject);
- end;
- function TRttiContext.GetType(ATypeInfo: PTypeInfo): TRttiType;
- begin
- if not assigned(FContextToken) then
- FContextToken := TPoolToken.Create;
- result := (FContextToken as IPooltoken).RttiPool.GetType(ATypeInfo);
- end;
- function TRttiContext.GetType(AClass: TClass): TRttiType;
- begin
- if assigned(AClass) then
- result := GetType(PTypeInfo(AClass.ClassInfo))
- else
- result := nil;
- end;
- {function TRttiContext.GetTypes: specialize TArray<TRttiType>;
- begin
- if not assigned(FContextToken) then
- FContextToken := TPoolToken.Create;
- result := (FContextToken as IPooltoken).RttiPool.GetTypes;
- end;}
- {$ifndef InLazIDE}
- {$if defined(CPUI386) or (defined(CPUX86_64) and defined(WIN64))}
- {$I invoke.inc}
- {$endif}
- {$endif}
- initialization
- PoolRefCount := 0;
- InitDefaultFunctionCallManager;
- {$ifdef SYSTEM_HAS_INVOKE}
- InitSystemFunctionCallManager;
- {$endif}
- end.
|