Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
TListOfFunctions.cxx
Go to the documentation of this file.
1// @(#)root/cont
2// Author: Philippe Canal Aug 2013
3
4/*************************************************************************
5 * Copyright (C) 1995-2013, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12/** \class TListOfFunctions
13A collection of TFunction objects designed for fast access given a
14DeclId_t and for keep track of TFunction that were described
15unloaded function.
16*/
17
18#include "TListOfFunctions.h"
19#include "TClass.h"
20#include "TExMap.h"
21#include "TFunction.h"
22#include "TMethod.h"
23#include "TInterpreter.h"
24#include "TVirtualMutex.h"
25#include "TROOT.h"
26
28
29////////////////////////////////////////////////////////////////////////////////
30/// Constructor.
31
32TListOfFunctions::TListOfFunctions(TClass *cl) : fClass(cl),fIds(nullptr),fUnloaded(nullptr),fLastLoadMarker(0)
33{
34 fIds = new TExMap;
35 fUnloaded = new THashList;
36}
37
38////////////////////////////////////////////////////////////////////////////////
39/// Destructor.
40
48
49////////////////////////////////////////////////////////////////////////////////
50/// Add pair<id, object> to the map of functions and their ids.
51
53{
54 TFunction *f = dynamic_cast<TFunction*>(obj);
55 if (f) {
56 fIds->Add((Long64_t)f->GetDeclId(),(Long64_t)f);
57 }
58}
59
60////////////////////////////////////////////////////////////////////////////////
61/// Add object at the beginning of the list.
62
68
69////////////////////////////////////////////////////////////////////////////////
70/// Add object at the beginning of the list and also store option.
71/// Storing an option is useful when one wants to change the behaviour
72/// of an object a little without having to create a complete new
73/// copy of the object. This feature is used, for example, by the Draw()
74/// method. It allows the same object to be drawn in different ways.
75
77{
78 THashList::AddFirst(obj,opt);
79 MapObject(obj);
80}
81
82////////////////////////////////////////////////////////////////////////////////
83/// Add object at the end of the list.
84
90
91////////////////////////////////////////////////////////////////////////////////
92/// Add object at the end of the list and also store option.
93/// Storing an option is useful when one wants to change the behaviour
94/// of an object a little without having to create a complete new
95/// copy of the object. This feature is used, for example, by the Draw()
96/// method. It allows the same object to be drawn in different ways.
97
99{
100 THashList::AddLast(obj, opt);
101 MapObject(obj);
102}
103
104////////////////////////////////////////////////////////////////////////////////
105/// Insert object at location idx in the list.
106
108{
109 THashList::AddAt(obj, idx);
110 MapObject(obj);
111}
112
113////////////////////////////////////////////////////////////////////////////////
114/// Insert object after object after in the list.
115
117{
119 MapObject(obj);
120}
121
122////////////////////////////////////////////////////////////////////////////////
123/// Insert object after object after in the list.
124
130
131////////////////////////////////////////////////////////////////////////////////
132/// Insert object before object before in the list.
133
139
140////////////////////////////////////////////////////////////////////////////////
141/// Insert object before object before in the list.
142
148
149////////////////////////////////////////////////////////////////////////////////
150/// Remove all objects from the list. Does not delete the objects unless
151/// the THashList is the owner (set via SetOwner()).
152
159
160////////////////////////////////////////////////////////////////////////////////
161/// Delete all TFunction object files.
162
169
170////////////////////////////////////////////////////////////////////////////////
171/// Specialize FindObject to do search for the
172/// a function just by name or create it if its not already in the list
173
175{
178 if (!result) {
179
181 if (fClass) decl = gInterpreter->GetFunction(fClass->GetClassInfo(),name);
182 else decl = gInterpreter->GetFunction(nullptr,name);
183 if (decl) result = const_cast<TListOfFunctions*>(this)->Get(decl);
184 }
185 return result;
186}
187
188////////////////////////////////////////////////////////////////////////////////
189/// Return the set of overloads for this name, collecting all available ones.
190/// Can construct and insert new TFunction-s.
191
193{
195
198 Bool_t wasEmpty = true;
199 if (!overloads) {
200 overloads = new TList();
201 overloads->SetName(name);
203 } else {
205 while (TFunction* over = (TFunction*)iOverload()) {
206 wasEmpty = false;
207 overloadsSet.Add((Long64_t)(ULong64_t)over->GetDeclId(),
209 }
210 }
211
212 // Update if needed.
213 std::vector<DeclId_t> overloadDecls;
214 ClassInfo_t* ci = fClass ? fClass->GetClassInfo() : nullptr;
215 gInterpreter->GetFunctionOverloads(ci, name, overloadDecls);
216 for (std::vector<DeclId_t>::const_iterator iD = overloadDecls.begin(),
217 eD = overloadDecls.end(); iD != eD; ++iD) {
218 TFunction* over = Get(*iD);
219 if (wasEmpty || !overloadsSet.GetValue((Long64_t)(ULong64_t)over->GetDeclId())) {
220 overloads->Add(over);
221 }
222 }
223
224 return overloads;
225}
226
227////////////////////////////////////////////////////////////////////////////////
228/// Return the set of overloads for this name, collecting all available ones.
229/// Can construct and insert new TFunction-s.
230
232{
233 return const_cast<TListOfFunctions*>(this)->GetListForObjectNonConst(name);
234}
235
236////////////////////////////////////////////////////////////////////////////////
237/// Return the set of overloads for function obj, collecting all available ones.
238/// Can construct and insert new TFunction-s.
239
241{
242 if (!obj) return nullptr;
243 return const_cast<TListOfFunctions*>(this)
245}
246
247////////////////////////////////////////////////////////////////////////////////
248/// Return the TMethod or TFunction describing the function corresponding
249/// to the Decl 'id'. Return NULL if not found.
250
252{
253 if (!id) return nullptr;
254
256 return (TFunction*)fIds->GetValue((Long64_t)id);
257}
258
259////////////////////////////////////////////////////////////////////////////////
260/// Return (after creating it if necessary) the TMethod or TFunction
261/// describing the function corresponding to the Decl 'id'.
262
264{
265 if (!id) return nullptr;
266
268 //need the Find and possible Add to be one atomic operation
269 TFunction *f = Find(id);
270 if (f) return f;
271
272 if (gROOT->TestBit(kInvalidObject)) {
273 // Abort early during tear down.
274 return nullptr;
275 }
276
277 if (fClass) {
278 if (!gInterpreter->ClassInfo_Contains(fClass->GetClassInfo(),id)) return nullptr;
279 } else {
280 if (!gInterpreter->ClassInfo_Contains(nullptr,id)) return nullptr;
281 }
282
283 MethodInfo_t *m = gInterpreter->MethodInfo_Factory(id);
284
285 // Let's see if this is a reload ...
286 const char *name = gInterpreter->MethodInfo_Name(m);
288 TString mangledName( gInterpreter->MethodInfo_GetMangledName(m) );
290 TFunction *uf;
291 while ((uf = (TFunction *) next())) {
292 if (uf->GetMangledName() == mangledName) {
293 // Reuse
295
296 uf->Update(m);
297 f = uf;
298 break;
299 }
300 }
301 }
302 if (!f) {
303 if (fClass) f = new TMethod(m, fClass);
304 else f = new TFunction(m);
305 }
306 // Calling 'just' THahList::Add would turn around and call
307 // TListOfFunctions::AddLast which should *also* do the fIds->Add.
309 fIds->Add((Long64_t)id,(Long64_t)f);
310
311 return f;
312}
313
314////////////////////////////////////////////////////////////////////////////////
315/// Remove a pair<id, object> from the map of functions and their ids.
316
318{
319 TFunction *f = dynamic_cast<TFunction*>(obj);
320 if (f) {
321 fIds->Remove((Long64_t)f->GetDeclId());
322 }
323}
324
325////////////////////////////////////////////////////////////////////////////////
326/// Remove object from this collection and recursively remove the object
327/// from all other objects (and collections).
328/// This function overrides TCollection::RecursiveRemove that calls
329/// the Remove function. THashList::Remove cannot be called because
330/// it uses the hash value of the hash table. This hash value
331/// is not available anymore when RecursiveRemove is called from
332/// the TObject destructor.
333
335{
336 if (!obj) return;
337
340 UnmapObject(obj);
341
342}
343
344////////////////////////////////////////////////////////////////////////////////
345/// Remove object from the list.
346
348{
349 Bool_t found;
350
351 found = THashList::Remove(obj);
352 if (!found) {
353 found = fUnloaded->Remove(obj);
354 }
355 UnmapObject(obj);
356 if (found) return obj;
357 else return nullptr;
358}
359
360////////////////////////////////////////////////////////////////////////////////
361/// Remove object via its objlink from the list.
362
364{
365 if (!lnk) return nullptr;
366
367 TObject *obj = lnk->GetObject();
368
370 fUnloaded->Remove(obj);
371
372 UnmapObject(obj);
373 return obj;
374}
375
376////////////////////////////////////////////////////////////////////////////////
377/// Load all the functions known to the interpreter for the scope 'fClass'
378/// into this collection.
379
381{
382 if (fClass && fClass->GetClassInfo() == nullptr) return;
383
385
386 ULong64_t currentTransaction = gInterpreter->GetInterpreterStateMarker();
388 return;
389 }
391
393 if (fClass) info = fClass->GetClassInfo();
394 else info = gInterpreter->ClassInfo_Factory();
395
396 MethodInfo_t *t = gInterpreter->MethodInfo_Factory(info);
397 while (gInterpreter->MethodInfo_Next(t)) {
398 if (gInterpreter->MethodInfo_IsValid(t)) {
399 TDictionary::DeclId_t mid = gInterpreter->GetDeclId(t);
400 // Get will check if there is already there or create a new one
401 // (or re-use a previously unloaded version).
402 Get(mid);
403 }
404 }
405 gInterpreter->MethodInfo_Delete(t);
406 if (!fClass) gInterpreter->ClassInfo_Delete(info);
407}
408
409////////////////////////////////////////////////////////////////////////////////
410/// Mark 'all func' as being unloaded.
411/// After the unload, the function can no longer be found directly,
412/// until the decl can be found again in the interpreter (in which
413/// the func object will be reused.
414
416{
418 while (lnk) {
419 TFunction *func = (TFunction*)lnk->GetObject();
420
421 fIds->Remove((Long64_t)func->GetDeclId());
422 fUnloaded->Add(func);
423
424 lnk = lnk->Next();
425 }
426
428}
429
430////////////////////////////////////////////////////////////////////////////////
431/// Mark 'func' as being unloaded.
432/// After the unload, the function can no longer be found directly,
433/// until the decl can be found again in the interpreter (in which
434/// the func object will be reused.
435
437{
438 if (THashList::Remove(func)) {
439 // We contains the object, let remove it from the other internal
440 // list and move it to the list of unloaded objects.
441
442 fIds->Remove((Long64_t)func->GetDeclId());
443 fUnloaded->Add(func);
444 }
445}
446
447////////////////////////////////////////////////////////////////////////////////
448
454
455////////////////////////////////////////////////////////////////////////////////
456
462
463////////////////////////////////////////////////////////////////////////////////
464
470
471////////////////////////////////////////////////////////////////////////////////
472
474{
476 return THashList::After(obj);
477}
478
479////////////////////////////////////////////////////////////////////////////////
480
486
487////////////////////////////////////////////////////////////////////////////////
488
494
495////////////////////////////////////////////////////////////////////////////////
496
502
503////////////////////////////////////////////////////////////////////////////////
504
510
511////////////////////////////////////////////////////////////////////////////////
512
518
519////////////////////////////////////////////////////////////////////////////////
520
526
527
528////////////////////////////////////////////////////////////////////////////////
529
535
536////////////////////////////////////////////////////////////////////////////////
537
543
544
545////////////////////////////////////////////////////////////////////////////////
546
552
553/** \class TListOfFunctionsIter
554Iterator for TListOfFunctions.
555*/
556
558
559////////////////////////////////////////////////////////////////////////////////
560
563
564////////////////////////////////////////////////////////////////////////////////
565
571
Cppyy::TCppType_t fClass
#define f(i)
Definition RSha256.hxx:104
long long Long64_t
Definition RtypesCore.h:69
const char Option_t
Definition RtypesCore.h:66
#define ClassImp(name)
Definition Rtypes.h:374
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t option
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
char name[80]
Definition TGX11.cxx:110
R__EXTERN TVirtualMutex * gInterpreterMutex
#define gInterpreter
@ kInvalidObject
Definition TObject.h:380
#define gROOT
Definition TROOT.h:406
#define R__LOCKGUARD(mutex)
const_iterator begin() const
const_iterator end() const
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition TClass.h:84
ClassInfo_t * GetClassInfo() const
Definition TClass.h:440
virtual TObject ** GetObjectRef(const TObject *obj) const =0
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
const void * DeclId_t
This class stores a (key,value) pair using an external hash.
Definition TExMap.h:33
void Remove(ULong64_t hash, Long64_t key)
Remove entry with specified key from the TExMap.
Definition TExMap.cxx:217
void Add(ULong64_t hash, Long64_t key, Long64_t value)
Add an (key,value) pair to the table. The key should be unique.
Definition TExMap.cxx:88
Long64_t GetValue(ULong64_t hash, Long64_t key)
Return the value belonging to specified key and hash value.
Definition TExMap.cxx:174
Global functions class (global functions are obtained from CINT).
Definition TFunction.h:30
DeclId_t GetDeclId() const
void Delete(Option_t *option="") override
Remove all objects from the list AND delete all heap based objects.
void AddBefore(const TObject *before, TObject *obj) override
Insert object before object before in the list.
void Clear(Option_t *option="") override
Remove all objects from the list.
void AddFirst(TObject *obj) override
Add object at the beginning of the list.
Definition THashList.cxx:69
void AddAfter(const TObject *after, TObject *obj) override
Insert object after object after in the list.
void RecursiveRemove(TObject *obj) override
Remove object from this collection and recursively remove the object from all other objects (and coll...
void AddAt(TObject *obj, Int_t idx) override
Insert object at location idx in the list.
THashList(const THashList &)=delete
const TList * GetListForObject(const char *name) const
Return the THashTable's list (bucket) in which obj can be found based on its hash; see THashTable::Ge...
TObject * Remove(TObject *obj) override
Remove object from the list.
TObject * FindObject(const char *name) const override
Find object using its name.
void AddLast(TObject *obj) override
Add object at the end of the list.
Definition THashList.cxx:95
void Add(TObject *obj) override
Add object to the hash table.
TObject * FindObject(const char *name) const override
Find object using its name.
TDictionary::DeclId_t DeclId_t
Iterator abstract base class.
Definition TIterator.h:30
Iterator of linked list.
Definition TList.h:191
TObject * Next() override
Return next object in the list. Returns 0 when no more objects in list.
Definition TList.cxx:1112
Iterator for TListOfFunctions.
TListOfFunctionsIter(const TListOfFunctions *l, Bool_t dir=kIterForward)
TObject * Next() override
Return next object in the list. Returns 0 when no more objects in list.
A collection of TFunction objects designed for fast access given a DeclId_t and for keep track of TFu...
THashList * fUnloaded
void Clear(Option_t *option="") override
Remove all objects from the list.
void MapObject(TObject *obj)
Add pair<id, object> to the map of functions and their ids.
void AddBefore(const TObject *before, TObject *obj) override
Insert object before object before in the list.
TObject ** GetObjectRef(const TObject *obj) const override
Return address of pointer to obj.
TFunction * Get(DeclId_t id)
Return (after creating it if necessary) the TMethod or TFunction describing the function correspondin...
TObject * First() const override
Return the first object in the list. Returns 0 when list is empty.
Int_t IndexOf(const TObject *obj) const override
Return index of object in collection.
void Delete(Option_t *option="") override
Delete all TFunction object files.
void Load()
Load all the functions known to the interpreter for the scope 'fClass' into this collection.
TListOfFunctions(const TListOfFunctions &)=delete
TObject * Remove(TObject *obj) override
Remove object from the list.
TObject * After(const TObject *obj) const override
Returns the object after object obj.
TObject * Last() const override
Return the last object in the list. Returns 0 when list is empty.
TList * GetListForObjectNonConst(const char *name)
Return the set of overloads for this name, collecting all available ones.
~TListOfFunctions()
Destructor.
void UnmapObject(TObject *obj)
Remove a pair<id, object> from the map of functions and their ids.
TFunction * Find(DeclId_t id) const
Return the TMethod or TFunction describing the function corresponding to the Decl 'id'.
void AddAt(TObject *obj, Int_t idx) override
Insert object at location idx in the list.
virtual TList * GetListForObject(const char *name) const
Return the set of overloads for this name, collecting all available ones.
TDictionary::DeclId_t DeclId_t
TObject * At(Int_t idx) const override
Returns the object at position idx. Returns 0 if idx is out of range.
TObjLink * FirstLink() const override
void Unload()
Mark 'all func' as being unloaded.
void AddFirst(TObject *obj) override
Add object at the beginning of the list.
TObject * Before(const TObject *obj) const override
Returns the object before object obj.
void AddAfter(const TObject *after, TObject *obj) override
Insert object after object after in the list.
void AddLast(TObject *obj) override
Add object at the end of the list.
void RecursiveRemove(TObject *obj) override
Remove object from this collection and recursively remove the object from all other objects (and coll...
TIterator * MakeIterator(Bool_t dir=kIterForward) const override
Return a list iterator.
Int_t GetSize() const override
Return the capacity of the collection, i.e.
TObjLink * LastLink() const override
ULong64_t fLastLoadMarker
Int_t GetLast() const override
Returns index of last object in collection.
TObject * FindObject(const TObject *obj) const override
Find object using its hash value (returned by its Hash() member).
A doubly linked list.
Definition TList.h:38
TObject * After(const TObject *obj) const override
Returns the object after object obj.
Definition TList.cxx:328
virtual TObjLink * LastLink() const
Definition TList.h:105
TObject * Before(const TObject *obj) const override
Returns the object before object obj.
Definition TList.cxx:369
void Add(TObject *obj) override
Definition TList.h:81
TObject * Last() const override
Return the last object in the list. Returns 0 when list is empty.
Definition TList.cxx:691
TObject * First() const override
Return the first object in the list. Returns 0 when list is empty.
Definition TList.cxx:657
virtual TObjLink * FirstLink() const
Definition TList.h:102
TList()
Definition TList.h:72
TObject * At(Int_t idx) const override
Returns the object at position idx. Returns 0 if idx is out of range.
Definition TList.cxx:355
Each ROOT class (see TClass) has a linked list of methods.
Definition TMethod.h:38
Mother of all ROOT objects.
Definition TObject.h:41
virtual void Clear(Option_t *="")
Definition TObject.h:125
virtual const char * GetName() const
Returns name of object.
Definition TObject.cxx:457
virtual Int_t IndexOf(const TObject *obj) const
Return index of object in collection.
virtual Int_t GetLast() const
Returns index of last object in collection.
Basic string class.
Definition TString.h:139
TMarker m
Definition textangle.C:8
TLine l
Definition textangle.C:4