272 :
TFile(), fSQL(nullptr), fSQLClassInfos(nullptr), fUseSuffixes(
kTRUE), fSQLIOversion(1), fArrayLimit(21),
273 fCanChangeConfig(
kFALSE), fTablesType(), fUseTransactions(0), fUseIndexes(0), fModifyCounter(0), fQuerisCounter(0),
274 fBasicTypes(nullptr), fOtherTypes(nullptr), fUserName(), fLogFile(nullptr), fIdsTableExists(
kFALSE), fStmtCounter(0)
298 :
TFile(), fSQL(nullptr), fSQLClassInfos(nullptr), fUseSuffixes(
kTRUE), fSQLIOversion(1), fArrayLimit(21),
299 fCanChangeConfig(
kFALSE), fTablesType(), fUseTransactions(0), fUseIndexes(0), fModifyCounter(0), fQuerisCounter(0),
301 fIdsTableExists(
kFALSE), fStmtCounter(0)
304 ::Fatal(
"TFile::TFile",
"ROOT system not initialized");
308 SetTitle(
"TFile interface to SQL DB");
312 if (dbname && strstr(dbname,
"oracle://")) {
360 if (!create && !recreate && !
update && !read) {
365 if (!dbname || !dbname[0]) {
366 Error(
"TSQLFile",
"Database not specified");
375 Error(
"TSQLFile",
"Cannot connect to DB %s", dbname);
382 Error(
"TSQLFile",
"no write permission, DB %s locked", dbname);
391 Error(
"TSQLFile",
"DB tables already exists");
402 Error(
"TSQLFile",
"no write permission, DB %s locked", dbname);
409 Error(
"TSQLFile",
"DB %s tables not exist", dbname);
413 Error(
"TSQLFile",
"no read permission for DB %s tables", dbname);
450 fLogFile =
new std::ofstream(fname);
501 Error(
"SetUseSuffixes",
"Configurations already cannot be changed");
517 Error(
"SetArrayLimit",
"Configurations already cannot be changed");
531 Error(
"SetTablesType",
"Configurations already cannot be changed");
568 Error(
"SQLStartTransaction",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
582 Error(
"SQLCommit",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
596 Error(
"SQLRollback",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
618 Error(
"SetUseIndexes",
"Configurations already cannot be changed");
683 gROOT->GetListOfFiles()->Remove(
this);
712 return fSQL !=
nullptr;
726 if (opt !=
"READ" && opt !=
"UPDATE") {
727 Error(
"ReOpen",
"mode must be either READ or UPDATE, not %s", opt.
Data());
749 Error(
"ReOpen",
"Tables are locked, no write access");
799 Info(
"WriteStreamerInfo",
"Saving streamer infos to database");
811 Info(
"WriteStreamerInfo",
"Add %s", info->
GetName());
887 Info(
"GetStreamerInfoList",
"Start reading of streamer infos");
896 return {
nullptr, 1, hash};
899 return {list, 0, hash};
932 if (specialkeyid >= 0) {
947 while ((row = res->
Next()) !=
nullptr) {
953 const char *keyname = (*row)[3];
954 const char *keytitle = (*row)[4];
955 const char *keydatime = (*row)[5];
956 Int_t cycle = atoi((*row)[6]);
957 const char *classname = (*row)[7];
960 std::cout <<
" Reading keyid = " << keyid <<
" name = " << keyname << std::endl;
967 Error(
"StreamKeysForDirectory",
"Key with id %lld not exist in list", keyid);
969 }
else if (key->
IsKeyModified(keyname, keytitle, keydatime, cycle, classname))
973 TKeySQL *key =
new TKeySQL(dir, keyid, objid, keyname, keytitle, keydatime, cycle, classname);
987 Info(
"StreamKeysForDirectory",
"dir = %s numread = %d", dir->
GetName(), nkeys);
1024 Error(
"InitSqlDatabase",
"Cannot detect proper tabled in database. Close.");
1036 gROOT->GetListOfFiles()->Add(
this);
1041 TKey *key =
nullptr;
1043 while ((key = (
TKey *)iter()) !=
nullptr) {
1070#define ReadIntCfg(name, target) \
1071 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \
1072 target = value.Atoi(); \
1075#define ReadBoolCfg(name, target) \
1076 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \
1077 target = value.CompareTo(sqlio::True, TString::kIgnoreCase) == 0; \
1080#define ReadStrCfg(name, target) \
1081 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \
1087 while ((row = res->
Next()) !=
nullptr) {
1099 Error(
"ReadConfigurations",
"Invalid configuration field %s", field.
Data());
1131 sqlcmd +=
" ENGINE=";
1137#define WrintCfg(name, type, value) \
1139 sqlcmd.Form("INSERT INTO %s%s%s VALUES (%s%s%s, %s" type "%s)", quote, sqlio::ConfigTable, quote, vquote, name, \
1140 vquote, vquote, value, vquote); \
1141 SQLQuery(sqlcmd.Data()); \
1162 "CREATE TABLE %s%s%s (%s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s)",
1163 quote,
sqlio::KeysTable, quote, quote,
SQLKeyIdColumn(), quote,
SQLIntType(), quote,
SQLDirIdColumn(), quote,
1169 sqlcmd +=
" ENGINE=";
1191 Error(
"IncrementModifyCounter",
"Cannot update tables without write accsess");
1228 res.
Form(
"SELECT %s FROM %s", columns.
Data(), tables.
Data());
1240 if (!info || !sqlinfo)
1249 table_syn.
Form(
"t%d", ++tablecnt);
1290 buf.
Form(
", %s.%s%s%s", table_syn.
Data(), quote, colname.
Data(), quote);
1304 buf.
Form(
", %s.%s%s%s", table_syn.
Data(), quote, colname.
Data(), quote);
1312 return (columns.
Length() > 0) && (tables.
Length() > 0);
1354 sqlcmd.
Form(
"SELECT %s%s%s FROM %s%s%s WHERE %s%s%s=%s%s%s", quote,
sqlio::CT_Value, quote, quote,
1366 return field.
Atoi();
1401 Info(
"SQLQuery",
"%s", cmd);
1414 *ok = res !=
nullptr;
1448 Info(
"SQLStatement",
"%s", cmd);
1481 while ((cmd = iter()) !=
nullptr) {
1519 Info(
"SQLMaximumValue",
"Requests for %s column %s", tablename, columnname);
1524 query.
Form(
"SELECT MAX(%s%s%s) FROM %s%s%s", quote, columnname, quote, quote, tablename, quote);
1541 Info(
"SQLMaximumValue",
"Result = %lld", maxid);
1563 while ((obj = iter()) !=
nullptr) {
1564 sqlcmd.
Form(
"DROP TABLE %s%s%s", quote, obj->
GetName(), quote);
1620 sqlcmd.
Form(
"SELECT MIN(%s%s%s), MAX(%s%s%s) FROM %s%s%s WHERE %s%s%s=%lld", quote,
SQLObjectIdColumn(), quote,
1636 if (minid <= maxid) {
1640 querymask.
Form(
"DELETE FROM %s%s%s WHERE %s%s%s BETWEEN %lld AND %lld", quote,
"%s", quote, quote,
1679 while ((obj = next()) !=
nullptr) {
1703 sqlcmd.
Form(
"INSERT INTO %s%s%s VALUES (%lld, %lld, %lld, %s%s%s, %s%s%s, %s%s%s, %d, %s%s%s)", quote,
1739 sqlcmd.
Form(
"UPDATE %s%s%s SET %s%s%s=%s, %s%s%s=%s, %s%s%s=%s, %s%s%s=%d WHERE %s%s%s=%lld", quote,
1782 if (strcmp(info->
GetName(), clname) == 0)
1840 const char *suffix = rawtable ?
"_raw" :
"_ver";
1842 res.
Form(
"%s%s%d", clname, suffix, version);
1850 Int_t cnt = version;
1855 scnt.
Form(
"%d%s", cnt, suffix);
1857 if (numlen >= maxlen - 2)
1862 if (
len + numlen > maxlen)
1863 res.
Resize(maxlen - numlen);
1872 }
while (cnt < 10000);
1874 Error(
"DefineTableName",
"Cannot produce table name for class %s ver %d", clname, version);
1875 res.
Form(
"%s%s%d", clname, suffix, version);
1924 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %d ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
1932 while ((row = res->
Next()) !=
nullptr) {
1936 const char *classname = row->
GetField(3);
1937 const char *classtable = row->
GetField(4);
1954 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %lld ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
1961 while ((row = res->
Next()) !=
nullptr) {
1965 const char *fullname = row->
GetField(3);
1966 const char *sqlname = row->
GetField(4);
1967 const char *info2 = row->
GetField(5);
1983 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %d ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
1989 while ((row = res->
Next()) !=
nullptr) {
1993 const char *classname = row->
GetField(3);
1994 const char *rawtable = row->
GetField(4);
2035 sqlcmd.
Form(
"CREATE TABLE %s%s%s (%s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s)", quote,
2041 sqlcmd +=
" ENGINE=";
2049 sqlcmd.
Form(
"INSERT INTO %s%s%s VALUES (%lld, %d, %d, %s%s%s, %s%s%s, %s%s%s)", quote,
sqlio::IdsTable, quote,
2050 tableid, subid,
type, valuequote,
name, valuequote, valuequote, sqlname, valuequote, valuequote, info,
2078 Info(
"CreateClassTable",
"cl:%s", sqlinfo->
GetName());
2088 TIter iter(colinfos);
2100 if ((strpbrk(colname,
"[:.]<>") !=
nullptr) || forcequote) {
2106 sqlcmd += colname, sqlcmd +=
" ";
2117 sqlcmd +=
" ENGINE=";
2130 sqlcmd.
Form(
"CREATE UNIQUE INDEX %s%s_I1%s ON %s%s%s (%s%s%s)", quote, indxname.
Data(), quote, quote,
2156 sqlcmd.
Form(
"CREATE TABLE %s%s%s (%s%s%s %s, %s%s%s %s, %s %s, %s %s)", quote, sqlinfo->
GetRawTableName(), quote,
2161 sqlcmd +=
" ENGINE=";
2172 sqlcmd.
Form(
"CREATE UNIQUE INDEX %s%s_I2%s ON %s%s%s (%s%s%s, %s%s%s)", quote, indxname.
Data(), quote, quote,
2202 sqlcmd +=
" ENGINE=";
2235 if (*
value++ !=
' ')
2244 if (*
value++ !=
' ')
2249 if (*
value++ !=
' ')
2257 if (*
value++ !=
' ')
2264 if (objid2 != objid)
2267 return atoi(s_strid.
Data());
2313 Info(
"VerifyObjectTable",
"Checks if object table is there");
2320 sqlcmd.
Form(
"CREATE TABLE %s%s%s (%s%s%s %s, %s%s%s %s, %s%s%s %s, %s%s%s %s)", quote,
sqlio::ObjectsTable, quote,
2325 sqlcmd +=
" ENGINE=";
2351 sqlcmd.
Form(
"SELECT %s%s%s, %s%s%s FROM %s%s%s WHERE %s%s%s=%lld", quote,
sqlio::OT_Class, quote, quote,
2364 return row !=
nullptr;
2378 sqlcmd.
Form(
"SELECT %s%s%s, %s%s%s, %s%s%s FROM %s%s%s WHERE %s%s%s=%lld ORDER BY %s%s%s", quote,
2387 Info(
"SQLObjectsInfo",
"%s", sqlcmd.
Data());
2398 const char *clname = stmt->
GetString(1);
2416 while ((row = res->
Next()) !=
nullptr) {
2418 const char *clname = row->
GetField(1);
2441 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s=%lld", quote, sqlinfo->
GetClassTableName(), quote, quote,
2455 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s BETWEEN %lld AND %lld ORDER BY %s%s%s", quote,
2494 Info(
"BuildStatement",
"%s", sqlcmd.
Data());
2529 Error(
"StoreObjectInTables",
"Cannot convert object data to TSQLStructure");
2536 Error(
"StoreObjectInTables",
"Cannot convert to SQL statements");
2547 Error(
"StoreObject",
"Cannot correctly store object data in database");
2568 return (typ < 0) || (typ > 18) ?
nullptr :
fBasicTypes[typ];
2647 TString col1name =
"CreateTime";
2648 TString col2name =
"ModifyTime";
2656 sqlcmd.
Form(
"UPDATE %s%s%s SET %s%s%s=%s, %s%s%s=%s, %s%s%s=%s WHERE %s%s%s=%lld", quote,
2672 if (
b.IsReading()) {
2673 Version_t R__v =
b.ReadVersion(
nullptr,
nullptr);
2676 b.ClassMember(
"CreateTime",
"TString");
2681 b.ClassMember(
"ModifyTime",
"TString");
2686 b.ClassMember(
"UUID",
"TString");
2698 b.ClassMember(
"CreateTime",
"TString");
2703 b.ClassMember(
"ModifyTime",
"TString");
2708 b.ClassMember(
"UUID",
"TString");
static void update(gsl_integration_workspace *workspace, double a1, double b1, double area1, double error1, double a2, double b2, double area2, double error2)
void Info(const char *location, const char *msgfmt,...)
Use this function for informational messages.
void Error(const char *location, const char *msgfmt,...)
Use this function in case an error occurred.
void Fatal(const char *location, const char *msgfmt,...)
Use this function in case of a fatal error. It will abort the program.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize id
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void on
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
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 Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t UChar_t len
Option_t Option_t TPoint TPoint const char mode
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 Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
R__EXTERN TVirtualMutex * gROOTMutex
const char * mysql_OtherTypes[13]
const char * oracle_BasicTypes[21]
#define ReadStrCfg(name, target)
#define ReadBoolCfg(name, target)
#define ReadIntCfg(name, target)
const char * mysql_BasicTypes[21]
#define WrintCfg(name, type, value)
const char * oracle_OtherTypes[13]
#define R__LOCKGUARD(mutex)
Array of chars or bytes (8 bits per element).
void InitMap() override
Create the fMap container and initialize them with the null object.
Converts data to SQL statements or read data from SQL tables.
Int_t GetErrorFlag() const
TSQLStructure * SqlWriteAny(const void *obj, const TClass *cl, Long64_t objid)
Convert object of any class to sql structures Return pointer on created TSQLStructure TSQLStructure o...
void * SqlReadAny(Long64_t keyid, Long64_t objid, TClass **cl, void *obj=nullptr)
Recreate object from sql structure.
Buffer base class used for serializing objects.
TClass instances represent classes, structs and namespaces in the ROOT type system.
TVirtualStreamerInfo * GetStreamerInfo(Int_t version=0, Bool_t isTransient=kFALSE) const
returns a pointer to the TVirtualStreamerInfo object for version If the object does not exist,...
Version_t GetClassVersion() const
void Print(Option_t *option="") const override
Default print for collections, calls Print(option, 1).
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
This class stores the date and time with a precision of one second in an unsigned 32 bit word (950130...
const char * AsSQLString() const
Return the date & time in SQL compatible string format, like: 1997-01-15 20:16:28.
void Set()
Set Date/Time to current time as reported by the system.
A ROOT file is structured in Directories (like a file system).
void Close(Option_t *option="") override
Delete all objects from memory and directory structure itself.
Bool_t cd() override
Change current directory to "this" directory.
TFile * fFile
Pointer to current file in memory.
Bool_t IsWritable() const override
TDatime fDatimeM
Date and time of last modification.
const TDatime & GetCreationDate() const
const TDatime & GetModificationDate() const
Long64_t fSeekDir
Location of directory on file.
TDatime fDatimeC
Date and time when directory is created.
Bool_t fWritable
True if directory is writable.
void SetWritable(Bool_t writable=kTRUE) override
Set the new value of fWritable recursively.
void Build(TFile *motherFile=nullptr, TDirectory *motherDir=nullptr) override
TList * fKeys
Pointer to keys list in memory.
TDirectory::TContext keeps track and restore the current directory.
Describe directory structure in memory.
virtual Long64_t GetSeekDir() const
void SetName(const char *newname) override
Set the name for directory If the directory name is changed after the directory was written once,...
virtual TList * GetListOfKeys() const
TDirectory * GetMotherDir() const
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
Long64_t fBytesRead
Number of bytes read from this file.
Double_t fSum2Buffer
Sum of squares of buffer sizes of objects written so far.
virtual void ReadStreamerInfo()
Read the list of StreamerInfo from this file.
TArrayC * fClassIndex
!Index of TStreamerInfo classes written to this file
Long64_t fSeekInfo
Location on disk of StreamerInfo record.
virtual void SetCompressionLevel(Int_t level=ROOT::RCompressionSetting::ELevel::kUseMin)
See comments for function SetCompressionSettings.
Int_t fVersion
File format version.
Int_t fNbytesInfo
Number of bytes for StreamerInfo record.
TString fOption
File options.
Char_t fUnits
Number of bytes for file pointers.
TObjArray * fProcessIDs
!Array of pointers to TProcessIDs
Long64_t fBytesWrite
Number of bytes written to this file.
TList * fFree
Free segments linked list table.
TString fRealName
Effective real file name (not original url)
Double_t fSumBuffer
Sum of buffer sizes of objects written so far.
Int_t fNProcessIDs
Number of TProcessID written to this file.
Int_t fWritten
Number of objects written so far.
TKeySQL represents meta-information about object, which was written to SQL database.
Bool_t IsKeyModified(const char *keyname, const char *keytitle, const char *keydatime, Int_t cycle, const char *classname)
Compares keydata with provided and return kTRUE if key was modified Used in TFile::StreamKeysForDirec...
Long64_t GetDBKeyId() const
Long64_t GetDBDirId() const
return sql id of parent directory
Long64_t GetDBObjId() const
Book space in a file, create I/O buffers, to fill them, (un)compress them.
const char * GetTitle() const override
Returns title (title can contain 32x32 xpm thumbnail/icon).
virtual const char * GetClassName() const
const TDatime & GetDatime() const
Short_t GetCycle() const
Return cycle number associated to this key.
void Add(TObject *obj) override
void Delete(Option_t *option="") override
Remove all objects from the list AND delete all heap based objects.
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
const char * GetName() const override
Returns name of object.
const char * GetTitle() const override
Returns title of object.
void Delete(Option_t *option="") override
Remove all objects from the array AND delete all heap based objects.
void Add(TObject *obj) override
Mother of all ROOT objects.
virtual const char * GetName() const
Returns name of object.
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
virtual const char * ClassName() const
Returns name of class to which the object belongs.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual TClass * IsA() const
A TProcessID identifies a ROOT job in a unique way in time and space.
void Clear(Option_t *option="") override
delete the TObjArray pointing to referenced objects this function is called by TFile::Close("R")
static TProcessID * GetSessionProcessID()
static function returning the pointer to the session TProcessID
Int_t DecrementCount()
The reference fCount is used to delete the TProcessID in the TFile destructor when fCount = 0.
const char * GetSQLName() const
const char * GetSQLType() const
const char * GetName() const final
Returns name of object.
Contains information about tables specific to one class and version.
Bool_t IsClassTableExist() const
void SetRawTableName(const char *name)
void SetRawExist(Bool_t on)
void SetClassTableName(const char *name)
Int_t GetClassVersion() const
const char * GetName() const final
Returns name of object.
Long64_t GetClassId() const
const char * GetClassTableName() const
const char * GetRawTableName() const
void SetColumns(TObjArray *columns)
assigns new list of columns
Bool_t IsRawTableExist() const
Access an SQL db via the TFile interface.
Bool_t CreateClassTable(TSQLClassInfo *sqlinfo, TObjArray *colinfos)
Create normal class table if required.
TString MakeSelectQuery(TClass *cl)
Produce SELECT statement which can be used to get all data of class cl in one SELECT statement.
const char * SQLIdentifierQuote() const
Int_t DirReadKeys(TDirectory *) final
Read directory list of keys from database.
Long64_t VerifyObjectTable()
Checks that objects table is exists If not, table will be created Returns maximum value for existing ...
TSQLResult * GetNormalClassData(Long64_t objid, TSQLClassInfo *sqlinfo)
Method return request result for specified objid from normal classtable.
TSQLFile()
default TSQLFile constructor
Bool_t WriteSpecialObject(Long64_t keyid, TObject *obj, const char *name, const char *title)
write special kind of object like streamer infos or file itself keys for that objects should exist in...
void StartLogFile(const char *fname)
start logging of all SQL statements in specified file
Bool_t fUseSuffixes
! use suffixes in column names like fValue:Int_t or fObject:pointer
void AddIdEntry(Long64_t tableid, Int_t subid, Int_t type, const char *name, const char *sqlname, const char *info)
Add entry into IdsTable, where all tables names and columns names are listed.
TKey * CreateKey(TDirectory *mother, const TObject *obj, const char *name, Int_t bufsize) final
create SQL key, which will store object in data base
Bool_t ReadConfigurations()
read table configurations as special table
Int_t IsLongStringCode(Long64_t objid, const char *value)
Checks if this is long string code returns 0, if not or string id.
void CreateBasicTables()
Creates initial tables in database This is table with configurations and table with keys Function cal...
Int_t GetUseTransactions() const
void WriteHeader() final
Write file info like configurations, title, UUID and other.
TSQLClassInfo * FindSQLClassInfo(const char *clname, Int_t version)
Return (if exists) TSQLClassInfo for specified class name and version.
TSQLResult * SQLQuery(const char *cmd, Int_t flag=0, Bool_t *res=nullptr)
Submits query to SQL server.
const char * SQLDatetimeType() const
void ReadSQLClassInfos()
Read all class infos from IdsTable.
Bool_t Commit()
Commit transaction, started by StartTransaction() call.
void IncrementModifyCounter()
Update value of modify counter in config table Modify counter used to indicate that something was cha...
Int_t fArrayLimit
! limit for array size. when array bigger, its content converted to raw format
void SetLocking(Int_t mode)
Set locking mode for current database.
Int_t ReOpen(Option_t *mode) final
Reopen a file with a different access mode, like from READ to See TFile::Open() for details.
Bool_t SQLRollback()
Rollback all SQL operations, done after start transaction.
TObjArray * SQLObjectsInfo(Long64_t keyid)
Produce array of TSQLObjectInfo objects for all objects, belong to that key Array should be deleted b...
Bool_t GetUseSuffixes() const
Bool_t SQLCanStatement()
Test if DB support statement and number of open statements is not exceeded.
Bool_t CreateRawTable(TSQLClassInfo *sqlinfo)
Create the raw table.
Long64_t StoreObjectInTables(Long64_t keyid, const void *obj, const TClass *cl)
Store object in database. Return stored object id or -1 if error.
void InitSqlDatabase(Bool_t create)
initialize sql database and correspondent structures identical to TFile::Init() function
const char * SQLStrIdColumn() const
Bool_t IsOpen() const final
return kTRUE if file is opened and can be accessed
Bool_t SQLObjectInfo(Long64_t objid, TString &clname, Version_t &version)
Read from objects table data for specified objectid.
Int_t fQuerisCounter
! how many query was applied
const char * SQLValueQuote() const
const char * SQLBigTextType() const
Int_t GetLocking()
Return current locking mode for that file.
Bool_t HasTable(const char *name)
Test if table name exists.
TKeySQL * FindSQLKey(TDirectory *dir, Long64_t keyid)
Search for TKeySQL object with specified keyid.
const char * SQLDefaultTableType() const
Bool_t Rollback()
Rollback all operations, done after StartTransaction() call.
Bool_t IsWriteAccess()
Checkis, if lock is free in configuration tables.
Bool_t IsMySQL() const
checks, if MySQL database
InfoListRet GetStreamerInfoListImpl(bool) final
Read back streamer infos from database List of streamer infos is always stored with key:id 0,...
void SQLDeleteAllTables()
Delete all tables in database.
Bool_t IsOracle() const
checks, if Oracle database
void SetTablesType(const char *table_type)
Defines tables type, which is used in CREATE TABLE statements Now is only used for MySQL database,...
const char * SQLKeyIdColumn() const
Bool_t WriteKeyData(TKeySQL *key)
Add entry into keys table.
void SetUseTransactions(Int_t mode=kTransactionsAuto)
Defines usage of transactions statements for writing objects data to database.
Int_t fStmtCounter
! count numbers of active statements
Bool_t fCanChangeConfig
! variable indicates can be basic configuration changed or not
TString CodeLongString(Long64_t objid, Int_t strid)
Produces id which will be placed in column instead of string itself.
const char * SQLObjectIdColumn() const
const char ** fOtherTypes
! pointer on list of other SQL types like TEXT or blob
Bool_t fIdsTableExists
! indicate if IdsTable exists
TSQLStatement * GetBlobClassDataStmt(Long64_t objid, TSQLClassInfo *sqlinfo)
Method return request results for specified objid from streamer classtable Data returned in form of s...
TSQLResult * GetBlobClassData(Long64_t objid, TSQLClassInfo *sqlinfo)
Method return request results for specified objid from streamer classtable.
TObject * ReadSpecialObject(Long64_t keyid, TObject *obj=nullptr)
Read data of special kind of objects.
void DeleteKeyFromDB(Long64_t keyid)
Remove key with specified id from keys table also removes all objects data, related to this table.
void Close(Option_t *option="") final
Close a SQL file For more comments see TFile::Close() function.
Bool_t SQLTestTable(const char *tablename)
Test, if table of specified name exists.
const char * SQLIntType() const
return SQL integer type
TSQLStatement * SQLStatement(const char *cmd, Int_t bufsize=1000)
Produces SQL statement for currently conected DB server.
void SQLDeleteStatement(TSQLStatement *stmt)
delete statement and decrease counter
TList * fSQLClassInfos
! list of SQL class infos
void DirWriteKeys(TDirectory *) final
Write directory keys list to database.
std::ofstream * fLogFile
! log file with SQL statements
Long64_t DefineNextKeyId()
Returns next possible key identifier.
TSQLResult * GetNormalClassDataAll(Long64_t minobjid, Long64_t maxobjid, TSQLClassInfo *sqlinfo)
Return data for several objects from the range from normal class table.
Int_t GetUseIndexes() const
void WriteStreamerInfo() final
Store all TVirtualStreamerInfo, used in file, in sql database.
void SaveToDatabase()
save data which is not yet in Database Typically this is streamerinfos structures or
Bool_t SQLApplyCommands(TObjArray *cmds)
supplies set of commands to server Commands is stored as array of TObjString
const char ** fBasicTypes
! pointer on list of basic types specific for currently connected SQL server
Long64_t DirCreateEntry(TDirectory *) final
Create entry for directory in database.
Bool_t IsReadAccess()
dummy, in future should check about read access to database
Int_t SQLMaxIdentifierLength()
returns maximum allowed length of identifiers
Bool_t GetLongString(Long64_t objid, Int_t strid, TString &value)
Returns value of string, extracted from special table, where long strings are stored.
Bool_t ProduceClassSelectQuery(TVirtualStreamerInfo *info, TSQLClassInfo *sqlinfo, TString &columns, TString &tables, Int_t &tablecnt)
used by MakeClassSelectQuery method to add columns from table of class, specified by TVirtualStreamer...
Bool_t SQLCommit()
Commit SQL transaction.
const char * SQLRawIdColumn() const
Bool_t UpdateKeyData(TKeySQL *key)
Updates (overwrites) key data in KeysTable.
Int_t fUseIndexes
! use indexes for tables: 0 - off, 1 - only for basic tables, 2 + normal class tables,...
const char * GetDataBaseName() const
Return name of data base on the host For Oracle always return 0.
void SetUseSuffixes(Bool_t on=kTRUE)
enable/disable uasge of suffixes in columns names can be changed before first object is saved into fi...
Int_t fUseTransactions
! use transaction statements for writing data into the tables
Int_t StreamKeysForDirectory(TDirectory *dir, Bool_t doupdate, Long64_t specialkeyid=-1, TKeySQL **specialkey=nullptr)
read keys for specified directory (when update == kFALSE) or update value for modified keys when upda...
TString DefineTableName(const char *clname, Int_t version, Bool_t rawtable)
Proposes table name for class.
Bool_t IsTablesExists()
Checks if main keys table is existing.
void StopLogFile()
close logging file
void SetArrayLimit(Int_t limit=20)
Defines maximum number of columns for array representation If array size bigger than limit,...
Long64_t SQLMaximumValue(const char *tablename, const char *columnname)
Returns maximum value, found in specified columnname of table tablename Column type should be numeric...
TSQLServer * fSQL
! interface to SQL database
TString fTablesType
! type, used in CREATE TABLE statements
TSQLClassInfo * RequestSQLClassInfo(const char *clname, Int_t version)
Search in database tables for specified class and return TSQLClassInfo object.
Bool_t IsODBC() const
checks, if ODBC driver used for database connection
void DirWriteHeader(TDirectory *) final
Update dir header in the file.
Int_t fModifyCounter
! indicates how many changes was done with database tables
void Streamer(TBuffer &) override
Streamer for TSQLFile class.
~TSQLFile() override
destructor of TSQLFile object
const char * SQLDirIdColumn() const
Int_t fSQLIOversion
! version of SQL I/O which is stored in configurations
Bool_t StartTransaction()
Start user transaction.
const char * SQLSmallTextType() const
void SetUseIndexes(Int_t use_type=kIndexesBasic)
Specify usage of indexes for data tables.
const char * SQLCompatibleType(Int_t typ) const
Returns sql type name which is most closer to ROOT basic type.
Bool_t VerifyLongStringTable()
Checks that table for big strings is exists If not, will be created.
Bool_t SQLStartTransaction()
Start SQL transaction.
Info (classname, version) about object in database.
virtual TSQLRow * Next()=0
virtual const char * GetField(Int_t field)=0
virtual Bool_t Commit()
submit "COMMIT" query to database return kTRUE, if successful
virtual Bool_t HasStatement() const
virtual Int_t GetMaxIdentifierLength()
virtual Bool_t HasTable(const char *tablename)
Tests if table of that name exists in database Return kTRUE, if table exists.
virtual Bool_t Exec(const char *sql)
Execute sql query.
virtual Bool_t Rollback()
submit "ROLLBACK" query to database return kTRUE, if successful
virtual Bool_t StartTransaction()
submit "START TRANSACTION" query to database return kTRUE, if successful
virtual TList * GetTablesList(const char *wild=nullptr)
Return list of user tables Parameter wild specifies wildcard for table names.
virtual TSQLResult * Query(const char *sql)=0
static TSQLServer * Connect(const char *db, const char *uid, const char *pw)
The db should be of the form: <dbms>://<host>[:<port>][/<database>], e.g.: mysql://pcroot....
virtual TSQLStatement * Statement(const char *, Int_t=100)
virtual const char * GetString(Int_t)
virtual Bool_t NextResultRow()=0
virtual Int_t GetInt(Int_t)
virtual Long64_t GetLong64(Int_t)
virtual Bool_t Process()=0
virtual Bool_t StoreResult()=0
This is hierarchical structure, which is created when data is written by TBufferSQL2.
static void AddStrBrackets(TString &s, const char *quote)
adds quotes around string value and replaces some special symbols
static Int_t DefineElementColumnType(TStreamerElement *elem, TSQLFile *f)
defines which kind of column can be assigned for this element Possible cases kColSimple - basic data ...
Bool_t ConvertToTables(TSQLFile *f, Long64_t keyid, TObjArray *cmds)
Convert structure to sql statements This function is called immediately after TBufferSQL2 produces th...
static TString DefineElementColumnName(TStreamerElement *elem, TSQLFile *f, Int_t indx=0)
returns name of the column in class table for that element
virtual TClass * GetClassPointer() const
Returns a pointer to the TClass of this element.
Int_t GetArrayLength() const
void ToLower()
Change string to lower-case.
Int_t Atoi() const
Return integer value of string.
const char * Data() const
TString & ReplaceAll(const TString &s1, const TString &s2)
void Resize(Ssiz_t n)
Resize the string. Truncate or add blanks as necessary.
void ToUpper()
Change string to upper case.
virtual void Streamer(TBuffer &)
Stream a string object.
TString & Append(const char *cs)
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
This class defines a UUID (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDent...
const char * AsString() const
Return UUID as string. Copy string immediately since it will be reused.
Abstract Interface class describing Streamer information for one class.
virtual TObjArray * GetElements() const =0
virtual Int_t GetNumber() const =0
virtual TClass * GetClass() const =0
const char * cfg_UseIndexes
const char * StringsTable
const char * ObjectsTableIndex
const char * KeysTableIndex
Long64_t atol64(const char *value)
const char * cfg_TablesType
const Int_t Ids_StreamerInfos
const char * cfg_ArrayLimit
const char * TObjectProcessId
const char * cfg_UseTransactions
const char * cfg_LockingMode
const char * cfg_UseSufixes
const char * ObjectsTable
const char * cfg_ModifyCounter
const char * TObjectUniqueId
const char * LongStrPrefix
@ kUseCompiledDefault
Use the compile-time default setting.
Simple struct of the return value of GetStreamerInfoListImpl.