303 ::Fatal(
"TFile::TFile",
"ROOT system not initialized");
307 SetTitle(
"TFile interface to SQL DB");
311 if (dbname && strstr(dbname,
"oracle://")) {
359 if (!create && !recreate && !
update && !read) {
364 if (!dbname || !dbname[0]) {
365 Error(
"TSQLFile",
"Database not specified");
374 Error(
"TSQLFile",
"Cannot connect to DB %s", dbname);
381 Error(
"TSQLFile",
"no write permission, DB %s locked", dbname);
390 Error(
"TSQLFile",
"DB tables already exists");
401 Error(
"TSQLFile",
"no write permission, DB %s locked", dbname);
408 Error(
"TSQLFile",
"DB %s tables not exist", dbname);
412 Error(
"TSQLFile",
"no read permission for DB %s tables", dbname);
449 fLogFile =
new std::ofstream(fname);
470 return strcmp(
fSQL->ClassName(),
"TMySQLServer") == 0;
480 return strcmp(
fSQL->ClassName(),
"TOracleServer") == 0;
490 return strcmp(
fSQL->ClassName(),
"TODBCServer") == 0;
500 Error(
"SetUseSuffixes",
"Configurations already cannot be changed");
516 Error(
"SetArrayLimit",
"Configurations already cannot be changed");
530 Error(
"SetTablesType",
"Configurations already cannot be changed");
567 Error(
"SQLStartTransaction",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
581 Error(
"SQLCommit",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
595 Error(
"SQLRollback",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
617 Error(
"SetUseIndexes",
"Configurations already cannot be changed");
682 gROOT->GetListOfFiles()->Remove(
this);
711 return fSQL !=
nullptr;
725 if (opt !=
"READ" && opt !=
"UPDATE") {
726 Error(
"ReOpen",
"mode must be either READ or UPDATE, not %s", opt.
Data());
748 Error(
"ReOpen",
"Tables are locked, no write access");
798 Info(
"WriteStreamerInfo",
"Saving streamer infos to database");
810 Info(
"WriteStreamerInfo",
"Add %s", info->
GetName());
814 if (list.GetSize() == 0)
886 Info(
"GetStreamerInfoList",
"Start reading of streamer infos");
895 return {
nullptr, 1, hash};
898 return {list, 0, hash};
931 if (specialkeyid >= 0) {
946 while ((row = res->
Next()) !=
nullptr) {
952 const char *keyname = (*row)[3];
953 const char *keytitle = (*row)[4];
954 const char *keydatime = (*row)[5];
955 Int_t cycle = atoi((*row)[6]);
956 const char *classname = (*row)[7];
959 std::cout <<
" Reading keyid = " << keyid <<
" name = " << keyname << std::endl;
966 Error(
"StreamKeysForDirectory",
"Key with id %lld not exist in list", keyid);
968 }
else if (key->
IsKeyModified(keyname, keytitle, keydatime, cycle, classname))
972 TKeySQL *key =
new TKeySQL(dir, keyid, objid, keyname, keytitle, keydatime, cycle, classname);
986 Info(
"StreamKeysForDirectory",
"dir = %s numread = %d", dir->
GetName(), nkeys);
999 Int_t len =
gROOT->GetListOfStreamerInfo()->GetSize() + 1;
1023 Error(
"InitSqlDatabase",
"Cannot detect proper tabled in database. Close.");
1035 gROOT->GetListOfFiles()->Add(
this);
1040 TKey *key =
nullptr;
1042 while ((key = (
TKey *)iter()) !=
nullptr) {
1069#define ReadIntCfg(name, target) \
1070 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \
1071 target = value.Atoi(); \
1074#define ReadBoolCfg(name, target) \
1075 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \
1076 target = value.CompareTo(sqlio::True, TString::kIgnoreCase) == 0; \
1079#define ReadStrCfg(name, target) \
1080 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \
1086 while ((row = res->
Next()) !=
nullptr) {
1088 TString field = row->GetField(0);
1089 TString value = row->GetField(1);
1098 Error(
"ReadConfigurations",
"Invalid configuration field %s", field.
Data());
1130 sqlcmd +=
" ENGINE=";
1136#define WrintCfg(name, type, value) \
1138 sqlcmd.Form("INSERT INTO %s%s%s VALUES (%s%s%s, %s" type "%s)", quote, sqlio::ConfigTable, quote, vquote, name, \
1139 vquote, vquote, value, vquote); \
1140 SQLQuery(sqlcmd.Data()); \
1161 "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)",
1162 quote,
sqlio::KeysTable, quote, quote,
SQLKeyIdColumn(), quote,
SQLIntType(), quote,
SQLDirIdColumn(), quote,
1168 sqlcmd +=
" ENGINE=";
1190 Error(
"IncrementModifyCounter",
"Cannot update tables without write accsess");
1227 res.
Form(
"SELECT %s FROM %s", columns.
Data(), tables.
Data());
1239 if (!info || !sqlinfo)
1248 table_syn.
Form(
"t%d", ++tablecnt);
1289 buf.
Form(
", %s.%s%s%s", table_syn.
Data(), quote, colname.
Data(), quote);
1303 buf.
Form(
", %s.%s%s%s", table_syn.
Data(), quote, colname.
Data(), quote);
1311 return (columns.
Length() > 0) && (tables.
Length() > 0);
1353 sqlcmd.
Form(
"SELECT %s%s%s FROM %s%s%s WHERE %s%s%s=%s%s%s", quote,
sqlio::CT_Value, quote, quote,
1358 TString field = !row ?
"" : row->GetField(0);
1365 return field.
Atoi();
1400 Info(
"SQLQuery",
"%s", cmd);
1413 *ok = res !=
nullptr;
1429 if (!
fSQL->HasStatement())
1443 if (!
fSQL->HasStatement())
1447 Info(
"SQLStatement",
"%s", cmd);
1452 return fSQL->Statement(cmd, bufsize);
1480 while ((cmd = iter()) !=
nullptr) {
1497 if (
fSQL->HasTable(tablename))
1518 Info(
"SQLMaximumValue",
"Requests for %s column %s", tablename, columnname);
1523 query.
Form(
"SELECT MAX(%s%s%s) FROM %s%s%s", quote, columnname, quote, quote, tablename, quote);
1533 if (row->GetField(0))
1540 Info(
"SQLMaximumValue",
"Result = %lld", maxid);
1562 while ((obj = iter()) !=
nullptr) {
1563 sqlcmd.
Form(
"DROP TABLE %s%s%s", quote, obj->
GetName(), quote);
1619 sqlcmd.
Form(
"SELECT MIN(%s%s%s), MAX(%s%s%s) FROM %s%s%s WHERE %s%s%s=%lld", quote,
SQLObjectIdColumn(), quote,
1626 if (row && row->GetField(0) && row->GetField(1)) {
1635 if (minid <= maxid) {
1639 querymask.
Form(
"DELETE FROM %s%s%s WHERE %s%s%s BETWEEN %lld AND %lld", quote,
"%s", quote, quote,
1678 while ((obj = next()) !=
nullptr) {
1702 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,
1738 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,
1781 if (strcmp(info->
GetName(), clname) == 0)
1839 const char *suffix = rawtable ?
"_raw" :
"_ver";
1841 res.
Form(
"%s%s%d", clname, suffix, version);
1848 Int_t len = strlen(clname);
1849 Int_t cnt = version;
1854 scnt.
Form(
"%d%s", cnt, suffix);
1856 if (numlen >= maxlen - 2)
1861 if (len + numlen > maxlen)
1862 res.
Resize(maxlen - numlen);
1871 }
while (cnt < 10000);
1873 Error(
"DefineTableName",
"Cannot produce table name for class %s ver %d", clname, version);
1874 res.
Form(
"%s%s%d", clname, suffix, version);
1923 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %d ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
1931 while ((row = res->
Next()) !=
nullptr) {
1933 Int_t version = atoi(row->GetField(1));
1935 const char *classname = row->GetField(3);
1936 const char *classtable = row->GetField(4);
1953 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %lld ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
1960 while ((row = res->
Next()) !=
nullptr) {
1962 Int_t typ = atoi(row->GetField(2));
1964 const char *fullname = row->GetField(3);
1965 const char *sqlname = row->GetField(4);
1966 const char *info2 = row->GetField(5);
1982 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %d ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
1988 while ((row = res->
Next()) !=
nullptr) {
1990 Int_t version = atoi(row->GetField(1));
1992 const char *classname = row->GetField(3);
1993 const char *rawtable = row->GetField(4);
2034 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,
2040 sqlcmd +=
" ENGINE=";
2048 sqlcmd.
Form(
"INSERT INTO %s%s%s VALUES (%lld, %d, %d, %s%s%s, %s%s%s, %s%s%s)", quote,
sqlio::IdsTable, quote,
2049 tableid, subid, type, valuequote,
name, valuequote, valuequote, sqlname, valuequote, valuequote, info,
2077 Info(
"CreateClassTable",
"cl:%s", sqlinfo->
GetName());
2087 TIter iter(colinfos);
2099 if ((strpbrk(colname,
"[:.]<>") !=
nullptr) || forcequote) {
2105 sqlcmd += colname, sqlcmd +=
" ";
2116 sqlcmd +=
" ENGINE=";
2129 sqlcmd.
Form(
"CREATE UNIQUE INDEX %s%s_I1%s ON %s%s%s (%s%s%s)", quote, indxname.
Data(), quote, quote,
2155 sqlcmd.
Form(
"CREATE TABLE %s%s%s (%s%s%s %s, %s%s%s %s, %s %s, %s %s)", quote, sqlinfo->
GetRawTableName(), quote,
2160 sqlcmd +=
" ENGINE=";
2171 sqlcmd.
Form(
"CREATE UNIQUE INDEX %s%s_I2%s ON %s%s%s (%s%s%s, %s%s%s)", quote, indxname.
Data(), quote, quote,
2201 sqlcmd +=
" ENGINE=";
2234 if (*value++ !=
' ')
2237 if ((*value <
'1') || (*value >
'9'))
2240 s_objid.
Append(*value++);
2241 }
while ((*value != 0) && (*value >=
'0') && (*value <=
'9'));
2243 if (*value++ !=
' ')
2248 if (*value++ !=
' ')
2251 if ((*value <
'1') || (*value >
'9'))
2254 s_strid.
Append(*value++);
2255 }
while ((*value != 0) && (*value >=
'0') && (*value <=
'9'));
2256 if (*value++ !=
' ')
2263 if (objid2 != objid)
2266 return atoi(s_strid.
Data());
2291 value = row->GetField(0);
2312 Info(
"VerifyObjectTable",
"Checks if object table is there");
2319 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,
2324 sqlcmd +=
" ENGINE=";
2350 sqlcmd.
Form(
"SELECT %s%s%s, %s%s%s FROM %s%s%s WHERE %s%s%s=%lld", quote,
sqlio::OT_Class, quote, quote,
2357 clname = row->GetField(0);
2358 version = atoi(row->GetField(1));
2363 return row !=
nullptr;
2377 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,
2386 Info(
"SQLObjectsInfo",
"%s", sqlcmd.
Data());
2397 const char *clname = stmt->
GetString(1);
2415 while ((row = res->
Next()) !=
nullptr) {
2416 Long64_t objid = atoi(row->GetField(0));
2417 const char *clname = row->GetField(1);
2418 Int_t version = atoi(row->GetField(2));
2440 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s=%lld", quote, sqlinfo->
GetClassTableName(), quote, quote,
2454 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s BETWEEN %lld AND %lld ORDER BY %s%s%s", quote,
2493 Info(
"BuildStatement",
"%s", sqlcmd.
Data());
2528 Error(
"StoreObjectInTables",
"Cannot convert object data to TSQLStructure");
2535 Error(
"StoreObjectInTables",
"Cannot convert to SQL statements");
2546 Error(
"StoreObject",
"Cannot correctly store object data in database");
2567 return (typ < 0) || (typ > 18) ?
nullptr :
fBasicTypes[typ];
2646 TString col1name =
"CreateTime";
2647 TString col2name =
"ModifyTime";
2655 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,
2671 if (
b.IsReading()) {
2672 Version_t R__v =
b.ReadVersion(
nullptr,
nullptr);
2675 b.ClassMember(
"CreateTime",
"TString");
2680 b.ClassMember(
"ModifyTime",
"TString");
2685 b.ClassMember(
"UUID",
"TString");
2697 b.ClassMember(
"CreateTime",
"TString");
2702 b.ClassMember(
"ModifyTime",
"TString");
2707 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)
int Int_t
Signed integer 4 bytes (int).
short Version_t
Class version identifier (short).
unsigned int UInt_t
Unsigned integer 4 bytes (unsigned int).
bool Bool_t
Boolean (0=false, 1=true) (bool).
long long Long64_t
Portable signed long integer 8 bytes.
const char Option_t
Option string (const char).
Error("WriteTObject","The current directory (%s) is not associated with a file. The object (%s) has not been written.", GetName(), objname)
void Info(const char *location, const char *msgfmt,...)
Use this function for informational messages.
void Fatal(const char *location, const char *msgfmt,...)
Use this function in case of a fatal error. It will abort the program.
externTVirtualMutex * 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.
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).
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 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
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.
virtual Long64_t GetSeekDir() const
TDirectory(const TDirectory &directory)=delete
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
TUUID fUUID
Unique identifier.
TDirectory * GetMotherDir() const
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.
friend class TDirectoryFile
Int_t fNbytesInfo
Number of bytes for StreamerInfo record.
TFile(const TFile &)=delete
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.
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.
Bool_t TestBit(UInt_t f) const
virtual const char * GetName() const
Returns name of object.
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
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.
friend class TSQLStructure
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.
TString fUserName
! user name, used to access objects from database
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
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 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
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
Describe one element (data member) to be Streamed.
virtual TClass * GetClassPointer() const
Returns a pointer to the TClass of this element and updates fClassObject.
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.