275 :
TFile(), fSQL(0), fSQLClassInfos(0), fUseSuffixes(
kTRUE), fSQLIOversion(1), fArrayLimit(21),
276 fCanChangeConfig(
kFALSE), fTablesType(), fUseTransactions(0), fUseIndexes(0), fModifyCounter(0), fQuerisCounter(0),
277 fBasicTypes(0), fOtherTypes(0), fUserName(), fLogFile(0), fIdsTableExists(
kFALSE), fStmtCounter(0)
307 ::Fatal(
"TFile::TFile",
"ROOT system not initialized");
311 SetTitle(
"TFile interface to SQL DB");
315 if (dbname && strstr(dbname,
"oracle://") != 0) {
363 if (!create && !recreate && !update && !read) {
368 if (!dbname || !dbname[0]) {
369 Error(
"TSQLFile",
"Database not specified");
378 Error(
"TSQLFile",
"Cannot connect to DB %s", dbname);
385 Error(
"TSQLFile",
"no write permission, DB %s locked", dbname);
395 Error(
"TSQLFile",
"DB tables already exists");
406 Error(
"TSQLFile",
"no write permission, DB %s locked", dbname);
413 Error(
"TSQLFile",
"DB %s tables not exist", dbname);
417 Error(
"TSQLFile",
"no read permission for DB %s tables", dbname);
424 if (create || update) {
454 fLogFile =
new std::ofstream(fname);
505 Error(
"SetUseSuffixes",
"Configurations already cannot be changed");
521 Error(
"SetArrayLimit",
"Configurations already cannot be changed");
535 Error(
"SetTablesType",
"Configurations already cannot be changed");
572 Error(
"SQLStartTransaction",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
586 Error(
"SQLCommit",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
600 Error(
"SQLRollback",
"Only allowed when SetUseTransactions(kUserTransactions) was configured");
622 Error(
"SetUseIndexes",
"Configurations already cannot be changed");
687 gROOT->GetListOfFiles()->Remove(
this);
736 if (opt !=
"READ" && opt !=
"UPDATE") {
737 Error(
"ReOpen",
"mode must be either READ or UPDATE, not %s", opt.
Data());
759 Error(
"ReOpen",
"Tables are locked, no write access");
778 return new TKeySQL(mother, obj, name);
786 return new TKeySQL(mother, obj, cl, name);
809 Info(
"WriteStreamerInfo",
"Saving streamer infos to database");
821 Info(
"WriteStreamerInfo",
"Add %s", info->GetName());
897 Info(
"GetStreamerInfoList",
"Start reading of streamer infos");
906 return {
nullptr, 1, hash};
909 return {list, 0, hash};
942 if (specialkeyid >= 0) {
957 while ((row = res->
Next()) != 0) {
963 const char *keyname = (*row)[3];
964 const char *keytitle = (*row)[4];
965 const char *keydatime = (*row)[5];
966 Int_t cycle = atoi((*row)[6]);
967 const char *classname = (*row)[7];
970 std::cout <<
" Reading keyid = " << keyid <<
" name = " << keyname << std::endl;
977 Error(
"StreamKeysForDirectory",
"Key with id %lld not exist in list", keyid);
979 }
else if (key->
IsKeyModified(keyname, keytitle, keydatime, cycle, classname))
983 TKeySQL *key =
new TKeySQL(dir, keyid, objid, keyname, keytitle, keydatime, cycle, classname);
984 if (specialkey != 0) {
997 Info(
"StreamKeysForDirectory",
"dir = %s numread = %d", dir->
GetName(), nkeys);
1010 Int_t len =
gROOT->GetListOfStreamerInfo()->GetSize() + 1;
1034 Error(
"InitSqlDatabase",
"Cannot detect proper tabled in database. Close.");
1046 gROOT->GetListOfFiles()->Add(
this);
1053 while ((key = (
TKey *)iter()) != 0) {
1080 #define ReadIntCfg(name, target) \ 1081 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \ 1082 target = value.Atoi(); \ 1085 #define ReadBoolCfg(name, target) \ 1086 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \ 1087 target = value.CompareTo(sqlio::True, TString::kIgnoreCase) == 0; \ 1090 #define ReadStrCfg(name, target) \ 1091 if ((field.CompareTo(name, TString::kIgnoreCase) == 0)) \ 1097 while ((row = res->
Next()) != 0) {
1109 Error(
"ReadConfigurations",
"Invalid configuration field %s", field.
Data());
1141 sqlcmd +=
" ENGINE=";
1147 #define WrintCfg(name, type, value) \ 1149 sqlcmd.Form("INSERT INTO %s%s%s VALUES (%s%s%s, %s" type "%s)", quote, sqlio::ConfigTable, quote, vquote, name, \ 1150 vquote, vquote, value, vquote); \ 1151 SQLQuery(sqlcmd.Data()); \ 1172 "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)",
1173 quote,
sqlio::KeysTable, quote, quote,
SQLKeyIdColumn(), quote,
SQLIntType(), quote,
SQLDirIdColumn(), quote,
1179 sqlcmd +=
" ENGINE=";
1201 Error(
"IncrementModifyCounter",
"Cannot update tables without write accsess");
1238 res.
Form(
"SELECT %s FROM %s", columns.Data(), tables.Data());
1250 if ((info == 0) || (sqlinfo == 0))
1259 table_syn.
Form(
"t%d", ++tablecnt);
1300 buf.
Form(
", %s.%s%s%s", table_syn.
Data(), quote, colname.
Data(), quote);
1306 TClass *parentcl = elem->GetClassPointer();
1312 for (
Int_t n = 0;
n < elem->GetArrayLength();
n++) {
1314 buf.
Form(
", %s.%s%s%s", table_syn.
Data(), quote, colname.
Data(), quote);
1322 return (columns.
Length() > 0) && (tables.
Length() > 0);
1364 sqlcmd.
Form(
"SELECT %s%s%s FROM %s%s%s WHERE %s%s%s=%s%s%s", quote,
sqlio::CT_Value, quote, quote,
1369 TString field = (row == 0) ?
"" : row->GetField(0);
1376 return field.
Atoi();
1411 Info(
"SQLQuery",
"%s", cmd);
1458 Info(
"SQLStatement",
"%s", cmd);
1485 if ((cmds == 0) || (
fSQL == 0))
1491 while ((cmd = iter()) != 0) {
1529 Info(
"SQLMaximumValue",
"Requests for %s column %s", tablename, columnname);
1534 query.
Form(
"SELECT MAX(%s%s%s) FROM %s%s%s", quote, columnname, quote, quote, tablename, quote);
1551 Info(
"SQLMaximumValue",
"Result = %lld", maxid);
1574 while ((obj = iter()) != 0) {
1575 sqlcmd.
Form(
"DROP TABLE %s%s%s", quote, obj->
GetName(), quote);
1631 sqlcmd.
Form(
"SELECT MIN(%s%s%s), MAX(%s%s%s) FROM %s%s%s WHERE %s%s%s=%lld", quote,
SQLObjectIdColumn(), quote,
1638 if ((row != 0) && (row->GetField(0) != 0) && (row->GetField(1) != 0)) {
1647 if (minid <= maxid) {
1651 querymask.
Form(
"DELETE FROM %s%s%s WHERE %s%s%s BETWEEN %lld AND %lld", quote,
"%s", quote, quote,
1690 while ((obj = next()) != 0) {
1705 if ((
fSQL == 0) || (key == 0))
1715 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,
1717 key->
GetName(), valuequote, valuequote, key->
GetTitle(), valuequote, valuequote,
1736 if ((
fSQL == 0) || (key == 0))
1751 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,
1794 if (strcmp(info->
GetName(), clname) == 0)
1853 const char *suffix = rawtable ?
"_raw" :
"_ver";
1855 res.
Form(
"%s%s%d", clname, suffix, version);
1862 Int_t len = strlen(clname);
1868 scnt.
Form(
"%d%s", cnt, suffix);
1870 if (numlen >= maxlen - 2)
1875 if (len + numlen > maxlen)
1876 res.
Resize(maxlen - numlen);
1885 }
while (cnt < 10000);
1887 Error(
"DefineTableName",
"Cannot produce table name for class %s ver %d", clname, version);
1888 res.
Form(
"%s%s%d", clname, suffix, version);
1937 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %d ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
1945 while ((row = res->
Next()) != 0) {
1947 Int_t version = atoi(row->GetField(1));
1949 const char *classname = row->GetField(3);
1950 const char *classtable = row->GetField(4);
1967 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %lld ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
1974 while ((row = res->
Next()) != 0) {
1976 Int_t typ = atoi(row->GetField(2));
1978 const char *fullname = row->GetField(3);
1979 const char *sqlname = row->GetField(4);
1980 const char *info2 = row->GetField(5);
1996 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s = %d ORDER BY %s%s%s", quote,
sqlio::IdsTable, quote, quote,
2002 while ((row = res->
Next()) != 0) {
2004 Int_t version = atoi(row->GetField(1));
2006 const char *classname = row->GetField(3);
2007 const char *rawtable = row->GetField(4);
2048 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,
2054 sqlcmd +=
" ENGINE=";
2062 sqlcmd.
Form(
"INSERT INTO %s%s%s VALUES (%lld, %d, %d, %s%s%s, %s%s%s, %s%s%s)", quote,
sqlio::IdsTable, quote,
2063 tableid, subid, type, valuequote, name, valuequote, valuequote, sqlname, valuequote, valuequote, info,
2082 if (colinfos != 0) {
2091 Info(
"CreateClassTable",
"cl:%s", sqlinfo->
GetName());
2101 TIter iter(colinfos);
2113 if ((strpbrk(colname,
"[:.]<>") != 0) || forcequote) {
2119 sqlcmd += colname, sqlcmd +=
" ";
2130 sqlcmd +=
" ENGINE=";
2143 sqlcmd.
Form(
"CREATE UNIQUE INDEX %s%s_I1%s ON %s%s%s (%s%s%s)", quote, indxname.
Data(), quote, quote,
2169 sqlcmd.
Form(
"CREATE TABLE %s%s%s (%s%s%s %s, %s%s%s %s, %s %s, %s %s)", quote, sqlinfo->
GetRawTableName(), quote,
2174 sqlcmd +=
" ENGINE=";
2185 sqlcmd.
Form(
"CREATE UNIQUE INDEX %s%s_I2%s ON %s%s%s (%s%s%s, %s%s%s)", quote, indxname.
Data(), quote, quote,
2215 sqlcmd +=
" ENGINE=";
2248 if (*value++ !=
' ')
2251 if ((*value <
'1') || (*value >
'9'))
2254 s_objid.
Append(*value++);
2255 }
while ((*value != 0) && (*value >=
'0') && (*value <=
'9'));
2257 if (*value++ !=
' ')
2262 if (*value++ !=
' ')
2265 if ((*value <
'1') || (*value >
'9'))
2268 s_strid.
Append(*value++);
2269 }
while ((*value != 0) && (*value >=
'0') && (*value <=
'9'));
2270 if (*value++ !=
' ')
2277 if (objid2 != objid)
2280 return atoi(s_strid.
Data());
2326 Info(
"VerifyObjectTable",
"Checks if object table is there");
2333 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,
2338 sqlcmd +=
" ENGINE=";
2364 sqlcmd.
Form(
"SELECT %s%s%s, %s%s%s FROM %s%s%s WHERE %s%s%s=%lld", quote,
sqlio::OT_Class, quote, quote,
2391 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,
2400 Info(
"SQLObjectsInfo",
"%s", sqlcmd.
Data());
2411 const char *clname = stmt->
GetString(1);
2429 while ((row = res->
Next()) != 0) {
2431 const char *clname = row->
GetField(1);
2454 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s=%lld", quote, sqlinfo->
GetClassTableName(), quote, quote,
2468 sqlcmd.
Form(
"SELECT * FROM %s%s%s WHERE %s%s%s BETWEEN %lld AND %lld ORDER BY %s%s%s", quote,
2507 Info(
"BuildStatement",
"%s", sqlcmd.
Data());
2542 Error(
"StoreObjectInTables",
"Cannot convert object data to TSQLStructure");
2549 Error(
"StoreObjectInTables",
"Cannot convert to SQL statements");
2560 Error(
"StoreObject",
"Cannot correctly store object data in database");
2581 return (typ < 0) || (typ > 18) ? 0 :
fBasicTypes[typ];
2657 TString col1name =
"CreateTime";
2658 TString col2name =
"ModifyTime";
2666 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,
2678 void TSQLFile::Streamer(
TBuffer &
b)
TDatime fDatimeM
Date and time of last modification.
virtual Bool_t Exec(const char *sql)
Execute sql query.
virtual Bool_t cd(const char *path=0)
Change current directory to "this" directory.
Int_t GetErrorFlag() const
virtual const char * GetName() const
Returns name of object.
TSQLResult * GetBlobClassData(Long64_t objid, TSQLClassInfo *sqlinfo)
Method return request results for specified objid from streamer classtable.
void SetClassTableName(const char *name)
static Int_t DefineElementColumnType(TStreamerElement *elem, TSQLFile *f)
defines which kind of column can be assigned for this element Possible cases kColSimple - basic data ...
const char ** fOtherTypes
! pointer on list of other SQL types like TEXT or blob
void StartLogFile(const char *fname)
start logging of all SQL statements in specified file
Char_t fUnits
Number of bytes for file pointers.
Bool_t fCanChangeConfig
! variable indicates can be basic configuration changed or not
Bool_t SQLApplyCommands(TObjArray *cmds)
supplies set of commands to server Commands is stored as array of TObjString
virtual void ClassBegin(const TClass *, Version_t=-1)=0
TString CodeLongString(Long64_t objid, Int_t strid)
Produces id which will be placed in column instead of string itself.
Long64_t SQLMaximumValue(const char *tablename, const char *columnname)
Returns maximum value, found in specified columnname of table tablename Column type should be numeric...
Int_t StreamKeysForDirectory(TDirectory *dir, Bool_t doupdate, Long64_t specialkeyid=-1, TKeySQL **specialkey=0)
read keys for specified directory (when update == kFALSE) or update value for modified keys when upda...
virtual TList * GetListOfKeys() const
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
void InitSqlDatabase(Bool_t create)
initialize sql database and correspondent structures identical to TFile::Init() function ...
TObjArray * fProcessIDs
!Array of pointers to TProcessIDs
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Info (classname, version) about object in database.
const char * SQLCompatibleType(Int_t typ) const
Returns sql type name which is most closer to ROOT basic type.
void StopLogFile()
close logging file
virtual Long64_t GetLong64(Int_t)
Bool_t SQLCommit()
Commit SQL transaction.
void Set()
Set Date/Time to current time as reported by the system.
Long64_t fBytesWrite
Number of bytes written to this file.
const char * SQLRawIdColumn() const
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.
TSQLResult * GetNormalClassDataAll(Long64_t minobjid, Long64_t maxobjid, TSQLClassInfo *sqlinfo)
Return data for several objects from the range from normal class table.
Double_t fSumBuffer
Sum of buffer sizes of objects written so far.
const char * GetClassTableName() const
void SetRawTableName(const char *name)
std::ofstream * fLogFile
! log file with SQL statements
virtual TClass * GetClass() const =0
Long64_t GetDBDirId() const
return sql id of parent directory
TSQLResult * GetNormalClassData(Long64_t objid, TSQLClassInfo *sqlinfo)
Method return request result for specified objid from normal classtable.
TArrayC * fClassIndex
!Index of TStreamerInfo classes written to this file
virtual TSQLResult * Query(const char *sql)=0
virtual TDirectory * GetMotherDir() const
TString fUserName
! user name, used to access objects from database
virtual void Delete(Option_t *option="")
Remove all objects from the array AND delete all heap based objects.
Bool_t Rollback()
Rollback all operations, done after StartTransaction() call.
virtual Int_t ReOpen(Option_t *mode)
Reopen a file with a different access mode, like from READ to See TFile::Open() for details...
TSQLServer * fSQL
! interface to SQL database
TString & ReplaceAll(const TString &s1, const TString &s2)
const char * SQLDatetimeType() const
TString fTablesType
! type, used in CREATE TABLE statements
TSQLFile()
default TSQLFile constructor
const char * cfg_UseTransactions
virtual void DirWriteHeader(TDirectory *)
Update dir header in the file.
virtual const char * GetClassName() const
Int_t fUseTransactions
! use transaction statements for writing data into the tables
virtual const char * GetName() const
Returns name of object.
TVirtualStreamerInfo * GetStreamerInfo(Int_t version=0) const
returns a pointer to the TVirtualStreamerInfo object for version If the object does not exist...
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Bool_t SQLStartTransaction()
Start SQL transaction.
void ToUpper()
Change string to upper case.
Buffer base class used for serializing objects.
void SQLDeleteStatement(TSQLStatement *stmt)
delete statement and decrease counter
#define ReadBoolCfg(name, target)
Int_t IsLongStringCode(Long64_t objid, const char *value)
Checks if this is long string code returns 0, if not or string id.
virtual Bool_t StartTransaction()
submit "START TRANSACTION" query to database return kTRUE, if successful
Contains information about tables specific to one class and version.
Long64_t GetDBKeyId() const
const char * cfg_LockingMode
virtual Bool_t StoreResult()=0
Bool_t UpdateKeyData(TKeySQL *key)
Updates (overwrites) key data in KeysTable.
void ToLower()
Change string to lower-case.
Long64_t StoreObjectInTables(Long64_t keyid, const void *obj, const TClass *cl)
Store object in database. Return stored object id or -1 if error.
R__EXTERN TVirtualMutex * gROOTMutex
virtual void InitMap()
Create the fMap container and initialize them with the null object.
const char * SQLStrIdColumn() const
virtual TSQLStatement * Statement(const char *, Int_t=100)
TSQLClassInfo * RequestSQLClassInfo(const char *clname, Int_t version)
Search in database tables for specified class and return TSQLClassInfo object.
virtual UInt_t WriteVersion(const TClass *cl, Bool_t useBcnt=kFALSE)=0
Int_t fStmtCounter
! count numbers of active statements
void CreateBasicTables()
Creates initial tables in database This is table with configurations and table with keys Function cal...
Long64_t fSeekInfo
Location on disk of StreamerInfo record.
Bool_t ReadConfigurations()
read table configurations as special table
const char * cfg_UseIndexes
virtual const char * GetString(Int_t)
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Bool_t HasTable(const char *name)
Test if table name exists.
This class defines a UUID (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDent...
Int_t fQuerisCounter
! how many query was applied
const char * StringsTable
Long64_t atol64(const char *value)
Int_t fSQLIOversion
! version of SQL I/O which is stored in configurations
Int_t fNbytesInfo
Number of bytes for StreamerInfo record.
virtual void ClassMember(const char *, const char *=0, Int_t=-1, Int_t=-1)=0
Bool_t StartTransaction()
Start user transaction.
const char * oracle_OtherTypes[13]
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...
virtual const char * ClassName() const
Returns name of class to which the object belongs.
const char ** fBasicTypes
! pointer on list of basic types specific for currently connected SQL server
Bool_t GetUseSuffixes() const
Int_t GetUseTransactions() const
TDatime fDatimeC
Date and time when directory is created.
const char * ObjectsTableIndex
virtual void SetCompressionLevel(Int_t level=1)
See comments for function SetCompressionSettings.
void SetLocking(Int_t mode)
Set locking mode for current database.
TString fRealName
Effective real file name (not original url)
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...
virtual Bool_t Rollback()
submit "ROLLBACK" query to database return kTRUE, if successful
TSQLResult * SQLQuery(const char *cmd, Int_t flag=0, Bool_t *res=0)
Submits query to SQL server.
This is hierarchical structure, which is created when data is written by TBufferSQL2.
Long64_t GetClassId() const
const char * oracle_BasicTypes[21]
TString & Append(const char *cs)
Int_t fModifyCounter
! indicates how many changes was done with database tables
Bool_t CreateClassTable(TSQLClassInfo *sqlinfo, TObjArray *colinfos)
Create normal class table if required.
const char * SQLKeyIdColumn() const
TSQLStatement * SQLStatement(const char *cmd, Int_t bufsize=1000)
Produces SQL statement for currently conected DB server.
Bool_t IsClassTableExist() const
Book space in a file, create I/O buffers, to fill them, (un)compress them.
A TProcessID identifies a ROOT job in a unique way in time and space.
Long64_t fSeekDir
Location of directory on file.
const char * cfg_TablesType
Bool_t IsTablesExists()
Checks if main keys table is existing.
virtual void DirWriteKeys(TDirectory *)
Write directory keys list to database.
virtual Bool_t NextResultRow()=0
virtual Bool_t IsOpen() const
return kTRUE if file is opened and can be accessed
void IncrementModifyCounter()
Update value of modify counter in config table Modify counter used to indicate that something was cha...
InfoListRet GetStreamerInfoListImpl(bool lookupSICache)
Read back streamer infos from database List of streamer infos is always stored with key:id 0...
const char * GetSQLName() const
Bool_t SQLCanStatement()
Test if DB support statement and number of open statements is not exceeded.
Long64_t DefineNextKeyId()
Returns next possible key identifier.
Bool_t GetLongString(Long64_t objid, Int_t strid, TString &value)
Returns value of string, extracted from special table, where long strings are stored.
Simple struct of the return value of GetStreamerInfoListImpl.
Bool_t WriteKeyData(TKeySQL *key)
Add entry into keys table.
const char * GetDataBaseName() const
Return name of data base on the host For Oracle always return 0.
const char * SQLDirIdColumn() const
void ReadSQLClassInfos()
Read all class infos from IdsTable.
static TString DefineElementColumnName(TStreamerElement *elem, TSQLFile *f, Int_t indx=0)
returns name of the column in class table for that element
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.
const char * KeysTableIndex
virtual TKey * CreateKey(TDirectory *mother, const TObject *obj, const char *name, Int_t bufsize)
create SQL key, which will store object in data base
TString DefineTableName(const char *clname, Int_t version, Bool_t rawtable)
Proposes table name for class.
virtual ~TSQLFile()
destructor of TSQLFile object
Access an SQL db via the TFile interface.
TList * fKeys
Pointer to keys list in memory.
#define ReadStrCfg(name, target)
Bool_t Commit()
Commit transaction, started by StartTransaction() call.
void SetRawExist(Bool_t on)
TSQLClassInfo * FindSQLClassInfo(const char *clname, Int_t version)
Return (if exists) TSQLClassInfo for specified class name and version.
Bool_t IsODBC() const
checks, if ODBC driver used for database connection
TSQLStatement * GetBlobClassDataStmt(Long64_t objid, TSQLClassInfo *sqlinfo)
Method return request results for specified objid from streamer classtable Data returned in form of s...
virtual Int_t GetMaxIdentifierLength()
static void update(gsl_integration_workspace *workspace, double a1, double b1, double area1, double error1, double a2, double b2, double area2, double error2)
Bool_t SQLRollback()
Rollback all SQL operations, done after start transaction.
const char * AsSQLString() const
Return the date & time in SQL compatible string format, like: 1997-01-15 20:16:28.
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Int_t DecrementCount()
The reference fCount is used to delete the TProcessID in the TFile destructor when fCount = 0...
virtual Long64_t GetSeekDir() const
virtual Bool_t Commit()
submit "COMMIT" query to database return kTRUE, if successful
const char * LongStrPrefix
virtual const char * GetField(Int_t field)=0
TObjArray * SQLObjectsInfo(Long64_t keyid)
Produce array of TSQLObjectInfo objects for all objects, belong to that key Array should be deleted b...
The ROOT global object gROOT contains a list of all defined classes.
virtual Int_t GetInt(Int_t)
void SetUseIndexes(Int_t use_type=kIndexesBasic)
Specify usage of indexes for data tables Index Description kIndexesNone = 0 no indexes are used kInd...
void operator=(const TSQLFile &)
make private to exclude copy operator
TString MakeSelectQuery(TClass *cl)
Produce SELECT statement which can be used to get all data of class cl in one SELECT statement...
void Build(TFile *motherFile=0, TDirectory *motherDir=0)
Initialise directory to defaults.
const char * GetRawTableName() const
const char * TObjectUniqueId
Bool_t fWritable
True if directory is writable.
void DeleteKeyFromDB(Long64_t keyid)
Remove key with specified id from keys table also removes all objects data, related to this table...
void SetArrayLimit(Int_t limit=20)
Defines maximum number of columns for array representation If array size bigger than limit...
const char * mysql_BasicTypes[21]
const char * SQLBigTextType() const
virtual void ReadStreamerInfo()
Read the list of StreamerInfo from this file.
Double_t fSum2Buffer
Sum of squares of buffer sizes of objects written so far.
Converts data to SQL statements or read data from SQL tables.
TList * fFree
Free segments linked list table.
#define WrintCfg(name, type, value)
Version_t GetClassVersion() const
Bool_t IsOracle() const
checks, if Oracle database
TFile * fFile
Pointer to current file in memory.
#define ReadIntCfg(name, target)
Bool_t CreateRawTable(TSQLClassInfo *sqlinfo)
Create the raw table.
Int_t GetLocking()
Return current locking mode for that file.
virtual void SetName(const char *newname)
Set the name for directory If the directory name is changed after the directory was written once...
virtual TObjArray * GetElements() const =0
const char * SQLValueQuote() const
const Int_t Ids_StreamerInfos
const char * TObjectProcessId
Describe directory structure in memory.
virtual const char * GetTitle() const
Returns title (title can contain 32x32 xpm thumbnail/icon).
virtual Int_t GetNumber() const =0
virtual void Clear(Option_t *option="")
delete the TObjArray pointing to referenced objects this function is called by TFile::Close("R") ...
Int_t GetClassVersion() const
void SetWritable(Bool_t writable=kTRUE)
Set the new value of fWritable recursively.
static void AddStrBrackets(TString &s, const char *quote)
adds quotes around string value and replaces some special symbols
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
static constexpr double s
#define R__LOCKGUARD(mutex)
Bool_t SQLTestTable(const char *tablename)
Test, if table of specified name exists.
TString fOption
File options.
static TProcessID * GetSessionProcessID()
static function returning the pointer to the session TProcessID
const char * GetSQLType() const
virtual void Close(Option_t *option="")
Delete all objects from memory and directory structure itself.
const char * cfg_ArrayLimit
const char * AsString() const
Return UUID as string. Copy string immediately since it will be reused.
Bool_t IsMySQL() const
checks, if MySQL database
Mother of all ROOT objects.
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 SaveToDatabase()
save data which is not yet in Database Typically this is streamerinfos structures or ...
void SetTablesType(const char *table_type)
Defines tables type, which is used in CREATE TABLE statements Now is only used for MySQL database...
void SetUseTransactions(Int_t mode=kTransactionsAuto)
Defines usage of transactions statements for writing objects data to database.
Bool_t fIdsTableExists
! indicate if IdsTable exists
typedef void((*Func_t)())
virtual TList * GetTablesList(const char *wild=0)
Return list of user tables Parameter wild specifies wildcard for table names.
virtual void Add(TObject *obj)
Bool_t SQLObjectInfo(Long64_t objid, TString &clname, Version_t &version)
Read from objects table data for specified objectid.
virtual void WriteStreamerInfo()
Store all TVirtualStreamerInfo, used in file, in sql database.
virtual void ClassEnd(const TClass *)=0
Bool_t VerifyLongStringTable()
Checks that table for big strings is exists If not, will be created.
const char * ObjectsTable
const char * SQLObjectIdColumn() const
virtual Long64_t DirCreateEntry(TDirectory *)
Create entry for directory in database.
Int_t fNProcessIDs
Number of TProcessID written to this file.
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
TKeySQL represents meta-inforamtion about object, which was written to SQL database.
TObject * ReadSpecialObject(Long64_t keyid, TObject *obj=0)
Read data of special kind of objects.
virtual Bool_t Process()=0
virtual void WriteHeader()
Write file info like configurations, title, UUID and other.
Int_t Atoi() const
Return integer value of string.
Bool_t IsReadAccess()
dummy, in future should check about read access to database
Int_t fVersion
File format version.
virtual const char * GetName() const
Returns name of object.
const TDatime & GetDatime() const
Long64_t GetDBObjId() const
virtual Bool_t HasStatement() const
TKeySQL * FindSQLKey(TDirectory *dir, Long64_t keyid)
Search for TKeySQL object with specified keyid.
virtual Bool_t HasTable(const char *tablename)
Tests if table of that name exists in database Return kTRUE, if table exists.
Bool_t fUseSuffixes
! use suffixes in column names like fValue:Int_t or fObject:pointer
TList * fSQLClassInfos
! list of SQL class infos
Int_t fWritten
Number of objects written so far.
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...
const char * SQLSmallTextType() const
void SQLDeleteAllTables()
Delete all tables in database.
virtual void Fatal(const char *method, const char *msgfmt,...) const
Issue fatal error message.
Bool_t IsWritable() const
Short_t GetCycle() const
Return cycle number associated to this key.
Bool_t ConvertToTables(TSQLFile *f, Long64_t keyid, TObjArray *cmds)
Convert structure to sql statements This function is called immidiately after TBufferSQL2 produces th...
virtual void Print(Option_t *option="") const
Default print for collections, calls Print(option, 1).
void SetUseSuffixes(Bool_t on=kTRUE)
enable/disable uasge of suffixes in columns names can be changed before first object is saved into fi...
virtual const char * GetName() const
Returns name of object.
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
Abstract Interface class describing Streamer information for one class.
Int_t SQLMaxIdentifierLength()
returns maximum allowed length of identifiers
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
virtual Int_t DirReadKeys(TDirectory *)
Read directory list of keys from database.
Int_t fUseIndexes
! use indexes for tables: 0 - off, 1 - only for basic tables, 2 + normal class tables, 3 - all tables
Int_t fArrayLimit
! limit for array size. when array bigger, its content converted to raw format
const char * SQLIntType() const
return SQL integer type
Int_t GetUseIndexes() const
const char * SQLDefaultTableType() const
Bool_t IsRawTableExist() const
const char * mysql_OtherTypes[13]
void * SqlReadAny(Long64_t keyid, Long64_t objid, TClass **cl, void *obj=nullptr)
Recreate object from sql structure.
Long64_t fBytesRead
Number of bytes read from this file.
const char * SQLIdentifierQuote() const
virtual void Close(Option_t *option="")
Close a SQL file For more comments see TFile::Close() function.
virtual Version_t ReadVersion(UInt_t *start=0, UInt_t *bcnt=0, const TClass *cl=0)=0
void Resize(Ssiz_t n)
Resize the string. Truncate or add blanks as necessary.
Bool_t IsWriteAccess()
Checkis, if lock is free in configuration tables.
virtual const char * GetTitle() const
Returns title of object.
This class stores the date and time with a precision of one second in an unsigned 32 bit word (950130...
void SetColumns(TObjArray *columns)
assigns new list of columns
Long64_t VerifyObjectTable()
Checks that objects table is exists If not, table will be created Returns maximum value for existing ...
const char * cfg_UseSufixes
virtual TSQLRow * Next()=0
const char * Data() const
Array of chars or bytes (8 bits per element).
const char * cfg_ModifyCounter