123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636 |
- {
- This file is part of the Free Pascal run time library.
- Copyright (c) 1999-2000 by Florian Klaempfl
- member of the Free Pascal development team
- 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.
- **********************************************************************}
- { This unit provides the same Functionality as the TypInfo Unit }
- { of Delphi }
- unit TypInfo;
- interface
- {$MODE objfpc}
- {$MODESWITCH AdvancedRecords}
- {$inline on}
- {$macro on}
- {$h+}
- uses SysUtils;
- // temporary types:
- type
- {$MINENUMSIZE 1 this saves a lot of memory }
- {$ifdef FPC_RTTI_PACKSET1}
- { for Delphi compatibility }
- {$packset 1}
- {$endif}
- { this alias and the following constant aliases are for backwards
- compatibility before TTypeKind was moved to System unit }
- TTypeKind = System.TTypeKind;
- const
- tkUnknown = System.tkUnknown;
- tkInteger = System.tkInteger;
- tkChar = System.tkChar;
- tkEnumeration = System.tkEnumeration;
- tkFloat = System.tkFloat;
- tkSet = System.tkSet;
- tkMethod = System.tkMethod;
- tkSString = System.tkSString;
- tkLString = System.tkLString;
- tkAString = System.tkAString;
- tkWString = System.tkWString;
- tkVariant = System.tkVariant;
- tkArray = System.tkArray;
- tkRecord = System.tkRecord;
- tkInterface = System.tkInterface;
- tkClass = System.tkClass;
- tkObject = System.tkObject;
- tkWChar = System.tkWChar;
- tkBool = System.tkBool;
- tkInt64 = System.tkInt64;
- tkQWord = System.tkQWord;
- tkDynArray = System.tkDynArray;
- tkInterfaceRaw = System.tkInterfaceRaw;
- tkProcVar = System.tkProcVar;
- tkUString = System.tkUString;
- tkUChar = System.tkUChar;
- tkHelper = System.tkHelper;
- tkFile = System.tkFile;
- tkClassRef = System.tkClassRef;
- tkPointer = System.tkPointer;
- type
- TOrdType = (otSByte,otUByte,otSWord,otUWord,otSLong,otULong,otSQWord,otUQWord);
- {$ifndef FPUNONE}
- TFloatType = (ftSingle,ftDouble,ftExtended,ftComp,ftCurr);
- {$endif}
- TMethodKind = (mkProcedure,mkFunction,mkConstructor,mkDestructor,
- mkClassProcedure,mkClassFunction,mkClassConstructor,
- mkClassDestructor,mkOperatorOverload);
- TParamFlag = (pfVar,pfConst,pfArray,pfAddress,pfReference,pfOut,pfConstRef
- {$ifndef VER3_0},pfHidden,pfHigh,pfSelf,pfVmt,pfResult{$endif VER3_0}
- );
- TParamFlags = set of TParamFlag;
- TIntfFlag = (ifHasGuid,ifDispInterface,ifDispatch,ifHasStrGUID);
- TIntfFlags = set of TIntfFlag;
- TIntfFlagsBase = set of TIntfFlag;
- // don't rely on integer values of TCallConv since it includes all conventions
- // which both Delphi and FPC support. In the future Delphi can support more and
- // FPC's own conventions will be shifted/reordered accordingly
- TCallConv = (ccReg, ccCdecl, ccPascal, ccStdCall, ccSafeCall,
- ccCppdecl, ccFar16, ccOldFPCCall, ccInternProc,
- ccSysCall, ccSoftFloat, ccMWPascal);
- {$push}
- {$scopedenums on}
- TSubRegister = (
- None,
- Lo,
- Hi,
- Word,
- DWord,
- QWord,
- FloatSingle,
- FloatDouble,
- FloatQuad,
- MultiMediaSingle,
- MultiMediaDouble,
- MultiMediaWhole,
- MultiMediaX,
- MultiMediaY
- );
- TRegisterType = (
- Invalid,
- Int,
- FP,
- MMX,
- MultiMedia,
- Special,
- Address
- );
- {$pop}
- {$MINENUMSIZE DEFAULT}
- const
- ptField = 0;
- ptStatic = 1;
- ptVirtual = 2;
- ptConst = 3;
- type
- TTypeKinds = set of TTypeKind;
- ShortStringBase = string[255];
- PParameterLocation = ^TParameterLocation;
- TParameterLocation =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- LocType: Byte;
- function GetRegType: TRegisterType; inline;
- function GetReference: Boolean; inline;
- function GetShiftVal: Int8; inline;
- public
- RegSub: TSubRegister;
- RegNumber: Word;
- { Stack offset if Reference, ShiftVal if not }
- Offset: SizeInt;
- { if Reference then the register is the index register otherwise the
- register in wihch (part of) the parameter resides }
- property Reference: Boolean read GetReference;
- property RegType: TRegisterType read GetRegType;
- { if Reference, otherwise 0 }
- property ShiftVal: Int8 read GetShiftVal;
- end;
- PParameterLocations = ^TParameterLocations;
- TParameterLocations =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetLocation(aIndex: Byte): PParameterLocation; inline;
- function GetTail: Pointer; inline;
- public
- Count: Byte;
- property Location[Index: Byte]: PParameterLocation read GetLocation;
- property Tail: Pointer read GetTail;
- end;
- PVmtFieldClassTab = ^TVmtFieldClassTab;
- TVmtFieldClassTab =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- Count: Word;
- ClassRef: array[0..0] of PClass;
- end;
- PVmtFieldEntry = ^TVmtFieldEntry;
- TVmtFieldEntry =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetNext: PVmtFieldEntry; inline;
- function GetTail: Pointer; inline;
- public
- FieldOffset: PtrUInt;
- TypeIndex: Word;
- Name: ShortString;
- property Tail: Pointer read GetTail;
- property Next: PVmtFieldEntry read GetNext;
- end;
- PVmtFieldTable = ^TVmtFieldTable;
- TVmtFieldTable =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetField(aIndex: Word): PVmtFieldEntry;
- public
- Count: Word;
- ClassTab: PVmtFieldClassTab;
- { should be array[Word] of TFieldInfo; but
- Elements have variant size! force at least proper alignment }
- Fields: array[0..0] of TVmtFieldEntry;
- property Field[aIndex: Word]: PVmtFieldEntry read GetField;
- end;
- {$PACKRECORDS 1}
- TTypeInfo = record
- Kind : TTypeKind;
- Name : ShortString;
- // here the type data follows as TTypeData record
- end;
- PTypeInfo = ^TTypeInfo;
- PPTypeInfo = ^PTypeInfo;
- PPropData = ^TPropData;
- { Note: these are only for backwards compatibility. New type references should
- only use PPTypeInfo directly! }
- {$ifdef ver3_0}
- {$define TypeInfoPtr := PTypeInfo}
- {$else}
- {$define TypeInfoPtr := PPTypeInfo}
- {$endif}
- {$PACKRECORDS C}
- {$if not defined(VER3_0) and not defined(VER3_2)}
- {$define PROVIDE_ATTR_TABLE}
- {$endif}
- TAttributeProc = function : TCustomAttribute;
- TAttributeEntry =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif}
- record
- AttrType: PPTypeInfo;
- AttrCtor: CodePointer;
- AttrProc: TAttributeProc;
- ArgLen: Word;
- ArgData: Pointer;
- end;
- {$ifdef CPU16}
- TAttributeEntryList = array[0..(High(SizeUInt) div SizeOf(TAttributeEntry))-1] of TAttributeEntry;
- {$else CPU16}
- TAttributeEntryList = array[0..$ffff] of TAttributeEntry;
- {$endif CPU16}
- TAttributeTable =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif}
- record
- AttributeCount: word;
- AttributesList: TAttributeEntryList;
- end;
- PAttributeTable = ^TAttributeTable;
- // members of TTypeData
- TArrayTypeData =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetElType: PTypeInfo; inline;
- function GetDims(aIndex: Byte): PTypeInfo; inline;
- public
- property ElType: PTypeInfo read GetElType;
- property Dims[Index: Byte]: PTypeInfo read GetDims;
- public
- Size: SizeInt;
- ElCount: SizeInt;
- ElTypeRef: TypeInfoPtr;
- DimCount: Byte;
- DimsRef: array[0..255] of TypeInfoPtr;
- end;
- PManagedField = ^TManagedField;
- TManagedField =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetTypeRef: PTypeInfo; inline;
- public
- property TypeRef: PTypeInfo read GetTypeRef;
- public
- TypeRefRef: TypeInfoPtr;
- FldOffset: SizeInt;
- end;
- PInitManagedField = ^TInitManagedField;
- TInitManagedField = TManagedField;
- PProcedureParam = ^TProcedureParam;
- TProcedureParam =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetParamType: PTypeInfo; inline;
- function GetFlags: Byte; inline;
- public
- property ParamType: PTypeInfo read GetParamType;
- property Flags: Byte read GetFlags;
- public
- ParamFlags: TParamFlags;
- ParamTypeRef: TypeInfoPtr;
- Name: ShortString;
- end;
- TProcedureSignature =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetResultType: PTypeInfo; inline;
- public
- property ResultType: PTypeInfo read GetResultType;
- public
- Flags: Byte;
- CC: TCallConv;
- ResultTypeRef: TypeInfoPtr;
- ParamCount: Byte;
- {Params: array[0..ParamCount - 1] of TProcedureParam;}
- function GetParam(ParamIndex: Integer): PProcedureParam;
- end;
- PVmtMethodParam = ^TVmtMethodParam;
- TVmtMethodParam =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetTail: Pointer; inline;
- function GetNext: PVmtMethodParam; inline;
- function GetName: ShortString; inline;
- public
- ParamType: PPTypeInfo;
- Flags: TParamFlags;
- NamePtr: PShortString;
- ParaLocs: PParameterLocations;
- property Name: ShortString read GetName;
- property Tail: Pointer read GetTail;
- property Next: PVmtMethodParam read GetNext;
- end;
- PIntfMethodEntry = ^TIntfMethodEntry;
- TIntfMethodEntry =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetParam(Index: Word): PVmtMethodParam;
- function GetResultLocs: PParameterLocations; inline;
- function GetTail: Pointer; inline;
- function GetNext: PIntfMethodEntry; inline;
- function GetName: ShortString; inline;
- public
- ResultType: PPTypeInfo;
- CC: TCallConv;
- Kind: TMethodKind;
- ParamCount: Word;
- StackSize: SizeInt;
- NamePtr: PShortString;
- { Params: array[0..ParamCount - 1] of TVmtMethodParam }
- { ResultLocs: PParameterLocations (if ResultType != Nil) }
- property Name: ShortString read GetName;
- property Param[Index: Word]: PVmtMethodParam read GetParam;
- property ResultLocs: PParameterLocations read GetResultLocs;
- property Tail: Pointer read GetTail;
- property Next: PIntfMethodEntry read GetNext;
- end;
- PIntfMethodTable = ^TIntfMethodTable;
- TIntfMethodTable =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetMethod(Index: Word): PIntfMethodEntry;
- public
- Count: Word;
- { $FFFF if there is no further info, or the value of Count }
- RTTICount: Word;
- { Entry: array[0..Count - 1] of TIntfMethodEntry }
- property Method[Index: Word]: PIntfMethodEntry read GetMethod;
- end;
- PVmtMethodEntry = ^TVmtMethodEntry;
- TVmtMethodEntry =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- Name: PShortString;
- CodeAddress: CodePointer;
- end;
- PVmtMethodTable = ^TVmtMethodTable;
- TVmtMethodTable =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetEntry(Index: LongWord): PVmtMethodEntry; inline;
- public
- Count: LongWord;
- property Entry[Index: LongWord]: PVmtMethodEntry read GetEntry;
- private
- Entries: array[0..0] of TVmtMethodEntry;
- end;
- TRecOpOffsetEntry =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- ManagementOperator: CodePointer;
- FieldOffset: SizeUInt;
- end;
- TRecOpOffsetTable =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- Count: LongWord;
- Entries: array[0..0] of TRecOpOffsetEntry;
- end;
- PRecOpOffsetTable = ^TRecOpOffsetTable;
- PRecInitData = ^TRecInitData;
- TRecInitData =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- {$ifdef PROVIDE_ATTR_TABLE}
- AttributeTable : PAttributeTable;
- {$endif}
- case TTypeKind of
- tkRecord: (
- Terminator: Pointer;
- Size: Longint;
- {$ifndef VER3_0}
- InitOffsetOp: PRecOpOffsetTable;
- ManagementOp: Pointer;
- {$endif}
- ManagedFieldCount: Longint;
- { ManagedFields: array[0..ManagedFieldCount - 1] of TInitManagedField ; }
- );
- { include for proper alignment }
- tkInt64: (
- dummy : Int64
- );
- end;
- PInterfaceData = ^TInterfaceData;
- TInterfaceData =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetUnitName: ShortString; inline;
- function GetPropertyTable: PPropData; inline;
- function GetMethodTable: PIntfMethodTable; inline;
- public
- property UnitName: ShortString read GetUnitName;
- property PropertyTable: PPropData read GetPropertyTable;
- property MethodTable: PIntfMethodTable read GetMethodTable;
- public
- {$ifdef PROVIDE_ATTR_TABLE}
- AttributeTable : PAttributeTable;
- {$endif}
- case TTypeKind of
- tkInterface: (
- Parent: PPTypeInfo;
- Flags: TIntfFlagsBase;
- GUID: TGUID;
- UnitNameField: ShortString;
- { PropertyTable: TPropData }
- { MethodTable: TIntfMethodTable }
- );
- { include for proper alignment }
- tkInt64: (
- dummy : Int64
- );
- {$ifndef FPUNONE}
- tkFloat:
- (FloatType : TFloatType
- );
- {$endif}
- end;
- PInterfaceRawData = ^TInterfaceRawData;
- TInterfaceRawData =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetUnitName: ShortString; inline;
- function GetIIDStr: ShortString; inline;
- function GetPropertyTable: PPropData; inline;
- function GetMethodTable: PIntfMethodTable; inline;
- public
- property UnitName: ShortString read GetUnitName;
- property IIDStr: ShortString read GetIIDStr;
- property PropertyTable: PPropData read GetPropertyTable;
- property MethodTable: PIntfMethodTable read GetMethodTable;
- public
- {$ifdef PROVIDE_ATTR_TABLE}
- AttributeTable : PAttributeTable;
- {$endif}
- case TTypeKind of
- tkInterface: (
- Parent: PPTypeInfo;
- Flags : TIntfFlagsBase;
- IID: TGUID;
- UnitNameField: ShortString;
- { IIDStr: ShortString; }
- { PropertyTable: TPropData }
- );
- { include for proper alignment }
- tkInt64: (
- dummy : Int64
- );
- {$ifndef FPUNONE}
- tkFloat:
- (FloatType : TFloatType
- );
- {$endif}
- end;
- PClassData = ^TClassData;
- TClassData =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetUnitName: ShortString; inline;
- function GetPropertyTable: PPropData; inline;
- public
- property UnitName: ShortString read GetUnitName;
- property PropertyTable: PPropData read GetPropertyTable;
- public
- {$ifdef PROVIDE_ATTR_TABLE}
- AttributeTable : PAttributeTable;
- {$endif}
- case TTypeKind of
- tkClass: (
- ClassType : TClass;
- Parent : PPTypeInfo;
- PropCount : SmallInt;
- UnitNameField : ShortString;
- { PropertyTable: TPropData }
- );
- { include for proper alignment }
- tkInt64: (
- dummy: Int64;
- );
- {$ifndef FPUNONE}
- tkFloat: (
- FloatType : TFloatType
- );
- {$endif}
- end;
- PTypeData = ^TTypeData;
- TTypeData =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetBaseType: PTypeInfo; inline;
- function GetCompType: PTypeInfo; inline;
- function GetParentInfo: PTypeInfo; inline;
- {$ifndef VER3_0}
- function GetRecInitData: PRecInitData; inline;
- {$endif}
- function GetHelperParent: PTypeInfo; inline;
- function GetExtendedInfo: PTypeInfo; inline;
- function GetIntfParent: PTypeInfo; inline;
- function GetRawIntfParent: PTypeInfo; inline;
- function GetIIDStr: ShortString; inline;
- function GetElType: PTypeInfo; inline;
- function GetElType2: PTypeInfo; inline;
- function GetInstanceType: PTypeInfo; inline;
- function GetRefType: PTypeInfo; inline;
- public
- { tkEnumeration }
- property BaseType: PTypeInfo read GetBaseType;
- { tkSet }
- property CompType: PTypeInfo read GetCompType;
- { tkClass }
- property ParentInfo: PTypeInfo read GetParentInfo;
- { tkRecord }
- {$ifndef VER3_0}
- property RecInitData: PRecInitData read GetRecInitData;
- {$endif}
- { tkHelper }
- property HelperParent: PTypeInfo read GetHelperParent;
- property ExtendedInfo: PTypeInfo read GetExtendedInfo;
- { tkInterface }
- property IntfParent: PTypeInfo read GetIntfParent;
- { tkInterfaceRaw }
- property RawIntfParent: PTypeInfo read GetRawIntfParent;
- property IIDStr: ShortString read GetIIDStr;
- { tkDynArray }
- property ElType2: PTypeInfo read GetElType2;
- property ElType: PTypeInfo read GetElType;
- { tkClassRef }
- property InstanceType: PTypeInfo read GetInstanceType;
- { tkPointer }
- property RefType: PTypeInfo read GetRefType;
- public
- {$ifdef PROVIDE_ATTR_TABLE}
- AttributeTable : PAttributeTable;
- {$endif}
- case TTypeKind of
- tkUnKnown,tkLString,tkWString,tkVariant,tkUString:
- ();
- tkAString:
- (CodePage: Word);
- {$ifndef VER3_0}
- tkInt64,tkQWord,
- {$endif VER3_0}
- tkInteger,tkChar,tkEnumeration,tkBool,tkWChar,tkSet:
- (OrdType : TOrdType;
- case TTypeKind of
- tkInteger,tkChar,tkEnumeration,tkBool,tkWChar : (
- MinValue,MaxValue : Longint;
- case TTypeKind of
- tkEnumeration:
- (
- BaseTypeRef : TypeInfoPtr;
- NameList : ShortString;
- {EnumUnitName: ShortString;})
- );
- {$ifndef VER3_0}
- {tkBool with OrdType=otSQWord }
- tkInt64:
- (MinInt64Value, MaxInt64Value: Int64);
- {tkBool with OrdType=otUQWord }
- tkQWord:
- (MinQWordValue, MaxQWordValue: QWord);
- {$endif VER3_0}
- tkSet:
- (
- {$ifndef VER3_0}
- SetSize : SizeInt;
- {$endif VER3_0}
- CompTypeRef : TypeInfoPtr
- )
- );
- {$ifndef FPUNONE}
- tkFloat:
- (FloatType : TFloatType);
- {$endif}
- tkSString:
- (MaxLength : Byte);
- tkClass:
- (ClassType : TClass;
- ParentInfoRef : TypeInfoPtr;
- PropCount : SmallInt;
- UnitName : ShortString;
- // here the properties follow as array of TPropInfo
- );
- tkRecord:
- (
- {$ifndef VER3_0}
- RecInitInfo: Pointer; { points to TTypeInfo followed by init table }
- {$endif VER3_0}
- RecSize: Longint;
- case Boolean of
- False: (ManagedFldCount: Longint deprecated 'Use RecInitData^.ManagedFieldCount or TotalFieldCount depending on your use case');
- True: (TotalFieldCount: Longint);
- {ManagedFields: array[1..TotalFieldCount] of TManagedField}
- );
- tkHelper:
- (HelperParentRef : TypeInfoPtr;
- ExtendedInfoRef : TypeInfoPtr;
- HelperProps : SmallInt;
- HelperUnit : ShortString
- // here the properties follow as array of TPropInfo
- );
- tkMethod:
- (MethodKind : TMethodKind;
- ParamCount : Byte;
- case Boolean of
- False: (ParamList : array[0..1023] of Char);
- { dummy for proper alignment }
- True: (ParamListDummy : Word);
- {in reality ParamList is a array[1..ParamCount] of:
- record
- Flags : TParamFlags;
- ParamName : ShortString;
- TypeName : ShortString;
- end;
- followed by
- ResultType : ShortString // for mkFunction, mkClassFunction only
- ResultTypeRef : PPTypeInfo; // for mkFunction, mkClassFunction only
- CC : TCallConv;
- ParamTypeRefs : array[1..ParamCount] of PPTypeInfo;}
- );
- tkProcVar:
- (ProcSig: TProcedureSignature);
- {$ifdef VER3_0}
- tkInt64:
- (MinInt64Value, MaxInt64Value: Int64);
- tkQWord:
- (MinQWordValue, MaxQWordValue: QWord);
- {$endif VER3_0}
- tkInterface:
- (
- IntfParentRef: TypeInfoPtr;
- IntfFlags : TIntfFlagsBase;
- GUID: TGUID;
- IntfUnit: ShortString;
- { PropertyTable: TPropData }
- { MethodTable: TIntfMethodTable }
- );
- tkInterfaceRaw:
- (
- RawIntfParentRef: TypeInfoPtr;
- RawIntfFlags : TIntfFlagsBase;
- IID: TGUID;
- RawIntfUnit: ShortString;
- { IIDStr: ShortString; }
- { PropertyTable: TPropData }
- );
- tkArray:
- (ArrayData: TArrayTypeData);
- tkDynArray:
- (
- elSize : PtrUInt;
- elType2Ref : TypeInfoPtr;
- varType : Longint;
- elTypeRef : TypeInfoPtr;
- DynUnitName: ShortStringBase
- );
- tkClassRef:
- (InstanceTypeRef: TypeInfoPtr);
- tkPointer:
- (RefTypeRef: TypeInfoPtr);
- end;
- PPropInfo = ^TPropInfo;
- TPropData =
- {$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
- packed
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- record
- private
- function GetProp(Index: Word): PPropInfo;
- function GetTail: Pointer; inline;
- public
- PropCount : Word;
- PropList : record _alignmentdummy : ptrint; end;
- property Prop[Index: Word]: PPropInfo read GetProp;
- property Tail: Pointer read GetTail;
- end;
- {$PACKRECORDS 1}
- TPropInfo = packed record
- private
- function GetPropType: PTypeInfo; inline;
- function GetTail: Pointer; inline;
- function GetNext: PPropInfo; inline;
- public
- PropTypeRef : TypeInfoPtr;
- GetProc : CodePointer;
- SetProc : CodePointer;
- StoredProc : CodePointer;
- Index : Longint;
- Default : Longint;
- NameIndex : SmallInt;
- // contains the type of the Get/Set/Storedproc, see also ptxxx
- // bit 0..1 GetProc
- // 2..3 SetProc
- // 4..5 StoredProc
- // 6 : true, constant index property
- PropProcs : Byte;
- {$ifdef PROVIDE_ATTR_TABLE}
- AttributeTable : PAttributeTable;
- {$endif}
- Name : ShortString;
- property PropType: PTypeInfo read GetPropType;
- property Tail: Pointer read GetTail;
- property Next: PPropInfo read GetNext;
- end;
- TProcInfoProc = Procedure(PropInfo : PPropInfo) of object;
- PPropList = ^TPropList;
- TPropList = array[0..{$ifdef cpu16}(32768 div sizeof(PPropInfo))-2{$else}65535{$endif}] of PPropInfo;
- const
- tkString = tkSString;
- tkProcedure = tkProcVar; // for compatibility with Delphi
- tkAny = [Low(TTypeKind)..High(TTypeKind)];
- tkMethods = [tkMethod];
- tkProperties = tkAny-tkMethods-[tkUnknown];
- // general property handling
- Function GetTypeData(TypeInfo : PTypeInfo) : PTypeData;
- Function AlignTypeData(p : Pointer) : Pointer; inline;
- Function AlignTParamFlags(p : Pointer) : Pointer; inline;
- Function AlignPTypeInfo(p : Pointer) : Pointer; inline;
- Function GetPropInfo(TypeInfo: PTypeInfo;const PropName: string): PPropInfo;
- Function GetPropInfo(TypeInfo: PTypeInfo;const PropName: string; AKinds: TTypeKinds): PPropInfo;
- Function GetPropInfo(Instance: TObject; const PropName: string): PPropInfo;
- Function GetPropInfo(Instance: TObject; const PropName: string; AKinds: TTypeKinds): PPropInfo;
- Function GetPropInfo(AClass: TClass; const PropName: string): PPropInfo;
- Function GetPropInfo(AClass: TClass; const PropName: string; AKinds: TTypeKinds): PPropInfo;
- Function FindPropInfo(Instance: TObject; const PropName: string): PPropInfo;
- Function FindPropInfo(Instance: TObject; const PropName: string; AKinds: TTypeKinds): PPropInfo;
- Function FindPropInfo(AClass: TClass; const PropName: string): PPropInfo;
- Function FindPropInfo(AClass: TClass; const PropName: string; AKinds: TTypeKinds): PPropInfo;
- Procedure GetPropInfos(TypeInfo: PTypeInfo; PropList: PPropList);
- Function GetPropList(TypeInfo: PTypeInfo; TypeKinds: TTypeKinds; PropList: PPropList; Sorted: boolean = true): longint;
- Function GetPropList(TypeInfo: PTypeInfo; out PropList: PPropList): SizeInt;
- function GetPropList(AClass: TClass; out PropList: PPropList): Integer;
- function GetPropList(Instance: TObject; out PropList: PPropList): Integer;
- // Property information routines.
- Function IsReadableProp(PropInfo : PPropInfo) : Boolean;
- Function IsReadableProp(Instance: TObject; const PropName: string): Boolean;
- Function IsReadableProp(AClass: TClass; const PropName: string): Boolean;
- Function IsWriteableProp(PropInfo : PPropInfo) : Boolean;
- Function IsWriteableProp(Instance: TObject; const PropName: string): Boolean;
- Function IsWriteableProp(AClass: TClass; const PropName: string): Boolean;
- Function IsStoredProp(Instance: TObject;PropInfo : PPropInfo) : Boolean;
- Function IsStoredProp(Instance: TObject; const PropName: string): Boolean;
- Function IsPublishedProp(Instance: TObject; const PropName: string): Boolean;
- Function IsPublishedProp(AClass: TClass; const PropName: string): Boolean;
- Function PropType(Instance: TObject; const PropName: string): TTypeKind;
- Function PropType(AClass: TClass; const PropName: string): TTypeKind;
- Function PropIsType(Instance: TObject; const PropName: string; TypeKind: TTypeKind): Boolean;
- Function PropIsType(AClass: TClass; const PropName: string; TypeKind: TTypeKind): Boolean;
- // subroutines to read/write properties
- Function GetOrdProp(Instance: TObject; PropInfo : PPropInfo) : Int64;
- Function GetOrdProp(Instance: TObject; const PropName: string): Int64;
- Procedure SetOrdProp(Instance: TObject; PropInfo : PPropInfo; Value : Int64);
- Procedure SetOrdProp(Instance: TObject; const PropName: string; Value: Int64);
- Function GetEnumProp(Instance: TObject; const PropName: string): string;
- Function GetEnumProp(Instance: TObject; const PropInfo: PPropInfo): string;
- Procedure SetEnumProp(Instance: TObject; const PropName: string;const Value: string);
- Procedure SetEnumProp(Instance: TObject; const PropInfo: PPropInfo;const Value: string);
- Function GetSetProp(Instance: TObject; const PropName: string): string;
- Function GetSetProp(Instance: TObject; const PropName: string; Brackets: Boolean): string;
- Function GetSetProp(Instance: TObject; const PropInfo: PPropInfo; Brackets: Boolean): string;
- Procedure SetSetProp(Instance: TObject; const PropName: string; const Value: string);
- Procedure SetSetProp(Instance: TObject; const PropInfo: PPropInfo; const Value: string);
- Function GetStrProp(Instance: TObject; PropInfo : PPropInfo) : Ansistring;
- Function GetStrProp(Instance: TObject; const PropName: string): string;
- Procedure SetStrProp(Instance: TObject; const PropName: string; const Value: AnsiString);
- Procedure SetStrProp(Instance: TObject; PropInfo : PPropInfo; const Value : Ansistring);
- Function GetWideStrProp(Instance: TObject; PropInfo: PPropInfo): WideString;
- Function GetWideStrProp(Instance: TObject; const PropName: string): WideString;
- Procedure SetWideStrProp(Instance: TObject; const PropName: string; const Value: WideString);
- Procedure SetWideStrProp(Instance: TObject; PropInfo: PPropInfo; const Value: WideString);
- Function GetUnicodeStrProp(Instance: TObject; PropInfo: PPropInfo): UnicodeString;
- Function GetUnicodeStrProp(Instance: TObject; const PropName: string): UnicodeString;
- Procedure SetUnicodeStrProp(Instance: TObject; const PropName: string; const Value: UnicodeString);
- Procedure SetUnicodeStrProp(Instance: TObject; PropInfo: PPropInfo; const Value: UnicodeString);
- Function GetRawbyteStrProp(Instance: TObject; PropInfo: PPropInfo): RawByteString;
- Function GetRawByteStrProp(Instance: TObject; const PropName: string): RawByteString;
- Procedure SetRawByteStrProp(Instance: TObject; const PropName: string; const Value: RawByteString);
- Procedure SetRawByteStrProp(Instance: TObject; PropInfo: PPropInfo; const Value: RawByteString);
- {$ifndef FPUNONE}
- Function GetFloatProp(Instance: TObject; PropInfo : PPropInfo) : Extended;
- Function GetFloatProp(Instance: TObject; const PropName: string): Extended;
- Procedure SetFloatProp(Instance: TObject; const PropName: string; Value: Extended);
- Procedure SetFloatProp(Instance: TObject; PropInfo : PPropInfo; Value : Extended);
- {$endif}
- Function GetObjectProp(Instance: TObject; const PropName: string): TObject;
- Function GetObjectProp(Instance: TObject; const PropName: string; MinClass: TClass): TObject;
- Function GetObjectProp(Instance: TObject; PropInfo: PPropInfo): TObject;
- Function GetObjectProp(Instance: TObject; PropInfo: PPropInfo; MinClass: TClass): TObject;
- Procedure SetObjectProp(Instance: TObject; const PropName: string; Value: TObject);
- Procedure SetObjectProp(Instance: TObject; PropInfo: PPropInfo; Value: TObject);
- Function GetObjectPropClass(Instance: TObject; const PropName: string): TClass;
- Function GetObjectPropClass(AClass: TClass; const PropName: string): TClass;
- Function GetMethodProp(Instance: TObject; PropInfo: PPropInfo) : TMethod;
- Function GetMethodProp(Instance: TObject; const PropName: string): TMethod;
- Procedure SetMethodProp(Instance: TObject; PropInfo: PPropInfo; const Value : TMethod);
- Procedure SetMethodProp(Instance: TObject; const PropName: string; const Value: TMethod);
- Function GetInt64Prop(Instance: TObject; PropInfo: PPropInfo): Int64;
- Function GetInt64Prop(Instance: TObject; const PropName: string): Int64;
- Procedure SetInt64Prop(Instance: TObject; PropInfo: PPropInfo; const Value: Int64);
- Procedure SetInt64Prop(Instance: TObject; const PropName: string; const Value: Int64);
- Function GetPropValue(Instance: TObject; const PropName: string): Variant;
- Function GetPropValue(Instance: TObject; const PropName: string; PreferStrings: Boolean): Variant;
- Function GetPropValue(Instance: TObject; PropInfo: PPropInfo): Variant;
- Function GetPropValue(Instance: TObject; PropInfo: PPropInfo; PreferStrings: Boolean): Variant;
- Procedure SetPropValue(Instance: TObject; const PropName: string; const Value: Variant);
- Procedure SetPropValue(Instance: TObject; PropInfo: PPropInfo; const Value: Variant);
- Function GetVariantProp(Instance: TObject; PropInfo : PPropInfo): Variant;
- Function GetVariantProp(Instance: TObject; const PropName: string): Variant;
- Procedure SetVariantProp(Instance: TObject; const PropName: string; const Value: Variant);
- Procedure SetVariantProp(Instance: TObject; PropInfo : PPropInfo; const Value: Variant);
- function GetInterfaceProp(Instance: TObject; const PropName: string): IInterface;
- function GetInterfaceProp(Instance: TObject; PropInfo: PPropInfo): IInterface;
- procedure SetInterfaceProp(Instance: TObject; const PropName: string; const Value: IInterface);
- procedure SetInterfaceProp(Instance: TObject; PropInfo: PPropInfo; const Value: IInterface);
- function GetRawInterfaceProp(Instance: TObject; const PropName: string): Pointer;
- function GetRawInterfaceProp(Instance: TObject; PropInfo: PPropInfo): Pointer;
- procedure SetRawInterfaceProp(Instance: TObject; const PropName: string; const Value: Pointer);
- procedure SetRawInterfaceProp(Instance: TObject; PropInfo: PPropInfo; const Value: Pointer);
- function GetDynArrayProp(Instance: TObject; const PropName: string): Pointer;
- function GetDynArrayProp(Instance: TObject; PropInfo: PPropInfo): Pointer;
- procedure SetDynArrayProp(Instance: TObject; const PropName: string; const Value: Pointer);
- procedure SetDynArrayProp(Instance: TObject; PropInfo: PPropInfo; const Value: Pointer);
- // Extended RTTI
- function GetAttributeTable(TypeInfo: PTypeInfo): PAttributeTable;
- function GetPropAttribute(PropInfo: PPropInfo; AttributeNr: Word): TCustomAttribute; inline;
- function GetAttribute(AttributeTable: PAttributeTable; AttributeNr: Word): TCustomAttribute;
- // Auxiliary routines, which may be useful
- Function GetEnumName(TypeInfo : PTypeInfo;Value : Integer) : string;
- Function GetEnumValue(TypeInfo : PTypeInfo;const Name : string) : Integer;
- function GetEnumNameCount(enum1: PTypeInfo): SizeInt;
- procedure AddEnumElementAliases(aTypeInfo: PTypeInfo; const aNames: array of string; aStartValue: Integer = 0);
- procedure RemoveEnumElementAliases(aTypeInfo: PTypeInfo);
- function GetEnumeratedAliasValue(aTypeInfo: PTypeInfo; const aName: string): Integer;
- function SetToString(TypeInfo: PTypeInfo; Value: LongInt; Brackets: Boolean) : String;
- function SetToString(PropInfo: PPropInfo; Value: LongInt; Brackets: Boolean) : String;
- function SetToString(PropInfo: PPropInfo; Value: LongInt) : String;
- function SetToString(TypeInfo: PTypeInfo; Value: Pointer; Brackets: Boolean = False) : String;
- function SetToString(PropInfo: PPropInfo; Value: Pointer; Brackets: Boolean = False) : String;
- function StringToSet(PropInfo: PPropInfo; const Value: string): LongInt;
- function StringToSet(TypeInfo: PTypeInfo; const Value: string): LongInt;
- procedure StringToSet(PropInfo: PPropInfo; const Value: String; Result: Pointer);
- procedure StringToSet(TypeInfo: PTypeInfo; const Value: String; Result: Pointer);
- const
- BooleanIdents: array[Boolean] of String = ('False', 'True');
- DotSep: String = '.';
- Type
- EPropertyError = Class(Exception);
- TGetPropValue = Function (Instance: TObject; PropInfo: PPropInfo; PreferStrings: Boolean) : Variant;
- TSetPropValue = Procedure (Instance: TObject; PropInfo: PPropInfo; const Value: Variant);
- TGetVariantProp = Function (Instance: TObject; PropInfo : PPropInfo): Variant;
- TSetVariantProp = Procedure (Instance: TObject; PropInfo : PPropInfo; const Value: Variant);
- EPropertyConvertError = class(Exception); // Not used (yet), but defined for compatibility.
- Const
- OnGetPropValue : TGetPropValue = Nil;
- OnSetPropValue : TSetPropValue = Nil;
- OnGetVariantprop : TGetVariantProp = Nil;
- OnSetVariantprop : TSetVariantProp = Nil;
- { for inlining }
- function DerefTypeInfoPtr(Info: TypeInfoPtr): PTypeInfo; inline;
- Implementation
- uses rtlconsts;
- type
- PMethod = ^TMethod;
- { ---------------------------------------------------------------------
- Auxiliary methods
- ---------------------------------------------------------------------}
- function aligntoptr(p : pointer) : pointer;inline;
- begin
- {$ifdef CPUM68K}
- result:=AlignTypeData(p);
- {$else CPUM68K}
- {$ifdef FPC_REQUIRES_PROPER_ALIGNMENT}
- result:=align(p,sizeof(p));
- {$else FPC_REQUIRES_PROPER_ALIGNMENT}
- result:=p;
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- {$endif CPUM68K}
- end;
- function DerefTypeInfoPtr(Info: TypeInfoPtr): PTypeInfo; inline;
- begin
- {$ifdef ver3_0}
- Result := Info;
- {$else}
- if not Assigned(Info) then
- Result := Nil
- else
- Result := Info^;
- {$endif}
- end;
- function GetAttributeTable(TypeInfo: PTypeInfo): PAttributeTable;
- {$ifdef PROVIDE_ATTR_TABLE}
- var
- TD: PTypeData;
- begin
- TD := GetTypeData(TypeInfo);
- Result:=TD^.AttributeTable;
- {$else}
- begin
- Result:=Nil;
- {$endif}
- end;
- function GetPropData(TypeInfo : PTypeInfo; TypeData: PTypeData) : PPropData; inline;
- var
- p: PtrUInt;
- begin
- p := PtrUInt(@TypeData^.UnitName) + SizeOf(TypeData^.UnitName[0]) + Length(TypeData^.UnitName);
- Result := PPropData(aligntoptr(Pointer(p)));
- end;
- function GetAttribute(AttributeTable: PAttributeTable; AttributeNr: Word): TCustomAttribute;
- begin
- if (AttributeTable=nil) or (AttributeNr>=AttributeTable^.AttributeCount) then
- result := nil
- else
- begin
- result := AttributeTable^.AttributesList[AttributeNr].AttrProc();
- end;
- end;
- function GetPropAttribute(PropInfo: PPropInfo; AttributeNr: Word): TCustomAttribute;
- begin
- {$ifdef PROVIDE_ATTR_TABLE}
- Result := GetAttribute(PropInfo^.AttributeTable, AttributeNr);
- {$else}
- Result := Nil;
- {$endif}
- end;
- Function GetEnumName(TypeInfo : PTypeInfo;Value : Integer) : string;
- Var PS : PShortString;
- PT : PTypeData;
- begin
- PT:=GetTypeData(TypeInfo);
- if TypeInfo^.Kind=tkBool then
- begin
- case Value of
- 0,1:
- Result:=BooleanIdents[Boolean(Value)];
- else
- Result:='';
- end;
- end
- else
- begin
- PS:=@PT^.NameList;
- dec(Value,PT^.MinValue);
- While Value>0 Do
- begin
- PS:=PShortString(pointer(PS)+PByte(PS)^+1);
- Dec(Value);
- end;
- Result:=PS^;
- end;
- end;
- Function GetEnumValue(TypeInfo : PTypeInfo;const Name : string) : Integer;
- Var PS : PShortString;
- PT : PTypeData;
- Count : longint;
- sName: shortstring;
- begin
- If Length(Name)=0 then
- exit(-1);
- sName := Name;
- PT:=GetTypeData(TypeInfo);
- Count:=0;
- Result:=-1;
- if TypeInfo^.Kind=tkBool then
- begin
- If CompareText(BooleanIdents[false],Name)=0 then
- result:=0
- else if CompareText(BooleanIdents[true],Name)=0 then
- result:=1;
- end
- else
- begin
- PS:=@PT^.NameList;
- While (Result=-1) and (PByte(PS)^<>0) do
- begin
- If ShortCompareText(PS^, sName) = 0 then
- Result:=Count+PT^.MinValue;
- PS:=PShortString(pointer(PS)+PByte(PS)^+1);
- Inc(Count);
- end;
- if Result=-1 then
- Result:=GetEnumeratedAliasValue(TypeInfo,Name);
- end;
- end;
- function GetEnumNameCount(enum1: PTypeInfo): SizeInt;
- var
- PS: PShortString;
- PT: PTypeData;
- Count: SizeInt;
- begin
- PT:=GetTypeData(enum1);
- if enum1^.Kind=tkBool then
- Result:=2
- else
- begin
- Count:=0;
- Result:=0;
- PS:=@PT^.NameList;
- While (PByte(PS)^<>0) do
- begin
- PS:=PShortString(pointer(PS)+PByte(PS)^+1);
- Inc(Count);
- end;
- { the last string is the unit name }
- Result := Count - 1;
- end;
- end;
- Function SetToString(PropInfo: PPropInfo; Value: LongInt; Brackets: Boolean) : String;
- begin
- Result:=SetToString(PropInfo^.PropType, Value, Brackets);
- end;
- Function SetToString(TypeInfo: PTypeInfo; Value: LongInt; Brackets: Boolean) : String;
- begin
- {$if defined(FPC_BIG_ENDIAN)}
- { correctly adjust packed sets that are smaller than 32-bit }
- case GetTypeData(TypeInfo)^.OrdType of
- otSByte,otUByte: Value := Value shl (SizeOf(Integer)*8-8);
- otSWord,otUWord: Value := Value shl (SizeOf(Integer)*8-16);
- end;
- {$endif}
- Result := SetToString(TypeInfo, @Value, Brackets);
- end;
- function SetToString(TypeInfo: PTypeInfo; Value: Pointer; Brackets: Boolean): String;
- type
- tsetarr = bitpacked array[0..SizeOf(LongInt)*8-1] of 0..1;
- Var
- I,El,Els,Rem,V,Max : Integer;
- PTI : PTypeInfo;
- PTD : PTypeData;
- ValueArr : PLongInt;
- begin
- PTD := GetTypeData(TypeInfo);
- PTI:=PTD^.CompType;
- ValueArr := PLongInt(Value);
- Result:='';
- {$ifdef ver3_0}
- case PTD^.OrdType of
- otSByte, otUByte: begin
- Els := 0;
- Rem := 1;
- end;
- otSWord, otUWord: begin
- Els := 0;
- Rem := 2;
- end;
- otSLong, otULong: begin
- Els := 1;
- Rem := 0;
- end;
- end;
- {$else}
- Els := PTD^.SetSize div SizeOf(LongInt);
- Rem := PTD^.SetSize mod SizeOf(LongInt);
- {$endif}
- {$ifdef ver3_0}
- El := 0;
- {$else}
- for El := 0 to (PTD^.SetSize - 1) div SizeOf(LongInt) do
- {$endif}
- begin
- if El = Els then
- Max := Rem
- else
- Max := SizeOf(LongInt);
- For I:=0 to Max*8-1 do
- begin
- if (tsetarr(ValueArr[El])[i]<>0) then
- begin
- V := I + SizeOf(LongInt) * 8 * El;
- If Result='' then
- Result:=GetEnumName(PTI,V)
- else
- Result:=Result+','+GetEnumName(PTI,V);
- end;
- end;
- end;
- if Brackets then
- Result:='['+Result+']';
- end;
- Function SetToString(PropInfo: PPropInfo; Value: LongInt) : String;
- begin
- Result:=SetToString(PropInfo,Value,False);
- end;
- function SetToString(PropInfo: PPropInfo; Value: Pointer; Brackets: Boolean): String;
- begin
- Result := SetToString(PropInfo^.PropType, Value, Brackets);
- end;
- Const
- SetDelim = ['[',']',',',' '];
- Function GetNextElement(Var S : String) : String;
- Var
- J : Integer;
- begin
- J:=1;
- Result:='';
- If Length(S)>0 then
- begin
- While (J<=Length(S)) and Not (S[j] in SetDelim) do
- Inc(j);
- Result:=Copy(S,1,j-1);
- Delete(S,1,j);
- end;
- end;
- Function StringToSet(PropInfo: PPropInfo; const Value: string): LongInt;
- begin
- Result:=StringToSet(PropInfo^.PropType,Value);
- end;
- Function StringToSet(TypeInfo: PTypeInfo; const Value: string): LongInt;
- begin
- StringToSet(TypeInfo, Value, @Result);
- {$if defined(FPC_BIG_ENDIAN)}
- { correctly adjust packed sets that are smaller than 32-bit }
- case GetTypeData(TypeInfo)^.OrdType of
- otSByte,otUByte: Result := Result shr (SizeOf(Integer)*8-8);
- otSWord,otUWord: Result := Result shr (SizeOf(Integer)*8-16);
- end;
- {$endif}
- end;
- procedure StringToSet(TypeInfo: PTypeInfo; const Value: String; Result: Pointer);
- Var
- S,T : String;
- I, ElOfs, BitOfs : Integer;
- PTD: PTypeData;
- PTI : PTypeInfo;
- ResArr: PLongWord;
- begin
- PTD:=GetTypeData(TypeInfo);
- {$ifndef ver3_0}
- FillChar(Result^, PTD^.SetSize, 0);
- {$else}
- PInteger(Result)^ := 0;
- {$endif}
- PTI:=PTD^.Comptype;
- ResArr := PLongWord(Result);
- S:=Value;
- I:=1;
- If Length(S)>0 then
- begin
- While (I<=Length(S)) and (S[i] in SetDelim) do
- Inc(I);
- Delete(S,1,i-1);
- end;
- While (S<>'') do
- begin
- T:=GetNextElement(S);
- if T<>'' then
- begin
- I:=GetEnumValue(PTI,T);
- if (I<0) then
- raise EPropertyError.CreateFmt(SErrUnknownEnumValue, [T]);
- ElOfs := I shr 5;
- BitOfs := I and $1F;
- {$ifdef FPC_BIG_ENDIAN}
- { on Big Endian systems enum values start from the MSB, thus we need
- to reverse the shift }
- BitOfs := 31 - BitOfs;
- {$endif}
- ResArr[ElOfs] := ResArr[ElOfs] or (LongInt(1) shl BitOfs);
- end;
- end;
- end;
- procedure StringToSet(PropInfo: PPropInfo; const Value: String; Result: Pointer);
- begin
- StringToSet(PropInfo^.PropType, Value, Result);
- end;
- Function AlignTypeData(p : Pointer) : Pointer;
- {$packrecords c}
- type
- TAlignCheck = record
- b : byte;
- q : qword;
- end;
- {$packrecords default}
- begin
- {$ifdef FPC_REQUIRES_PROPER_ALIGNMENT}
- {$ifdef VER3_0}
- Result:=Pointer(align(p,SizeOf(Pointer)));
- {$else VER3_0}
- Result:=Pointer(align(p,PtrInt(@TAlignCheck(nil^).q)))
- {$endif VER3_0}
- {$else FPC_REQUIRES_PROPER_ALIGNMENT}
- Result:=p;
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- end;
- Function AlignTParamFlags(p : Pointer) : Pointer; inline;
- {$packrecords c}
- type
- TAlignCheck = record
- b : byte;
- w : word;
- end;
- {$packrecords default}
- begin
- {$ifdef FPC_REQUIRES_PROPER_ALIGNMENT}
- Result:=Pointer(align(p,PtrInt(@TAlignCheck(nil^).w)))
- {$else FPC_REQUIRES_PROPER_ALIGNMENT}
- Result:=p;
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- end;
- Function AlignPTypeInfo(p : Pointer) : Pointer; inline;
- {$packrecords c}
- type
- TAlignCheck = record
- b : byte;
- p : pointer;
- end;
- {$packrecords default}
- begin
- {$ifdef FPC_REQUIRES_PROPER_ALIGNMENT}
- Result:=Pointer(align(p,PtrInt(@TAlignCheck(nil^).p)))
- {$else FPC_REQUIRES_PROPER_ALIGNMENT}
- Result:=p;
- {$endif FPC_REQUIRES_PROPER_ALIGNMENT}
- end;
- Function GetTypeData(TypeInfo : PTypeInfo) : PTypeData;
- begin
- GetTypeData:=AlignTypeData(pointer(TypeInfo)+2+PByte(pointer(TypeInfo)+1)^);
- end;
- { ---------------------------------------------------------------------
- Basic Type information functions.
- ---------------------------------------------------------------------}
- Function GetPropInfo(TypeInfo : PTypeInfo;const PropName : string) : PPropInfo;
- var
- hp : PTypeData;
- i : longint;
- p : shortstring;
- pd : PPropData;
- begin
- P:=PropName; // avoid Ansi<->short conversion in a loop
- while Assigned(TypeInfo) do
- begin
- // skip the name
- hp:=GetTypeData(Typeinfo);
- // the class info rtti the property rtti follows immediatly
- pd := GetPropData(TypeInfo,hp);
- Result:=PPropInfo(@pd^.PropList);
- for i:=1 to pd^.PropCount do
- begin
- // found a property of that name ?
- if ShortCompareText(Result^.Name, P) = 0 then
- exit;
- // skip to next property
- Result:=PPropInfo(aligntoptr(pointer(@Result^.Name)+byte(Result^.Name[0])+1));
- end;
- // parent class
- Typeinfo:=hp^.ParentInfo;
- end;
- Result:=Nil;
- end;
- Function GetPropInfo(TypeInfo : PTypeInfo;const PropName : string; Akinds : TTypeKinds) : PPropInfo;
- begin
- Result:=GetPropInfo(TypeInfo,PropName);
- If (Akinds<>[]) then
- If (Result<>Nil) then
- If Not (Result^.PropType^.Kind in AKinds) then
- Result:=Nil;
- end;
- Function GetPropInfo(AClass: TClass; const PropName: string; AKinds: TTypeKinds) : PPropInfo;
- begin
- Result:=GetPropInfo(PTypeInfo(AClass.ClassInfo),PropName,AKinds);
- end;
- Function GetPropInfo(Instance: TObject; const PropName: string; AKinds: TTypeKinds) : PPropInfo;
- begin
- Result:=GetPropInfo(Instance.ClassType,PropName,AKinds);
- end;
- Function GetPropInfo(Instance: TObject; const PropName: string): PPropInfo;
- begin
- Result:=GetPropInfo(Instance,PropName,[]);
- end;
- Function GetPropInfo(AClass: TClass; const PropName: string): PPropInfo;
- begin
- Result:=GetPropInfo(AClass,PropName,[]);
- end;
- Function FindPropInfo(Instance: TObject; const PropName: string): PPropInfo;
- begin
- result:=GetPropInfo(Instance, PropName);
- if Result=nil then
- Raise EPropertyError.CreateFmt(SErrPropertyNotFound, [PropName]);
- end;
- Function FindPropInfo(Instance: TObject; const PropName: string; AKinds: TTypeKinds): PPropInfo;
- begin
- result:=GetPropInfo(Instance, PropName, AKinds);
- if Result=nil then
- Raise EPropertyError.CreateFmt(SErrPropertyNotFound, [PropName]);
- end;
- Function FindPropInfo(AClass: TClass; const PropName: string): PPropInfo;
- begin
- result:=GetPropInfo(AClass, PropName);
- if result=nil then
- Raise EPropertyError.CreateFmt(SErrPropertyNotFound, [PropName]);
- end;
- Function FindPropInfo(AClass: TClass; const PropName: string; AKinds: TTypeKinds): PPropInfo;
- begin
- result:=GetPropInfo(AClass, PropName, AKinds);
- if result=nil then
- Raise EPropertyError.CreateFmt(SErrPropertyNotFound, [PropName]);
- end;
- function IsReadableProp(PropInfo: PPropInfo): Boolean;
- begin
- Result:=(((PropInfo^.PropProcs) and 3) in [ptField,ptStatic,ptVirtual]);
- end;
- function IsReadableProp(Instance: TObject; const PropName: string): Boolean;
- begin
- Result:=IsReadableProp(FindPropInfo(Instance,PropName));
- end;
- function IsReadableProp(AClass: TClass; const PropName: string): Boolean;
- begin
- Result:=IsReadableProp(FindPropInfo(AClass,PropName));
- end;
- function IsWriteableProp(PropInfo: PPropInfo): Boolean;
- begin
- Result:=(((PropInfo^.PropProcs shr 2) and 3) in [ptField,ptStatic,ptVirtual]);
- end;
- function IsWriteableProp(Instance: TObject; const PropName: string): Boolean;
- begin
- Result:=IsWriteableProp(FindPropInfo(Instance,PropName));
- end;
- function IsWriteableProp(AClass: TClass; const PropName: string): Boolean;
- begin
- Result:=IsWriteableProp(FindPropInfo(AClass,PropName));
- end;
- Function IsStoredProp(Instance : TObject;PropInfo : PPropInfo) : Boolean;
- type
- TBooleanIndexFunc=function(Index:integer):boolean of object;
- TBooleanFunc=function:boolean of object;
- var
- AMethod : TMethod;
- begin
- case (PropInfo^.PropProcs shr 4) and 3 of
- ptField:
- Result:=PBoolean(Pointer(Instance)+PtrUInt(PropInfo^.StoredProc))^;
- ptConst:
- Result:=LongBool(PropInfo^.StoredProc);
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs shr 4) and 3=ptstatic then
- AMethod.Code:=PropInfo^.StoredProc
- else
- AMethod.Code:=pcodepointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.StoredProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TBooleanIndexFunc(AMethod)(PropInfo^.Index)
- else
- Result:=TBooleanFunc(AMethod)();
- end;
- end;
- end;
- Procedure GetPropInfos(TypeInfo : PTypeInfo;PropList : PPropList);
- {
- Store Pointers to property information in the list pointed
- to by proplist. PRopList must contain enough space to hold ALL
- properties.
- }
- Var
- TD : PTypeData;
- TP : PPropInfo;
- Count : Longint;
- begin
- // Get this objects TOTAL published properties count
- TD:=GetTypeData(TypeInfo);
- // Clear list
- FillChar(PropList^,TD^.PropCount*sizeof(Pointer),0);
- repeat
- TD:=GetTypeData(TypeInfo);
- // published properties count for this object
- TP:=PPropInfo(GetPropData(TypeInfo, TD));
- Count:=PWord(TP)^;
- // Now point TP to first propinfo record.
- Inc(Pointer(TP),SizeOF(Word));
- tp:=aligntoptr(tp);
- While Count>0 do
- begin
- // Don't overwrite properties with the same name
- if PropList^[TP^.NameIndex]=nil then
- PropList^[TP^.NameIndex]:=TP;
- // Point to TP next propinfo record.
- // Located at Name[Length(Name)+1] !
- TP:=aligntoptr(PPropInfo(pointer(@TP^.Name)+PByte(@TP^.Name)^+1));
- Dec(Count);
- end;
- TypeInfo:=TD^.Parentinfo;
- until TypeInfo=nil;
- end;
- Procedure InsertProp (PL : PProplist;PI : PPropInfo; Count : longint);
- Var
- I : Longint;
- begin
- I:=0;
- While (I<Count) and (PI^.Name>PL^[I]^.Name) do
- Inc(I);
- If I<Count then
- Move(PL^[I], PL^[I+1], (Count - I) * SizeOf(Pointer));
- PL^[I]:=PI;
- end;
- Procedure InsertPropnosort (PL : PProplist;PI : PPropInfo; Count : longint);
- begin
- PL^[Count]:=PI;
- end;
- Type TInsertProp = Procedure (PL : PProplist;PI : PPropInfo; Count : longint);
- //Const InsertProps : array[false..boolean] of TInsertProp = (InsertPropNoSort,InsertProp);
- Function GetPropList(TypeInfo : PTypeInfo;TypeKinds : TTypeKinds; PropList : PPropList;Sorted : boolean = true):longint;
- {
- Store Pointers to property information OF A CERTAIN KIND in the list pointed
- to by proplist. PRopList must contain enough space to hold ALL
- properties.
- }
- Var
- TempList : PPropList;
- PropInfo : PPropinfo;
- I,Count : longint;
- DoInsertProp : TInsertProp;
- begin
- if sorted then
- DoInsertProp:=@InsertProp
- else
- DoInsertProp:=@InsertPropnosort;
- Result:=0;
- Count:=GetTypeData(TypeInfo)^.Propcount;
- If Count>0 then
- begin
- GetMem(TempList,Count*SizeOf(Pointer));
- Try
- GetPropInfos(TypeInfo,TempList);
- For I:=0 to Count-1 do
- begin
- PropInfo:=TempList^[i];
- If PropInfo^.PropType^.Kind in TypeKinds then
- begin
- If (PropList<>Nil) then
- DoInsertProp(PropList,PropInfo,Result);
- Inc(Result);
- end;
- end;
- finally
- FreeMem(TempList,Count*SizeOf(Pointer));
- end;
- end;
- end;
- Function GetPropList(TypeInfo: PTypeInfo; out PropList: PPropList): SizeInt;
- begin
- result:=GetTypeData(TypeInfo)^.Propcount;
- if result>0 then
- begin
- getmem(PropList,result*sizeof(pointer));
- GetPropInfos(TypeInfo,PropList);
- end
- else
- PropList:=Nil;
- end;
- function GetPropList(AClass: TClass; out PropList: PPropList): Integer;
- begin
- Result := GetPropList(PTypeInfo(AClass.ClassInfo), PropList);
- end;
- function GetPropList(Instance: TObject; out PropList: PPropList): Integer;
- begin
- Result := GetPropList(Instance.ClassType, PropList);
- end;
- { ---------------------------------------------------------------------
- Property access functions
- ---------------------------------------------------------------------}
- { ---------------------------------------------------------------------
- Ordinal properties
- ---------------------------------------------------------------------}
- Function GetOrdProp(Instance : TObject;PropInfo : PPropInfo) : Int64;
- type
- TGetInt64ProcIndex=function(index:longint):Int64 of object;
- TGetInt64Proc=function():Int64 of object;
- TGetIntegerProcIndex=function(index:longint):longint of object;
- TGetIntegerProc=function:longint of object;
- TGetWordProcIndex=function(index:longint):word of object;
- TGetWordProc=function:word of object;
- TGetByteProcIndex=function(index:longint):Byte of object;
- TGetByteProc=function:Byte of object;
- var
- TypeInfo: PTypeInfo;
- AMethod : TMethod;
- DataSize: Integer;
- OrdType: TOrdType;
- Signed: Boolean;
- begin
- Result:=0;
- TypeInfo := PropInfo^.PropType;
- Signed := false;
- DataSize := 4;
- case TypeInfo^.Kind of
- // We keep this for backwards compatibility, but internally it is no longer used.
- {$ifdef cpu64}
- tkInterface,
- tkInterfaceRaw,
- tkDynArray,
- tkClass:
- DataSize:=8;
- {$endif cpu64}
- tkChar, tkBool:
- DataSize:=1;
- tkWChar:
- DataSize:=2;
- tkSet,
- tkEnumeration,
- tkInteger:
- begin
- OrdType:=GetTypeData(TypeInfo)^.OrdType;
- case OrdType of
- otSByte,otUByte: DataSize := 1;
- otSWord,otUWord: DataSize := 2;
- end;
- Signed := OrdType in [otSByte,otSWord,otSLong];
- end;
- tkInt64 :
- begin
- DataSize:=8;
- Signed:=true;
- end;
- tkQword :
- begin
- DataSize:=8;
- Signed:=false;
- end;
- end;
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- if Signed then begin
- case DataSize of
- 1: Result:=PShortInt(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- 2: Result:=PSmallInt(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- 4: Result:=PLongint(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- 8: Result:=PInt64(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- end;
- end else begin
- case DataSize of
- 1: Result:=PByte(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- 2: Result:=PWord(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- 4: Result:=PLongint(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- 8: Result:=PInt64(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- end;
- end;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then begin
- case DataSize of
- 1: Result:=TGetByteProcIndex(AMethod)(PropInfo^.Index);
- 2: Result:=TGetWordProcIndex(AMethod)(PropInfo^.Index);
- 4: Result:=TGetIntegerProcIndex(AMethod)(PropInfo^.Index);
- 8: result:=TGetInt64ProcIndex(AMethod)(PropInfo^.Index)
- end;
- end else begin
- case DataSize of
- 1: Result:=TGetByteProc(AMethod)();
- 2: Result:=TGetWordProc(AMethod)();
- 4: Result:=TGetIntegerProc(AMethod)();
- 8: result:=TGetInt64Proc(AMethod)();
- end;
- end;
- if Signed then begin
- case DataSize of
- 1: Result:=ShortInt(Result);
- 2: Result:=SmallInt(Result);
- end;
- end;
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- Procedure SetOrdProp(Instance : TObject;PropInfo : PPropInfo;Value : Int64);
- type
- TSetInt64ProcIndex=procedure(index:longint;i:Int64) of object;
- TSetInt64Proc=procedure(i:Int64) of object;
- TSetIntegerProcIndex=procedure(index,i:longint) of object;
- TSetIntegerProc=procedure(i:longint) of object;
- var
- DataSize: Integer;
- AMethod : TMethod;
- begin
- if PropInfo^.PropType^.Kind in [tkInt64,tkQword
- { why do we have to handle classes here, see also below? (FK) }
- {$ifdef cpu64}
- ,tkInterface
- ,tkInterfaceRaw
- ,tkDynArray
- ,tkClass
- {$endif cpu64}
- ] then
- DataSize := 8
- else
- DataSize := 4;
- if not(PropInfo^.PropType^.Kind in [tkInt64,tkQword,tkClass,tkInterface,tkInterfaceRaw,tkDynArray]) then
- begin
- { cut off unnecessary stuff }
- case GetTypeData(PropInfo^.PropType)^.OrdType of
- otSWord,otUWord:
- begin
- Value:=Value and $ffff;
- DataSize := 2;
- end;
- otSByte,otUByte:
- begin
- Value:=Value and $ff;
- DataSize := 1;
- end;
- end;
- end;
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- case DataSize of
- 1: PByte(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Byte(Value);
- 2: PWord(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Word(Value);
- 4: PLongint(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Longint(Value);
- 8: PInt64(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Value;
- end;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if datasize=8 then
- begin
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetInt64ProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetInt64Proc(AMethod)(Value);
- end
- else
- begin
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetIntegerProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetIntegerProc(AMethod)(Value);
- end;
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- Function GetOrdProp(Instance: TObject; const PropName: string): Int64;
- begin
- Result:=GetOrdProp(Instance,FindPropInfo(Instance,PropName));
- end;
- Procedure SetOrdProp(Instance: TObject; const PropName: string; Value: Int64);
- begin
- SetOrdProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- Function GetEnumProp(Instance: TObject; Const PropInfo: PPropInfo): string;
- begin
- Result:=GetEnumName(PropInfo^.PropType, GetOrdProp(Instance, PropInfo));
- end;
- Function GetEnumProp(Instance: TObject; const PropName: string): string;
- begin
- Result:=GetEnumProp(Instance,FindPropInfo(Instance,PropName));
- end;
- Procedure SetEnumProp(Instance: TObject; const PropName: string; const Value: string);
- begin
- SetEnumProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- Procedure SetEnumProp(Instance: TObject; Const PropInfo : PPropInfo; const Value: string);
- Var
- PV : Longint;
- begin
- If PropInfo<>Nil then
- begin
- PV:=GetEnumValue(PropInfo^.PropType, Value);
- if (PV<0) then
- raise EPropertyError.CreateFmt(SErrUnknownEnumValue, [Value]);
- SetOrdProp(Instance, PropInfo,PV);
- end;
- end;
- { ---------------------------------------------------------------------
- Int64 wrappers
- ---------------------------------------------------------------------}
- Function GetInt64Prop(Instance: TObject; PropInfo: PPropInfo): Int64;
- begin
- Result:=GetOrdProp(Instance,PropInfo);
- end;
- procedure SetInt64Prop(Instance: TObject; PropInfo: PPropInfo; const Value: Int64);
- begin
- SetOrdProp(Instance,PropInfo,Value);
- end;
- Function GetInt64Prop(Instance: TObject; const PropName: string): Int64;
- begin
- Result:=GetInt64Prop(Instance,FindPropInfo(Instance,PropName));
- end;
- Procedure SetInt64Prop(Instance: TObject; const PropName: string; const Value: Int64);
- begin
- SetInt64Prop(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- { ---------------------------------------------------------------------
- Set properties
- ---------------------------------------------------------------------}
- Function GetSetProp(Instance: TObject; const PropName: string): string;
- begin
- Result:=GetSetProp(Instance,PropName,False);
- end;
- Function GetSetProp(Instance: TObject; const PropName: string; Brackets: Boolean): string;
- begin
- Result:=GetSetProp(Instance,FindPropInfo(Instance,PropName),Brackets);
- end;
- Function GetSetProp(Instance: TObject; const PropInfo: PPropInfo; Brackets: Boolean): string;
- begin
- Result:=SetToString(PropInfo,GetOrdProp(Instance,PropInfo),Brackets);
- end;
- Procedure SetSetProp(Instance: TObject; const PropName: string; const Value: string);
- begin
- SetSetProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- Procedure SetSetProp(Instance: TObject; const PropInfo: PPropInfo; const Value: string);
- begin
- SetOrdProp(Instance,PropInfo,StringToSet(PropInfo,Value));
- end;
- { ---------------------------------------------------------------------
- Pointer properties - internal only
- ---------------------------------------------------------------------}
- Function GetPointerProp(Instance: TObject; PropInfo : PPropInfo): Pointer;
- Type
- TGetPointerProcIndex = function (index:longint): Pointer of object;
- TGetPointerProc = function (): Pointer of object;
- var
- AMethod : TMethod;
- begin
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- Result := PPointer(Pointer(Instance) + LongWord(PropInfo^.GetProc))^;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TGetPointerProcIndex(AMethod)(PropInfo^.Index)
- else
- Result:=TGetPointerProc(AMethod)();
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- Procedure SetPointerProp(Instance: TObject; PropInfo : PPropInfo; Value: Pointer);
- type
- TSetPointerProcIndex = procedure(index: longint; p: pointer) of object;
- TSetPointerProc = procedure(p: pointer) of object;
- var
- AMethod : TMethod;
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- PPointer(Pointer(Instance) + LongWord(PropInfo^.SetProc))^:=Value;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetPointerProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetPointerProc(AMethod)(Value);
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- { ---------------------------------------------------------------------
- Object properties
- ---------------------------------------------------------------------}
- Function GetObjectProp(Instance: TObject; const PropName: string): TObject;
- begin
- Result:=GetObjectProp(Instance,PropName,Nil);
- end;
- Function GetObjectProp(Instance: TObject; const PropName: string; MinClass: TClass): TObject;
- begin
- Result:=GetObjectProp(Instance,FindPropInfo(Instance,PropName),MinClass);
- end;
- Function GetObjectProp(Instance: TObject; PropInfo : PPropInfo): TObject;
- begin
- Result:=GetObjectProp(Instance,PropInfo,Nil);
- end;
- Function GetObjectProp(Instance: TObject; PropInfo : PPropInfo; MinClass: TClass): TObject;
- begin
- Result:=TObject(GetPointerProp(Instance,PropInfo));
- If (MinClass<>Nil) and (Result<>Nil) Then
- If Not Result.InheritsFrom(MinClass) then
- Result:=Nil;
- end;
- Procedure SetObjectProp(Instance: TObject; const PropName: string; Value: TObject);
- begin
- SetObjectProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- Procedure SetObjectProp(Instance: TObject; PropInfo : PPropInfo; Value: TObject);
- begin
- SetPointerProp(Instance,PropInfo,Pointer(Value));
- end;
- Function GetObjectPropClass(Instance: TObject; const PropName: string): TClass;
- begin
- Result:=GetTypeData(FindPropInfo(Instance,PropName,[tkClass])^.PropType)^.ClassType;
- end;
- Function GetObjectPropClass(AClass: TClass; const PropName: string): TClass;
- begin
- Result:=GetTypeData(FindPropInfo(AClass,PropName,[tkClass])^.PropType)^.ClassType;
- end;
- { ---------------------------------------------------------------------
- Interface wrapprers
- ---------------------------------------------------------------------}
- function GetInterfaceProp(Instance: TObject; const PropName: string): IInterface;
- begin
- Result:=GetInterfaceProp(Instance,FindPropInfo(Instance,PropName));
- end;
- function GetInterfaceProp(Instance: TObject; PropInfo: PPropInfo): IInterface;
- type
- TGetInterfaceProc=function:IInterface of object;
- TGetInterfaceProcIndex=function(index:longint):IInterface of object;
- var
- AMethod : TMethod;
- begin
- Result:=nil;
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- Result:=IInterface(PPointer(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^);
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TGetInterfaceProcIndex(AMethod)(PropInfo^.Index)
- else
- Result:=TGetInterfaceProc(AMethod)();
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- procedure SetInterfaceProp(Instance: TObject; const PropName: string; const Value: IInterface);
- begin
- SetInterfaceProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- procedure SetInterfaceProp(Instance: TObject; PropInfo: PPropInfo; const Value: IInterface);
- type
- TSetIntfStrProcIndex=procedure(index:longint;const i:IInterface) of object;
- TSetIntfStrProc=procedure(i:IInterface) of object;
- var
- AMethod : TMethod;
- begin
- case Propinfo^.PropType^.Kind of
- tkInterface:
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- PInterface(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Value;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetIntfStrProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetIntfStrProc(AMethod)(Value);
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- tkInterfaceRaw:
- Raise Exception.Create('Cannot set RAW interface from IUnknown interface');
- end;
- end;
- { ---------------------------------------------------------------------
- RAW (Corba) Interface wrapprers
- ---------------------------------------------------------------------}
- function GetRawInterfaceProp(Instance: TObject; const PropName: string): Pointer;
- begin
- Result:=GetRawInterfaceProp(Instance,FindPropInfo(Instance,PropName));
- end;
- function GetRawInterfaceProp(Instance: TObject; PropInfo: PPropInfo): Pointer;
- begin
- Result:=GetPointerProp(Instance,PropInfo);
- end;
- procedure SetRawInterfaceProp(Instance: TObject; const PropName: string; const Value: Pointer);
- begin
- SetRawInterfaceProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- procedure SetRawInterfaceProp(Instance: TObject; PropInfo: PPropInfo; const Value: Pointer);
- begin
- SetPointerProp(Instance,PropInfo,Value);
- end;
- { ---------------------------------------------------------------------
- Dynamic array properties
- ---------------------------------------------------------------------}
- function GetDynArrayProp(Instance: TObject; const PropName: string): Pointer;
- begin
- Result:=GetDynArrayProp(Instance,FindPropInfo(Instance,PropName));
- end;
- function GetDynArrayProp(Instance: TObject; PropInfo: PPropInfo): Pointer;
- type
- { we need a dynamic array as that type is usually passed differently from
- a plain pointer }
- TDynArray=array of Byte;
- TGetDynArrayProc=function:TDynArray of object;
- TGetDynArrayProcIndex=function(index:longint):TDynArray of object;
- var
- AMethod : TMethod;
- begin
- Result:=nil;
- if PropInfo^.PropType^.Kind<>tkDynArray then
- Exit;
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- Result:=PPointer(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=Pointer(TGetDynArrayProcIndex(AMethod)(PropInfo^.Index))
- else
- Result:=Pointer(TGetDynArrayProc(AMethod)());
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- procedure SetDynArrayProp(Instance: TObject; const PropName: string; const Value: Pointer);
- begin
- SetDynArrayProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- procedure SetDynArrayProp(Instance: TObject; PropInfo: PPropInfo; const Value: Pointer);
- type
- { we need a dynamic array as that type is usually passed differently from
- a plain pointer }
- TDynArray=array of Byte;
- TSetDynArrayProcIndex=procedure(index:longint;const i:TDynArray) of object;
- TSetDynArrayProc=procedure(i:TDynArray) of object;
- var
- AMethod: TMethod;
- begin
- if PropInfo^.PropType^.Kind<>tkDynArray then
- Exit;
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- CopyArray(PPointer(Pointer(Instance)+PtrUInt(PropInfo^.SetProc)), @Value, PropInfo^.PropType, 1);
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetDynArrayProcIndex(AMethod)(PropInfo^.Index,TDynArray(Value))
- else
- TSetDynArrayProc(AMethod)(TDynArray(Value));
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- { ---------------------------------------------------------------------
- String properties
- ---------------------------------------------------------------------}
- Function GetStrProp(Instance: TObject; PropInfo: PPropInfo): AnsiString;
- type
- TGetShortStrProcIndex=function(index:longint):ShortString of object;
- TGetShortStrProc=function():ShortString of object;
- TGetAnsiStrProcIndex=function(index:longint):AnsiString of object;
- TGetAnsiStrProc=function():AnsiString of object;
- var
- AMethod : TMethod;
- begin
- Result:='';
- case Propinfo^.PropType^.Kind of
- tkWString:
- Result:=AnsiString(GetWideStrProp(Instance,PropInfo));
- tkUString:
- Result := AnsiString(GetUnicodeStrProp(Instance,PropInfo));
- tkSString:
- begin
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- Result := PShortString(Pointer(Instance) + LongWord(PropInfo^.GetProc))^;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TGetShortStrProcIndex(AMethod)(PropInfo^.Index)
- else
- Result:=TGetShortStrProc(AMethod)();
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- tkAString:
- begin
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- Result := PAnsiString(Pointer(Instance) + LongWord(PropInfo^.GetProc))^;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TGetAnsiStrProcIndex(AMethod)(PropInfo^.Index)
- else
- Result:=TGetAnsiStrProc(AMethod)();
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- end;
- end;
- Procedure SetStrProp(Instance : TObject;PropInfo : PPropInfo; const Value : AnsiString);
- type
- TSetShortStrProcIndex=procedure(index:longint;const s:ShortString) of object;
- TSetShortStrProc=procedure(const s:ShortString) of object;
- TSetAnsiStrProcIndex=procedure(index:longint;s:AnsiString) of object;
- TSetAnsiStrProc=procedure(s:AnsiString) of object;
- var
- AMethod : TMethod;
- begin
- case Propinfo^.PropType^.Kind of
- tkWString:
- SetWideStrProp(Instance,PropInfo,WideString(Value));
- tkUString:
- SetUnicodeStrProp(Instance,PropInfo,UnicodeString(Value));
- tkSString:
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- PShortString(Pointer(Instance) + LongWord(PropInfo^.SetProc))^:=Value;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetShortStrProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetShortStrProc(AMethod)(Value);
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- tkAString:
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- PAnsiString(Pointer(Instance) + LongWord(PropInfo^.SetProc))^:=Value;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetAnsiStrProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetAnsiStrProc(AMethod)(Value);
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- end;
- end;
- Function GetStrProp(Instance: TObject; const PropName: string): string;
- begin
- Result:=GetStrProp(Instance,FindPropInfo(Instance,PropName));
- end;
- Procedure SetStrProp(Instance: TObject; const PropName: string; const Value: AnsiString);
- begin
- SetStrProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- Function GetWideStrProp(Instance: TObject; const PropName: string): WideString;
- begin
- Result:=GetWideStrProp(Instance, FindPropInfo(Instance, PropName));
- end;
- procedure SetWideStrProp(Instance: TObject; const PropName: string; const Value: WideString);
- begin
- SetWideStrProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- Function GetWideStrProp(Instance: TObject; PropInfo: PPropInfo): WideString;
- type
- TGetWideStrProcIndex=function(index:longint):WideString of object;
- TGetWideStrProc=function():WideString of object;
- var
- AMethod : TMethod;
- begin
- Result:='';
- case Propinfo^.PropType^.Kind of
- tkSString,tkAString:
- Result:=WideString(GetStrProp(Instance,PropInfo));
- tkUString :
- Result := GetUnicodeStrProp(Instance,PropInfo);
- tkWString:
- begin
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- Result := PWideString(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TGetWideStrProcIndex(AMethod)(PropInfo^.Index)
- else
- Result:=TGetWideStrProc(AMethod)();
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- end;
- end;
- Procedure SetWideStrProp(Instance: TObject; PropInfo: PPropInfo; const Value: WideString);
- type
- TSetWideStrProcIndex=procedure(index:longint;s:WideString) of object;
- TSetWideStrProc=procedure(s:WideString) of object;
- var
- AMethod : TMethod;
- begin
- case Propinfo^.PropType^.Kind of
- tkSString,tkAString:
- SetStrProp(Instance,PropInfo,AnsiString(Value));
- tkUString:
- SetUnicodeStrProp(Instance,PropInfo,Value);
- tkWString:
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- PWideString(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Value;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetWideStrProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetWideStrProc(AMethod)(Value);
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- end;
- end;
- Function GetUnicodeStrProp(Instance: TObject; const PropName: string): UnicodeString;
- begin
- Result:=GetUnicodeStrProp(Instance, FindPropInfo(Instance, PropName));
- end;
- procedure SetUnicodeStrProp(Instance: TObject; const PropName: string; const Value: UnicodeString);
- begin
- SetUnicodeStrProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- Function GetUnicodeStrProp(Instance: TObject; PropInfo: PPropInfo): UnicodeString;
- type
- TGetUnicodeStrProcIndex=function(index:longint):UnicodeString of object;
- TGetUnicodeStrProc=function():UnicodeString of object;
- var
- AMethod : TMethod;
- begin
- Result:='';
- case Propinfo^.PropType^.Kind of
- tkSString,tkAString:
- Result:=UnicodeString(GetStrProp(Instance,PropInfo));
- tkWString:
- Result:=GetWideStrProp(Instance,PropInfo);
- tkUString:
- begin
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- Result := PUnicodeString(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TGetUnicodeStrProcIndex(AMethod)(PropInfo^.Index)
- else
- Result:=TGetUnicodeStrProc(AMethod)();
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- end;
- end;
- Procedure SetUnicodeStrProp(Instance: TObject; PropInfo: PPropInfo; const Value: UnicodeString);
- type
- TSetUnicodeStrProcIndex=procedure(index:longint;s:UnicodeString) of object;
- TSetUnicodeStrProc=procedure(s:UnicodeString) of object;
- var
- AMethod : TMethod;
- begin
- case Propinfo^.PropType^.Kind of
- tkSString,tkAString:
- SetStrProp(Instance,PropInfo,AnsiString(Value));
- tkWString:
- SetWideStrProp(Instance,PropInfo,Value);
- tkUString:
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- PUnicodeString(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Value;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetUnicodeStrProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetUnicodeStrProc(AMethod)(Value);
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- end;
- end;
- function GetRawbyteStrProp(Instance: TObject; PropInfo: PPropInfo): RawByteString;
- type
- TGetRawByteStrProcIndex=function(index:longint): RawByteString of object;
- TGetRawByteStrProc=function():RawByteString of object;
- var
- AMethod : TMethod;
- begin
- Result:='';
- case Propinfo^.PropType^.Kind of
- tkWString:
- Result:=RawByteString(GetWideStrProp(Instance,PropInfo));
- tkUString:
- Result:=RawByteString(GetUnicodeStrProp(Instance,PropInfo));
- tkSString:
- Result:=RawByteString(GetStrProp(Instance,PropInfo));
- tkAString:
- begin
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- Result := PAnsiString(Pointer(Instance) + LongWord(PropInfo^.GetProc))^;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TGetRawByteStrProcIndex(AMethod)(PropInfo^.Index)
- else
- Result:=TGetRawByteStrProc(AMethod)();
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- end;
- end;
- function GetRawByteStrProp(Instance: TObject; const PropName: string): RawByteString;
- begin
- Result:=GetRawByteStrProp(Instance,FindPropInfo(Instance,PropName));
- end;
- procedure SetRawByteStrProp(Instance: TObject; PropInfo: PPropInfo; const Value: RawByteString);
- type
- TSetRawByteStrProcIndex=procedure(index:longint;s:RawByteString) of object;
- TSetRawByteStrProc=procedure(s:RawByteString) of object;
- var
- AMethod : TMethod;
- begin
- case Propinfo^.PropType^.Kind of
- tkWString:
- SetWideStrProp(Instance,PropInfo,WideString(Value));
- tkUString:
- SetUnicodeStrProp(Instance,PropInfo,UnicodeString(Value));
- tkSString:
- SetStrProp(Instance,PropInfo,Value); // Not 100% sure about this.
- tkAString:
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- PAnsiString(Pointer(Instance) + LongWord(PropInfo^.SetProc))^:=Value;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetRawByteStrProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetRawByteStrProc(AMethod)(Value);
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- end;
- end;
- procedure SetRawByteStrProp(Instance: TObject; const PropName: string; const Value: RawByteString);
- begin
- SetRawByteStrProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- {$ifndef FPUNONE}
- { ---------------------------------------------------------------------
- Float properties
- ---------------------------------------------------------------------}
- function GetFloatProp(Instance : TObject;PropInfo : PPropInfo) : Extended;
- type
- TGetExtendedProc = function:Extended of object;
- TGetExtendedProcIndex = function(Index: integer): Extended of object;
- TGetDoubleProc = function:Double of object;
- TGetDoubleProcIndex = function(Index: integer): Double of object;
- TGetSingleProc = function:Single of object;
- TGetSingleProcIndex = function(Index: integer):Single of object;
- TGetCurrencyProc = function : Currency of object;
- TGetCurrencyProcIndex = function(Index: integer) : Currency of object;
- var
- AMethod : TMethod;
- begin
- Result:=0.0;
- case PropInfo^.PropProcs and 3 of
- ptField:
- Case GetTypeData(PropInfo^.PropType)^.FloatType of
- ftSingle:
- Result:=PSingle(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- ftDouble:
- Result:=PDouble(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- ftExtended:
- Result:=PExtended(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- ftcomp:
- Result:=PComp(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- ftcurr:
- Result:=PCurrency(Pointer(Instance)+PtrUInt(PropInfo^.GetProc))^;
- end;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- Case GetTypeData(PropInfo^.PropType)^.FloatType of
- ftSingle:
- if ((PropInfo^.PropProcs shr 6) and 1)=0 then
- Result:=TGetSingleProc(AMethod)()
- else
- Result:=TGetSingleProcIndex(AMethod)(PropInfo^.Index);
- ftDouble:
- if ((PropInfo^.PropProcs shr 6) and 1)=0 then
- Result:=TGetDoubleProc(AMethod)()
- else
- Result:=TGetDoubleProcIndex(AMethod)(PropInfo^.Index);
- ftExtended:
- if ((PropInfo^.PropProcs shr 6) and 1)=0 then
- Result:=TGetExtendedProc(AMethod)()
- else
- Result:=TGetExtendedProcIndex(AMethod)(PropInfo^.Index);
- ftCurr:
- if ((PropInfo^.PropProcs shr 6) and 1)=0 then
- Result:=TGetCurrencyProc(AMethod)()
- else
- Result:=TGetCurrencyProcIndex(AMethod)(PropInfo^.Index);
- end;
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- Procedure SetFloatProp(Instance : TObject;PropInfo : PPropInfo; Value : Extended);
- type
- TSetExtendedProc = procedure(const AValue: Extended) of object;
- TSetExtendedProcIndex = procedure(Index: integer; AValue: Extended) of object;
- TSetDoubleProc = procedure(const AValue: Double) of object;
- TSetDoubleProcIndex = procedure(Index: integer; AValue: Double) of object;
- TSetSingleProc = procedure(const AValue: Single) of object;
- TSetSingleProcIndex = procedure(Index: integer; AValue: Single) of object;
- TSetCurrencyProc = procedure(const AValue: Currency) of object;
- TSetCurrencyProcIndex = procedure(Index: integer; AValue: Currency) of object;
- Var
- AMethod : TMethod;
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptfield:
- Case GetTypeData(PropInfo^.PropType)^.FloatType of
- ftSingle:
- PSingle(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Value;
- ftDouble:
- PDouble(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Value;
- ftExtended:
- PExtended(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Value;
- {$ifdef FPC_COMP_IS_INT64}
- ftComp:
- PComp(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=trunc(Value);
- {$else FPC_COMP_IS_INT64}
- ftComp:
- PComp(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Comp(Value);
- {$endif FPC_COMP_IS_INT64}
- ftCurr:
- PCurrency(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^:=Value;
- end;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- Case GetTypeData(PropInfo^.PropType)^.FloatType of
- ftSingle:
- if ((PropInfo^.PropProcs shr 6) and 1)=0 then
- TSetSingleProc(AMethod)(Value)
- else
- TSetSingleProcIndex(AMethod)(PropInfo^.Index,Value);
- ftDouble:
- if ((PropInfo^.PropProcs shr 6) and 1)=0 then
- TSetDoubleProc(AMethod)(Value)
- else
- TSetDoubleProcIndex(AMethod)(PropInfo^.Index,Value);
- ftExtended:
- if ((PropInfo^.PropProcs shr 6) and 1)=0 then
- TSetExtendedProc(AMethod)(Value)
- else
- TSetExtendedProcIndex(AMethod)(PropInfo^.Index,Value);
- ftCurr:
- if ((PropInfo^.PropProcs shr 6) and 1)=0 then
- TSetCurrencyProc(AMethod)(Value)
- else
- TSetCurrencyProcIndex(AMethod)(PropInfo^.Index,Value);
- end;
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- function GetFloatProp(Instance: TObject; const PropName: string): Extended;
- begin
- Result:=GetFloatProp(Instance,FindPropInfo(Instance,PropName))
- end;
- Procedure SetFloatProp(Instance: TObject; const PropName: string; Value: Extended);
- begin
- SetFloatProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- {$endif}
- { ---------------------------------------------------------------------
- Method properties
- ---------------------------------------------------------------------}
- Function GetMethodProp(Instance : TObject;PropInfo : PPropInfo) : TMethod;
- type
- TGetMethodProcIndex=function(Index: Longint): TMethod of object;
- TGetMethodProc=function(): TMethod of object;
- var
- value: PMethod;
- AMethod : TMethod;
- begin
- Result.Code:=nil;
- Result.Data:=nil;
- case (PropInfo^.PropProcs) and 3 of
- ptField:
- begin
- Value:=PMethod(Pointer(Instance)+PtrUInt(PropInfo^.GetProc));
- if Value<>nil then
- Result:=Value^;
- end;
- ptStatic,
- ptVirtual:
- begin
- if (PropInfo^.PropProcs and 3)=ptStatic then
- AMethod.Code:=PropInfo^.GetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.GetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- Result:=TGetMethodProcIndex(AMethod)(PropInfo^.Index)
- else
- Result:=TGetMethodProc(AMethod)();
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotReadProperty, [PropInfo^.Name]);
- end;
- end;
- Procedure SetMethodProp(Instance : TObject;PropInfo : PPropInfo; const Value : TMethod);
- type
- TSetMethodProcIndex=procedure(index:longint;p:TMethod) of object;
- TSetMethodProc=procedure(p:TMethod) of object;
- var
- AMethod : TMethod;
- begin
- case (PropInfo^.PropProcs shr 2) and 3 of
- ptField:
- PMethod(Pointer(Instance)+PtrUInt(PropInfo^.SetProc))^ := Value;
- ptStatic,
- ptVirtual:
- begin
- if ((PropInfo^.PropProcs shr 2) and 3)=ptStatic then
- AMethod.Code:=PropInfo^.SetProc
- else
- AMethod.Code:=PCodePointer(Pointer(Instance.ClassType)+PtrUInt(PropInfo^.SetProc))^;
- AMethod.Data:=Instance;
- if ((PropInfo^.PropProcs shr 6) and 1)<>0 then
- TSetMethodProcIndex(AMethod)(PropInfo^.Index,Value)
- else
- TSetMethodProc(AMethod)(Value);
- end;
- else
- raise EPropertyError.CreateFmt(SErrCannotWriteToProperty, [PropInfo^.Name]);
- end;
- end;
- Function GetMethodProp(Instance: TObject; const PropName: string): TMethod;
- begin
- Result:=GetMethodProp(Instance,FindPropInfo(Instance,PropName));
- end;
- Procedure SetMethodProp(Instance: TObject; const PropName: string; const Value: TMethod);
- begin
- SetMethodProp(Instance,FindPropInfo(Instance,PropName),Value);
- end;
- { ---------------------------------------------------------------------
- Variant properties
- ---------------------------------------------------------------------}
- Procedure CheckVariantEvent(P : CodePointer);
- begin
- If (P=Nil) then
- Raise Exception.Create(SErrNoVariantSupport);
- end;
- Function GetVariantProp(Instance : TObject;PropInfo : PPropInfo): Variant;
- begin
- CheckVariantEvent(CodePointer(OnGetVariantProp));
- Result:=OnGetVariantProp(Instance,PropInfo);
- end;
- Procedure SetVariantProp(Instance : TObject;PropInfo : PPropInfo; const Value: Variant);
- begin
- CheckVariantEvent(CodePointer(OnSetVariantProp));
- OnSetVariantProp(Instance,PropInfo,Value);
- end;
- Function GetVariantProp(Instance: TObject; const PropName: string): Variant;
- begin
- Result:=GetVariantProp(Instance,FindPropInfo(Instance,PropName));
- end;
- Procedure SetVariantProp(Instance: TObject; const PropName: string; const Value: Variant);
- begin
- SetVariantprop(instance,FindpropInfo(Instance,PropName),Value);
- end;
- { ---------------------------------------------------------------------
- All properties through variant.
- ---------------------------------------------------------------------}
- Function GetPropValue(Instance: TObject; const PropName: string): Variant;
- begin
- Result := GetPropValue(Instance,FindPropInfo(Instance, PropName));
- end;
- Function GetPropValue(Instance: TObject; const PropName: string; PreferStrings: Boolean): Variant;
- begin
- Result := GetPropValue(Instance,FindPropInfo(Instance, PropName),PreferStrings);
- end;
- Function GetPropValue(Instance: TObject; PropInfo: PPropInfo): Variant;
- begin
- Result := GetPropValue(Instance, PropInfo, True);
- end;
- Function GetPropValue(Instance: TObject; PropInfo: PPropInfo; PreferStrings: Boolean): Variant;
- begin
- CheckVariantEvent(CodePointer(OnGetPropValue));
- Result:=OnGetPropValue(Instance,PropInfo,PreferStrings);
- end;
- Procedure SetPropValue(Instance: TObject; const PropName: string; const Value: Variant);
- begin
- SetPropValue(Instance, FindPropInfo(Instance, PropName), Value);
- end;
- Procedure SetPropValue(Instance: TObject; PropInfo: PPropInfo; const Value: Variant);
- begin
- CheckVariantEvent(CodePointer(OnSetPropValue));
- OnSetPropValue(Instance,PropInfo,Value);
- end;
- { ---------------------------------------------------------------------
- Easy access methods that appeared in Delphi 5
- ---------------------------------------------------------------------}
- Function IsPublishedProp(Instance: TObject; const PropName: string): Boolean;
- begin
- Result:=GetPropInfo(Instance,PropName)<>Nil;
- end;
- Function IsPublishedProp(AClass: TClass; const PropName: string): Boolean;
- begin
- Result:=GetPropInfo(AClass,PropName)<>Nil;
- end;
- Function PropIsType(Instance: TObject; const PropName: string; TypeKind: TTypeKind): Boolean;
- begin
- Result:=PropType(Instance,PropName)=TypeKind
- end;
- Function PropIsType(AClass: TClass; const PropName: string; TypeKind: TTypeKind): Boolean;
- begin
- Result:=PropType(AClass,PropName)=TypeKind
- end;
- Function PropType(Instance: TObject; const PropName: string): TTypeKind;
- begin
- Result:=FindPropInfo(Instance,PropName)^.PropType^.Kind;
- end;
- Function PropType(AClass: TClass; const PropName: string): TTypeKind;
- begin
- Result:=FindPropInfo(AClass,PropName)^.PropType^.Kind;
- end;
- Function IsStoredProp(Instance: TObject; const PropName: string): Boolean;
- begin
- Result:=IsStoredProp(instance,FindPropInfo(Instance,PropName));
- end;
- { TParameterLocation }
- function TParameterLocation.GetReference: Boolean;
- begin
- Result := (LocType and $80) <> 0;
- end;
- function TParameterLocation.GetRegType: TRegisterType;
- begin
- Result := TRegisterType(LocType and $7F);
- end;
- function TParameterLocation.GetShiftVal: Int8;
- begin
- if GetReference then begin
- if Offset < Low(Int8) then
- Result := Low(Int8)
- else if Offset > High(Int8) then
- Result := High(Int8)
- else
- Result := Offset;
- end else
- Result := 0;
- end;
- { TParameterLocations }
- function TParameterLocations.GetLocation(aIndex: Byte): PParameterLocation;
- begin
- if aIndex >= Count then
- Result := Nil
- else
- Result := PParameterLocation(PByte(aligntoptr(PByte(@Count) + SizeOf(Count))) + SizeOf(TParameterLocation) * aIndex);
- end;
- function TParameterLocations.GetTail: Pointer;
- begin
- Result := PByte(aligntoptr(PByte(@Count) + SizeOf(Count))) + SizeOf(TParameterLocation) * Count;
- end;
- { TProcedureParam }
- function TProcedureParam.GetParamType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(ParamTypeRef);
- end;
- function TProcedureParam.GetFlags: Byte;
- begin
- Result := PByte(@ParamFlags)^;
- end;
- { TManagedField }
- function TManagedField.GetTypeRef: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(TypeRefRef);
- end;
- { TArrayTypeData }
- function TArrayTypeData.GetElType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(ElTypeRef);
- end;
- function TArrayTypeData.GetDims(aIndex: Byte): PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(DimsRef[aIndex]);
- end;
- { TProcedureSignature }
- function TProcedureSignature.GetResultType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(ResultTypeRef);
- end;
- function TProcedureSignature.GetParam(ParamIndex: Integer): PProcedureParam;
- begin
- if (ParamIndex<0)or(ParamIndex>=ParamCount) then
- Exit(nil);
- Result := PProcedureParam(PByte(@Flags) + SizeOf(Self));
- while ParamIndex > 0 do
- begin
- Result := PProcedureParam(aligntoptr((PByte(@Result^.Name) + (Length(Result^.Name) + 1) * SizeOf(AnsiChar))));
- dec(ParamIndex);
- end;
- end;
- { TVmtMethodParam }
- function TVmtMethodParam.GetTail: Pointer;
- begin
- Result := PByte(@ParaLocs) + SizeOf(ParaLocs);
- end;
- function TVmtMethodParam.GetNext: PVmtMethodParam;
- begin
- Result := PVmtMethodParam(aligntoptr(Tail));
- end;
- function TVmtMethodParam.GetName: ShortString;
- begin
- Result := NamePtr^;
- end;
- { TIntfMethodEntry }
- function TIntfMethodEntry.GetParam(Index: Word): PVmtMethodParam;
- begin
- if Index >= ParamCount then
- Result := Nil
- else
- Result := PVmtMethodParam(PByte(aligntoptr(PByte(@NamePtr) + SizeOf(NamePtr))) + Index * PtrUInt(aligntoptr(Pointer(SizeOf(TVmtMethodParam)))));
- end;
- function TIntfMethodEntry.GetResultLocs: PParameterLocations;
- begin
- if not Assigned(ResultType) then
- Result := Nil
- else
- Result := PParameterLocations(PByte(aligntoptr(PByte(@NamePtr) + SizeOf(NamePtr))) + ParamCount * PtrUInt(aligntoptr(Pointer(SizeOf(TVmtMethodParam)))));
- end;
- function TIntfMethodEntry.GetTail: Pointer;
- begin
- Result := PByte(@NamePtr) + SizeOf(NamePtr);
- if ParamCount > 0 then
- Result := PByte(aligntoptr(Result)) + ParamCount * PtrUInt(aligntoptr(Pointer(SizeOf(TVmtMethodParam))));
- if Assigned(ResultType) then
- Result := PByte(aligntoptr(Result)) + SizeOf(PParameterLocations);
- end;
- function TIntfMethodEntry.GetNext: PIntfMethodEntry;
- begin
- Result := PIntfMethodEntry(aligntoptr(Tail));
- end;
- function TIntfMethodEntry.GetName: ShortString;
- begin
- Result := NamePtr^;
- end;
- { TIntfMethodTable }
- function TIntfMethodTable.GetMethod(Index: Word): PIntfMethodEntry;
- begin
- if (RTTICount = $FFFF) or (Index >= RTTICount) then
- Result := Nil
- else
- begin
- Result := aligntoptr(PIntfMethodEntry(PByte(@RTTICount) + SizeOf(RTTICount)));
- while Index > 0 do
- begin
- Result := Result^.Next;
- Dec(Index);
- end;
- end;
- end;
- { TVmtMethodTable }
- function TVmtMethodTable.GetEntry(Index: LongWord): PVmtMethodEntry;
- begin
- Result := PVmtMethodEntry(@Entries[0]) + Index;
- end;
- { TVmtFieldTable }
- function TVmtFieldTable.GetField(aIndex: Word): PVmtFieldEntry;
- var
- c: Word;
- begin
- if aIndex >= Count then
- Exit(Nil);
- c := aIndex;
- Result := @Fields;
- while c > 0 do begin
- Result := Result^.Next;
- Dec(c);
- end;
- end;
- { TVmtFieldEntry }
- function TVmtFieldEntry.GetNext: PVmtFieldEntry;
- begin
- Result := aligntoptr(Tail);
- end;
- function TVmtFieldEntry.GetTail: Pointer;
- begin
- Result := PByte(@Name) + Length(Name) + SizeOf(Byte);
- end;
- { TInterfaceData }
- function TInterfaceData.GetUnitName: ShortString;
- begin
- Result := UnitNameField;
- end;
- function TInterfaceData.GetPropertyTable: PPropData;
- var
- p: PByte;
- begin
- p := PByte(@UnitNameField[0]) + SizeOf(UnitNameField[0]) + Length(UnitNameField);
- Result := AlignTypeData(p);
- end;
- function TInterfaceData.GetMethodTable: PIntfMethodTable;
- begin
- Result := aligntoptr(PropertyTable^.Tail);
- end;
- { TInterfaceRawData }
- function TInterfaceRawData.GetUnitName: ShortString;
- begin
- Result := UnitNameField;
- end;
- function TInterfaceRawData.GetIIDStr: ShortString;
- begin
- Result := PShortString(AlignTypeData(PByte(@UnitNameField[0]) + SizeOf(UnitNameField[0]) + Length(UnitNameField)))^;
- end;
- function TInterfaceRawData.GetPropertyTable: PPropData;
- var
- p: PByte;
- begin
- p := AlignTypeData(PByte(@UnitNameField[0]) + SizeOf(UnitNameField[0]) + Length(UnitNameField));
- p := p + SizeOf(p^) + p^;
- Result := aligntoptr(p);
- end;
- function TInterfaceRawData.GetMethodTable: PIntfMethodTable;
- begin
- Result := aligntoptr(PropertyTable^.Tail);
- end;
- { TClassData }
- function TClassData.GetUnitName: ShortString;
- begin
- Result := UnitNameField;
- end;
- function TClassData.GetPropertyTable: PPropData;
- var
- p: PByte;
- begin
- p := PByte(@UnitNameField[0]) + SizeOf(UnitNameField[0]) + Length(UnitNameField);
- Result := AlignToPtr(p);
- end;
- { TTypeData }
- function TTypeData.GetBaseType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(BaseTypeRef);
- end;
- function TTypeData.GetCompType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(CompTypeRef);
- end;
- function TTypeData.GetParentInfo: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(ParentInfoRef);
- end;
- {$ifndef VER3_0}
- function TTypeData.GetRecInitData: PRecInitData;
- begin
- Result := PRecInitData(aligntoptr(PTypeData(RecInitInfo+2+PByte(RecInitInfo+1)^)));
- end;
- {$endif}
- function TTypeData.GetHelperParent: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(HelperParentRef);
- end;
- function TTypeData.GetExtendedInfo: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(ExtendedInfoRef);
- end;
- function TTypeData.GetIntfParent: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(IntfParentRef);
- end;
- function TTypeData.GetRawIntfParent: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(RawIntfParentRef);
- end;
- function TTypeData.GetIIDStr: ShortString;
- begin
- Result := PShortString(AlignTypeData(Pointer(@RawIntfUnit) + Length(RawIntfUnit) + 1))^;
- end;
- function TTypeData.GetElType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(elTypeRef);
- end;
- function TTypeData.GetElType2: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(elType2Ref);
- end;
- function TTypeData.GetInstanceType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(InstanceTypeRef);
- end;
- function TTypeData.GetRefType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(RefTypeRef);
- end;
- { TPropData }
- function TPropData.GetProp(Index: Word): PPropInfo;
- begin
- if Index >= PropCount then
- Result := Nil
- else
- begin
- Result := PPropInfo(aligntoptr(PByte(@PropCount) + SizeOf(PropCount)));
- while Index > 0 do
- begin
- Result := aligntoptr(Result^.Tail);
- Dec(Index);
- end;
- end;
- end;
- function TPropData.GetTail: Pointer;
- begin
- if PropCount = 0 then
- Result := PByte(@PropCount) + SizeOf(PropCount)
- else
- Result := Prop[PropCount - 1]^.Tail;
- end;
- { TPropInfo }
- function TPropInfo.GetPropType: PTypeInfo;
- begin
- Result := DerefTypeInfoPtr(PropTypeRef);
- end;
- function TPropInfo.GetTail: Pointer;
- begin
- Result := PByte(@Name[0]) + SizeOf(Name[0]) + Length(Name);
- end;
- function TPropInfo.GetNext: PPropInfo;
- begin
- Result := PPropInfo(aligntoptr(Tail));
- end;
- type
- TElementAlias = record
- Ordinal : Integer;
- Alias : string;
- end;
- TElementAliasArray = Array of TElementAlias;
- PElementAliasArray = ^TElementAliasArray;
- TEnumeratedAliases = record
- TypeInfo: PTypeInfo;
- Aliases: TElementAliasArray;
- end;
- TEnumeratedAliasesArray = Array of TEnumeratedAliases;
- Var
- EnumeratedAliases : TEnumeratedAliasesArray;
- Function IndexOfEnumeratedAliases(aTypeInfo : PTypeInfo) : integer;
- begin
- Result:=Length(EnumeratedAliases)-1;
- while (Result>=0) and (EnumeratedAliases[Result].TypeInfo<>aTypeInfo) do
- Dec(Result);
- end;
- Function GetEnumeratedAliases(aTypeInfo : PTypeInfo) : PElementAliasArray;
- Var
- I : integer;
- begin
- I:=IndexOfEnumeratedAliases(aTypeInfo);
- if I=-1 then
- Result:=Nil
- else
- Result:=@EnumeratedAliases[i].Aliases
- end;
- Function AddEnumeratedAliases(aTypeInfo : PTypeInfo) : PElementAliasArray;
- Var
- L : Integer;
- begin
- L:=Length(EnumeratedAliases);
- SetLength(EnumeratedAliases,L+1);
- EnumeratedAliases[L].TypeInfo:=aTypeInfo;
- Result:=@EnumeratedAliases[L].Aliases;
- end;
- procedure RemoveEnumElementAliases(aTypeInfo: PTypeInfo);
- Var
- I,L : integer;
- A : TEnumeratedAliases;
- begin
- I:=IndexOfEnumeratedAliases(aTypeInfo);
- if I=-1 then
- exit;
- A:=EnumeratedAliases[i];
- A.Aliases:=Nil;
- A.TypeInfo:=Nil;
- L:=Length(EnumeratedAliases)-1;
- EnumeratedAliases[i]:=EnumeratedAliases[L];
- EnumeratedAliases[L]:=A;
- SetLength(EnumeratedAliases,L);
- end;
- Resourcestring
- SErrNotAnEnumerated = 'Type information points to non-enumerated type';
- SErrInvalidEnumeratedCount = 'Invalid number of enumerated values';
- SErrDuplicateEnumerated = 'Duplicate alias for enumerated value';
- procedure AddEnumElementAliases(aTypeInfo: PTypeInfo; const aNames: array of string; aStartValue: Integer = 0);
- var
- Aliases: PElementAliasArray;
- A : TElementAliasArray;
- L, I, J : Integer;
- N : String;
- PT : PTypeData;
- begin
- if (aTypeInfo^.Kind<>tkEnumeration) then
- raise EArgumentException.Create(SErrNotAnEnumerated);
- PT:=GetTypeData(aTypeInfo);
- if (High(aNames)=-1) or ((aStartValue+High(aNames))> PT^.MaxValue) then
- raise EArgumentException.Create(SErrInvalidEnumeratedCount);
- Aliases:=GetEnumeratedAliases(aTypeInfo);
- if (Aliases=Nil) then
- Aliases:=AddEnumeratedAliases(aTypeInfo);
- A:=Aliases^;
- I:=0;
- L:=Length(a);
- SetLength(a,L+High(aNames)+1);
- try
- for N in aNames do
- begin
- for J:=0 to (L+I)-1 do
- if SameText(N,A[J].Alias) then
- raise EArgumentException.Create(SErrDuplicateEnumerated);
- with A[L+I] do
- begin
- Ordinal:=aStartValue+I;
- alias:=N;
- end;
- Inc(I);
- end;
- finally
- // In case of exception, we need to correct the length.
- if Length(A)<>I+L then
- SetLength(A,I+L);
- Aliases^:=A;
- end;
- end;
- function GetEnumeratedAliasValue(aTypeInfo: PTypeInfo; const aName: string): Integer;
- var
- I : Integer;
- Aliases: PElementAliasArray;
- begin
- Result:=-1;
- Aliases:=GetEnumeratedAliases(aTypeInfo);
- if (Aliases=Nil) then
- Exit;
- I:=Length(Aliases^)-1;
- While (Result=-1) and (I>=0) do
- begin
- if SameText(Aliases^[I].Alias, aName) then
- Result:=Aliases^[I].Ordinal;
- Dec(I);
- end;
- end;
- end.
|