ATLAS Offline Software
AtlCoolCopy.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // AtlCoolCopy.cxx
6 // COOL copying utility, C++ based on PyCoolCopy from Sven Schmidt
7 // Richard Hawkings, started 30/5/06
8 // compiles in offline cmt framework to binary executable, needs offline env
9 
10 #include <algorithm>
11 #include <cmath>
12 #include <ctime>
13 #include <fstream>
14 #include <iostream>
15 #include <sstream>
16 #include <string>
17 #include <vector>
18 #include <nlohmann/json.hpp>
19 #include <curl/curl.h>
20 
21 #include "CoolKernel/DatabaseId.h"
22 #include "CoolKernel/Exception.h"
23 #include "CoolKernel/IDatabaseSvc.h"
24 #include "CoolKernel/IDatabase.h"
25 #include "CoolKernel/IFolder.h"
26 #include "CoolKernel/FolderSpecification.h"
27 #include "CoolKernel/IFolderSet.h"
28 #include "CoolKernel/IObject.h"
29 #include "CoolKernel/IObjectIterator.h"
30 #include "CoolKernel/IRecordIterator.h"
31 #include "CoolApplication/Application.h"
32 #include "CoralBase/AttributeListException.h"
33 
40 #include "RelationalAccess/ConnectionService.h"
41 #include "RelationalAccess/IConnectionServiceConfiguration.h"
42 #include "RelationalAccess/ISessionProxy.h"
43 #include "RelationalAccess/ITransaction.h"
44 #include "RelationalAccess/ISchema.h"
45 #include "RelationalAccess/ITable.h"
46 #include "RelationalAccess/IQuery.h"
47 #include "RelationalAccess/ICursor.h"
48 
53 
55 
56 #include "PoolMapElement.h"
57 #include "ReplicaSorter.h"
58 #include "CoolTagInfo.h"
59 
60 #include "TFile.h"
61 #include "TTree.h"
62 #include "TH1.h"
63 #include "TObjString.h"
64 
65 size_t WriteCallback(void *contents, size_t size, size_t nmemb, std::string *s) {
66  size_t newLength = size * nmemb;
67 
68  try
69  {
70  s->append((char *)contents, newLength);
71  }
72  catch (std::bad_alloc &e)
73  {
74  // handle memory problem
75  return 0;
76  }
77  return newLength;
78 }
79 
80 
81 class AtlCoolCopy {
82  public:
83  AtlCoolCopy(const std::string& sourcedb, const std::string& destdb,
84  bool allowcreate=false);
85  bool isOpen() const;
86  bool addFolder(const std::string& folder,const bool onlyTags);
87  bool addExclude(const std::string& folder);
89  (const std::string& folder,const std::vector<std::string>& taglist);
90  int doCopy ATLAS_NOT_THREAD_SAFE ();
91  int setOpts(int argc, const char* argv[]);
92 
93  private:
94  // methods
95  bool openConnections(const std::string& sourcedb, const std::string& destdb,
96  bool allowcreate);
97  bool openCoraCool();
98  bool getLockedTags();
99  bool procOptVector(const int argc, const char* argv[],
100  std::vector<std::string>& folders);
101  static std::string transConn(const std::string& inconn);
102  void setChannelRange(const cool::IFolderPtr& sourcefl);
103  static cool::ChannelId channelID(const cool::IFolderPtr& folder,
104  const std::string& chanstring);
106  (const std::string& folder,const std::string& destfolder,
107  const cool::IFolderPtr& sourcefl,const CoraCoolFolderPtr& sourceflc,
108  const cool::IFolderPtr& destfl,const CoraCoolFolderPtr& destflc,
109  const std::string& sourcetag,const std::string& desttag,
110  const cool::ValidityKey since,const cool::ValidityKey until,
111  bool timestamp,bool checkrefs,bool iscora,
112  const cool::PayloadMode::Mode paymode, bool created);
113  void adjustIOVs(const cool::ValidityKey& since,
114  const cool::ValidityKey& until,
115  const cool::ValidityKey& qsince,
116  const cool::ValidityKey& quntil,
117  cool::ValidityKey& newsince,
118  cool::ValidityKey& newuntil,
119  const bool timestamp) const;
120  int nocopyIOVs(const std::string& folder,
121  const cool::IFolderPtr& sourcefl,const std::string& sourcetag,
122  const cool::ValidityKey since,const cool::ValidityKey until,
123  bool checkrefs);
124  int verifyIOVs(const std::string& folder,
125  const cool::IFolderPtr& sourcefl,const CoraCoolFolderPtr& sourceflc,
126  const cool::IFolderPtr& destfl,const CoraCoolFolderPtr& destflc,
127  const std::string& sourcetag,
128  const cool::ValidityKey since,const cool::ValidityKey until,
129  const bool checkrefs,const bool iscora,
130  const cool::PayloadMode::Mode paymode);
131  int rootIOVs(const std::string& folder,
132  const cool::IFolderPtr& sourcefl,const std::string& sourcetag,
133  const cool::ValidityKey since,const cool::ValidityKey until,
134  const bool timestamp);
135  std::string rootDirs(const std::string& folder, const std::string& toproot);
136  bool rootAllocate(const cool::IFieldSpecification& spec,
137  void*& sptr,char& rootID) const;
138  void rootWrite(void* sptr, const cool::IField& field) const;
139  static bool isNumeric(const char* input);
140  static bool equalRecord(const cool::IRecord& lhs,
141  const cool::IRecord& rhs);
142  int analyseIOVs(const std::string& folder,
143  const cool::IFolderPtr& sourcefl,const std::string& sourcetag,
144  const cool::ValidityKey since,const cool::ValidityKey until,
145  const bool timestamp);
146  static TH1F* bookOrFindTH1F(const std::string& hID, const std::string& htitle,
147  const int chan, const float xlow, const float xhigh);
148  static cool::ValidityKey timeVal(const char* input);
149  static std::string timeString(const cool::ValidityKey iovtime);
150  static cool::ValidityKey runLBVal(const char* input1, const char* input2);
151  bool getTimeFromRun();
152  bool getOnlineRun();
153  bool getBulkRun();
154  bool getRunList();
155 
156  static int getUpdateMode(std::string_view desc, std::string_view tag);
157 
158  bool checkChannels(const std::string& folder,
159  const cool::IFolderPtr& sourcefl,const cool::IFolderPtr& destfl,
160  bool newfolder);
161  void checkRef(const cool::IRecord& payload,
162  const std::string& folder,const std::string& tag);
163  int tagParents();
164  int writeTagInfo();
165  int listPoolRefs();
166  int resolvePoolRefs ATLAS_NOT_THREAD_SAFE ();
167  static std::string getCoolHistGUID(const std::string& file);
168  void filePoolRefs();
169  static pool::IFileCatalog* setupCatalog(const std::vector<std::string>& catvec);
170 
171  // input parameters
172  std::string m_sourcedb;
173  std::string m_destdb;
180  bool m_debug;
181  bool m_alliov;
182  bool m_verify;
183  bool m_root;
185  bool m_analyse;
187  bool m_listpfn;
189  bool m_poolall;
190  bool m_nocopy;
191  bool m_nodata;
193  bool m_chdesc;
194  bool m_hitag;
195  bool m_nohitag;
204  bool m_skipout;
205  bool m_skiprep;
206  bool m_applock;
209  bool m_gettime;
212  bool m_getbulk;
222  cool::ValidityKey m_runemin;
223  cool::ValidityKey m_runemax;
224  cool::ValidityKey m_timemin;
225  cool::ValidityKey m_timemax;
226  cool::ValidityKey m_newrunemin;
227  cool::ValidityKey m_newrunemax;
228  cool::ValidityKey m_newtimemin;
229  cool::ValidityKey m_newtimemax;
230  cool::ValidityKey m_srunemin;
231  cool::ValidityKey m_srunemax;
232  std::vector<std::string> m_channelRange;
233  std::string m_channel1;
234  std::string m_channel2;
237  long long m_anadelt;
238  std::string m_outfolder;
239  std::string m_outtag;
240  std::string m_newdataset;
241  std::string m_checkoutputfile;
242  std::string m_timedb;
243  std::string m_taglabel;
244  std::string m_runinfohost;
245  std::vector<std::string> m_addguid; // additional guids to be processsed
246  std::vector<std::string> m_addlfn; // additional LFNs to be processsed
247  std::vector<std::string> m_parfile; // list of additional files with params
248  std::vector<cool::ChannelId> m_excludechans; // list of channels to exclude
249  std::vector<std::string> m_runfile; // list of filenames with run numbers
250  std::vector<unsigned int> m_runlist; // list of runs open for UPD2 tags
251 
252  // internal variables
253  coral::ConnectionService m_coralsvc;
254  cool::Application m_coolapp;
255  cool::IDatabaseSvc* m_dbSvc;
257  cool::IDatabasePtr m_sourceDbPtr;
258  cool::IDatabasePtr m_destDbPtr;
261  std::vector<std::string> m_folderlist; // list of leaf folders to process
262  std::vector<std::string> m_folderexcl; // list of leaf folders to exclude
263  std::vector<std::string> m_tags; // list of tags
264  std::vector<std::string> m_magic; // list magic tags fragments to match
265  std::vector<std::string> m_poolcat; // list of POOL catalogues for input
266  std::vector<std::string> m_mergecat; // list of POOL catalogues for mergechk
267  bool m_open;
268  cool::ChannelSelection m_chansel;
269  typedef std::map<std::string,PoolMapElement> PoolMap;
270  PoolMap::iterator m_poollast; // pointer to last POOL ref updated
271  PoolMap m_poolrefs; // POOL refs and usage counts
272  // hierarchical tags - tag name and folder
273  using HiTagMap = std::map<std::string, std::string>;
275  // tags indirectly used in the hierarchy and have to be treated at end
276  std::vector<std::string> m_hiparent;
277  // map of CoolTagInfo objects - tags which have have their descriptions
278  // and lock status set in the destination DB at the end
279  using CoolTagMap = std::map<std::string, CoolTagInfo>;
281  // output root file for ROOT file export and IOV analysis
282  TFile* p_rootfile;
283 
284  // ROOT ntuple variables.
285  ULong64_t m_nt_since = 0;
286  ULong64_t m_nt_until = 0;
287  UInt_t m_nt_runsince = 0;
288  UInt_t m_nt_rununtil = 0;
289  UInt_t m_nt_lbsince = 0;
290  UInt_t m_nt_lbuntil = 0;
291  UInt_t m_nt_channel = 0;
292  char m_nt_tagid[256] = {0};
293  std::string m_nt_treename;
294  std::vector<void*> m_nt_bufferptr;
295 };
296 
297 inline bool AtlCoolCopy::isOpen() const { return m_open; }
298 
299 void printHelp();
300 
301 AtlCoolCopy::AtlCoolCopy(const std::string& sourcedb, const std::string& destdb,
302  bool allowcreate) :
303  m_sourcedb(sourcedb),m_destdb(destdb),m_allowcreate(allowcreate),
304  m_recreate(false),
305  m_includehead(false),m_excludehead(false),
306  m_usertags(true),m_userupdatehead(false),m_debug(false),m_alliov(false),
307  m_verify(false),m_root(false),m_zeronull(false),m_analyse(false),
308  m_checkrefs(false),m_listpfn(false),m_poolopen(false),m_poolall(false),
309  m_nocopy(false),m_nodata(false),m_nochannel(false),m_chdesc(false),
310  m_hitag(false),m_nohitag(false),m_forcesingle(false),m_forcemulti(false),
311  m_forcerune(false),m_forcetime(false),m_forcepay(false),m_forcenopay(false),
312  m_sourceread(true),m_truncate(false),m_skipout(false),m_skiprep(false),
313  m_applock(false),m_applocksv(false),
314  m_readoracle(false),m_gettime(false),m_getonline(false),m_onlinerun(false),
315  m_getbulk(false),
316  m_prunetags(false),m_lockedonly(false),m_copytaginfo(false),
317  m_copytaglock(false),m_coracool(true),m_ignoremode(false),
318  m_ignorespec(false),m_checkdesttag(false),m_noclobroot(false),
319  m_runemin(cool::ValidityKeyMin),m_runemax(cool::ValidityKeyMax),
320  m_timemin(cool::ValidityKeyMin),m_timemax(cool::ValidityKeyMax),
321  m_newrunemin(cool::ValidityKeyMin),m_newrunemax(cool::ValidityKeyMax),
322  m_newtimemin(cool::ValidityKeyMin),m_newtimemax(cool::ValidityKeyMax),
323  m_srunemin(cool::ValidityKeyMin),m_srunemax(cool::ValidityKeyMax),
324  m_channel1(""),m_channel2(""),m_bufsize(1000),m_sealmsg(5),
325  m_anadelt(-1),m_outfolder(""),m_outtag(""),m_newdataset(""),
326  m_checkoutputfile(""),m_timedb(""),m_taglabel(""),
327  m_runinfohost("http://atlas-run-info-api.web.cern.ch/api"),
328  m_coolapp(&m_coralsvc),
329  m_dbSvc(&(m_coolapp.databaseService())),m_repsort(nullptr),
330  m_open(false),m_chansel(cool::ChannelSelection::all()),p_rootfile(nullptr)
331 {
332  m_poolrefs.clear();
333  m_poollast=m_poolrefs.end();
334  // configure CORAL components
335  coral::IConnectionServiceConfiguration& csconfig=m_coralsvc.configuration();
336  csconfig.disablePoolAutomaticCleanUp();
337  csconfig.setConnectionTimeOut(0);
338 }
339 
340 bool AtlCoolCopy::openConnections(const std::string& sourcedb,
341  const std::string& destdb,bool allowcreate) {
342  // check connections not already open
343  if (m_open) return true;
344  // initialise replica sorter if it was requested
345  if (m_readoracle) {
346  m_repsort=new ReplicaSorter();
347  coral::IConnectionServiceConfiguration& csconfig=m_coralsvc.configuration();
348  csconfig.setReplicaSortingAlgorithm(*m_repsort);
349  }
350  // cool::IDatabaseSvc& dbSvc=cool::DatabaseSvcFactory::databaseService();
351  // open source database
352  std::cout << "Open source database: " << sourcedb << std::endl;
353  if (!m_sourceread) std::cout << "... in UPDATE mode" << std::endl;
354  try {
355  m_sourceDbPtr=m_dbSvc->openDatabase(transConn(sourcedb),m_sourceread);
356  }
357  catch (std::exception& e) {
358  std::cout << "Cool exception caught: " << e.what() << std::endl;
359  return false;
360  }
361  // open destination database
362  if (m_nocopy) {
363  m_open=true;
364  return true;
365  } else if (m_root || m_analyse) {
366  std::cout << "Open destination ROOT file: " << destdb << std::endl;
367  p_rootfile=new TFile(destdb.c_str(),"RECREATE");
368  if (p_rootfile==nullptr) std::cout << "ERROR: Could not open ROOT file" <<
369  std::endl;
370  m_open=(p_rootfile!=nullptr);
371  return m_open;
372  }
373  std::string tdestdb=transConn(destdb);
374  std::cout << "Open destination database: " << tdestdb << std::endl;
375  try {
376  m_destDbPtr=m_dbSvc->openDatabase(tdestdb,m_verify);
377  // if the open succeeds and we are using recreate mode, drop/delete
378  // the existing database first
379  if (m_recreate) {
380  std::cout <<
381  "Forcing recreation of destination database - deleting existing data!"
382  << std::endl;
383  m_destDbPtr.reset();
384  m_dbSvc->dropDatabase(tdestdb);
385  // go into catch to recrete database
386  throw cool::DatabaseDoesNotExist("old database deleted");
387  }
388  }
389  catch (std::exception& e) {
390  std::cout << "COOL exception caught: " << e.what() << std::endl;
391  // try to recover by creating new DB if possible and requested
392  if (allowcreate || m_recreate) {
393  std::cout << "Try to create new conditions DB" << std::endl;
394  try {
395  m_destDbPtr=m_dbSvc->createDatabase(tdestdb);
396  std::cout << "Creation succeeded" << std::endl;
397  }
398  catch (cool::Exception& e) {
399  std::cout << "Creation failed" << std::endl;
400  return false;
401  }
402  } else {
403  return false;
404  }
405  }
406  m_open=true;
407  return true;
408 }
409 
411  if (m_sourceCoraPtr.get()==nullptr) {
412  std::cout << "Attempt to open source CoraCool DB " << m_sourcedb <<
413  std::endl;
416  std::cout << "Opened CoraCool source DB" << std::endl;
417  }
418  // skip destination DB if not copying
419  if (m_nocopy) return true;
420  if (m_destCoraPtr.get()==nullptr) {
421  std::cout << "Attempt to open destination CoraCool DB " << m_destdb <<
422  std::endl;
425  std::cout << "Opened CoraCool dest DB" << std::endl;
426  }
427  return true;
428 }
429 
431  // set m_tags to list of top level tags which are locked
432  m_tags.clear();
433  cool::IFolderSetPtr topfolder=m_sourceDbPtr->getFolderSet("/");
434  const std::vector<std::string>& toptaglist=topfolder->listTags();
435  for (std::vector<std::string>::const_iterator toptag=toptaglist.begin();
436  toptag!=toptaglist.end();++toptag) {
437  cool::HvsTagLock::Status tstat=topfolder->tagLockStatus(*toptag);
438  if (tstat==cool::HvsTagLock::LOCKED ||
439  tstat==cool::HvsTagLock::PARTIALLYLOCKED) {
440  std::cout << "Top-level tag " << *toptag << " will be copied" <<
441  std::endl;
442  m_tags.push_back(*toptag);
443  }
444  }
445  std::cout << "Total of " << m_tags.size() << " top-level tags to be copied"
446  << std::endl;
447  return (!m_tags.empty());
448 }
449 
450 std::string AtlCoolCopy::transConn(const std::string& inconn) {
451  // translate simple connection string (no slash) to mycool.db with given
452  // instance name, all others are left alone
453  if (inconn.find('/')==std::string::npos) {
454  return "sqlite://X;schema=mycool.db;dbname="+inconn;
455  } else {
456  return inconn;
457  }
458 }
459 
460 
461 bool AtlCoolCopy::addFolder(const std::string& folder,const bool onlyTags) {
462  std::cout << "Add folders in path:" << folder << " [ ";
463  const std::vector<std::string> nodelist=m_sourceDbPtr->listAllNodes();
464  // find all matching leaf folders
465  for (std::vector<std::string>::const_iterator nodeitr=nodelist.begin();
466  nodeitr!=nodelist.end();++nodeitr) {
467  // match exact folder name or leading part of path
468  // for leading part matches, next char in folder name must be '/'
469  // so /CALO/SetA matches /CALO/SetA/X but not /CALO/SetAB
470  if (*nodeitr==folder || folder=="/" ||
471  (nodeitr->compare(0,folder.size(),folder)==0 &&
472  nodeitr->size()>folder.size() && nodeitr->compare(folder.size(),1,"/")==0)) {
473  // check if folder on exclude list
474  bool exclude=false;
475  for (std::vector<std::string>::const_iterator iexcl=m_folderexcl.begin();
476  iexcl!=m_folderexcl.end();++iexcl) {
477  if (iexcl->compare(0,1,"/")==0) {
478  // exclude pattern starting / matches folder path (/SCT or /SCT/DCS)
479  exclude=(exclude || nodeitr->compare(0,iexcl->size(),*iexcl)==0);
480  } else {
481  // exclude pattern without leading / matches anywhere in folder
482  exclude=(exclude || (nodeitr->find(*iexcl)!=std::string::npos));
483  }
484  }
485  // check folder exists (is a leaf folder), and not excluded
486  if (m_sourceDbPtr->existsFolder(*nodeitr) && !exclude && !onlyTags) {
487  // only add if folder not already on list
488  if (find(m_folderlist.begin(),m_folderlist.end(),*nodeitr)==
489  m_folderlist.end()) {
490  std::cout << *nodeitr << " ";
491  m_folderlist.push_back(*nodeitr);
492  }
493  }
494  // if its a folderset, check for any hierarchical tags
495  if (!m_nohitag && m_sourceDbPtr->existsFolderSet(*nodeitr) && !exclude) {
496  if (!m_prunetags) {
497  const std::vector<std::string> foldersettags=
498  m_sourceDbPtr->getFolderSet(*nodeitr)->listTags();
499  if (!foldersettags.empty()) {
500  for (std::vector<std::string>::const_iterator
501  itr=foldersettags.begin();itr!=foldersettags.end();++itr) {
502  m_hitagmap[*itr]=*nodeitr;
503  }
504  }
505  } else {
506  // only take tags in this folder which are referenced from one of
507  // the input tags (assumed to be top-level tags)
508  cool::IFolderSetPtr sfolder=m_sourceDbPtr->getFolderSet(*nodeitr);
509  for (std::vector<std::string>::const_iterator toptag=m_tags.begin();
510  toptag!=m_tags.end();++toptag) {
511  try {
512  std::string rtag=sfolder->resolveTag(*toptag);
513  m_hitagmap[rtag]=*nodeitr;
514  }
515  // catch exceptions indicating tag defines nothing here
516  // note std::exception rather than COOL exception to cover case
517  // when trying to resolve a leaf tag in the '/' folder, which
518  // throws a coral AttributeException
519  catch (std::exception& e) {}
520  }
521  }
522  }
523  }
524  }
525  std::cout << "]" << std::endl;
526  return true;
527 }
528 
529 bool AtlCoolCopy::addExclude(const std::string& folder) {
530  std::cout << "Adding folder to exclude list: " << folder << std::endl;
531  m_folderexcl.push_back(folder);
532  return true;
533 }
534 
536  (const std::string& folder,const std::vector<std::string>& taglist) {
537  // get source folder
538  cool::IFolderPtr sourcefl,destfl;
539  CoraCoolFolderPtr sourceflc,destflc;
540  try {
541  sourcefl=m_sourceDbPtr->getFolder(folder);
542  }
543  catch (cool::Exception& e) {
544  std::cout << "Could not get source folder: " << folder << std::endl;
545  return 20;
546  }
547  const std::string& sourcedesc=sourcefl->description();
548  // check if folder should be skipped from replication
549  if (m_skiprep && sourcedesc.find("<norep/>")!=std::string::npos) {
550  std::cout << "Folder " << folder <<
551  " skipped due to <norep/> metadata" << std::endl;
552  return 0;
553  }
554  const bool iscora=(m_coracool &&
555  sourcedesc.find("<coracool")!=std::string::npos);
556  if (iscora) {
557  // activate CoraCool and get source folder pointer
558  openCoraCool();
559  sourceflc=m_sourceCoraPtr->getFolder(folder);
560  }
561  // setup the channel-range
562  setChannelRange(sourcefl);
563 
564  cool::FolderVersioning::Mode vermode=sourcefl->versioningMode();
565  cool::FolderVersioning::Mode dvermode=vermode;
566  if (m_forcesingle) {
567  dvermode=cool::FolderVersioning::SINGLE_VERSION;
568  std::cout << "Forcing destination folder to singleversion" << std::endl;
569  }
570  if (m_forcemulti) {
571  dvermode=cool::FolderVersioning::MULTI_VERSION;
572  std::cout << "Forcing destination folder to multiversion" << std::endl;
573  }
574  // setup type of folder (payload mode, inline, separate, or vector)
575  const cool::PayloadMode::Mode spaymode=
576  sourcefl->folderSpecification().payloadMode();
577  cool::PayloadMode::Mode dpaymode=spaymode;
578 
579  // set name for destination folder
580  std::string destfolder=folder;
581  if (!m_outfolder.empty()) {
582  destfolder=m_outfolder;
583  std::cout << "Destination folder will be renamed to " << destfolder <<
584  std::endl;
585  }
586 
587 // get destination folder, try to create if not there (and not verifying!)
588  bool created=false;
589  if (!m_nocopy && !m_root && !m_analyse) {
590  if (!m_destDbPtr->existsFolder(destfolder) && !m_verify) {
591  std::cout << "Creating folder " << destfolder << " payload-type " <<
592  dpaymode << " on destination" << std::endl;
593  created=true;
594  std::string metadata=sourcedesc;
595  if (m_forcerune || m_forcetime) {
596  std::string newmeta=m_forcerune ? "run-lumi" : "time";
597  std::string::size_type p1,p2;
598  p1=metadata.find("<timeStamp>");
599  p2=metadata.find("</timeStamp>");
600  if (p1!=std::string::npos && p2!=std::string::npos) {
601  metadata.replace(0,p2,"<timeStamp>"+newmeta);
602  std::cout << "Forced destination folder to " << newmeta << " : "
603  << metadata << std::endl;
604  } else {
605  std::cout <<
606  "ERROR: Could not parse metadata string to force timestamp type"
607  << std::endl;
608  }
609  }
610  // force separate or inline payload, but not if input is vector
611  if (m_forcepay && spaymode!=cool::PayloadMode::VECTORPAYLOAD)
612  dpaymode=cool::PayloadMode::SEPARATEPAYLOAD;
613  if (m_forcenopay && spaymode!=cool::PayloadMode::VECTORPAYLOAD)
614  dpaymode=cool::PayloadMode::INLINEPAYLOAD;
615 
616  try {
617  if (iscora) {
618  destflc=m_destCoraPtr->createFolder(destfolder,
619  sourceflc->coralTableName(),
620  sourceflc->fkSpecification(),
621  sourceflc->payloadSpecification(),
622  sourceflc->coralFKey(),
623  sourceflc->coralPKey(),
624  metadata,dvermode,true);
625  std::cout << "Created CoraCool folder" << std::endl;
626  destfl=m_destDbPtr->getFolder(destfolder);
627  } else {
628  destfl=m_destDbPtr->createFolder(destfolder,
629  cool::FolderSpecification(dvermode,
630  sourcefl->payloadSpecification(),dpaymode),
631  metadata,true);
632  }
633  }
634  catch (cool::Exception&e ) {
635  std::cout << "Create folder failed - aborting" << std::endl;
636  return 30;
637  }
638  }
639  // now get the pointer to destination folder if needed
640  // note both COOL and CoraCool pointers are set if needed
641  try {
642  if (iscora) destflc=m_destCoraPtr->getFolder(destfolder);
643  destfl=m_destDbPtr->getFolder(destfolder);
644  }
645  catch (cool::Exception& e) {
646  std::cout << "Could not get destination folder: " << destfolder
647  << std::endl;
648  return 21;
649  }
650  // check payload specifications of folders are the same
651  const cool::IRecordSpecification& sourcespec=
652  sourcefl->payloadSpecification();
653  const cool::IRecordSpecification& destspec=
654  destfl->payloadSpecification();
655  if (!(sourcespec==destspec)) {
656  bool badspec=false;
657  if (m_ignorespec) {
658  // specifications differ - check names are same
659  std::cout <<
660  "WARNING Source and destination folder specifications differ" <<
661  std::endl;
662  for (unsigned int i=0;i<sourcespec.size();++i) {
663  const std::string& sname=sourcespec[i].name();
664  if (!destspec.exists(sname)) {
665  std::cout << "ERROR: Field " << sname << " absent from destination"
666  << std::endl;
667  badspec=true;
668  }
669  }
670  } else {
671  badspec=true;
672  }
673  if (badspec) {
674  std::cout <<
675  "ERROR Source and destination folder specifications differ"
676  << std::endl;
677  return 22;
678  }
679  }
680  // check folder descriptions are the same - just print WARNING if not
681  const std::string& destdesc=destfl->description();
682  if (sourcedesc!=destdesc) {
683  std::cout << "WARNING: Source and destination folder descriptions (meta-data) differ" << std::endl;
684  std::cout << "Source folder: " << sourcedesc << std::endl;
685  std::cout << "Destn folder: " << destdesc << std::endl;
686  }
687  // check payload modes are same - print warning if not
688  const cool::PayloadMode::Mode dpaymode=
689  destfl->folderSpecification().payloadMode();
690  if (spaymode!=dpaymode) {
691  std::cout << "WARNING: Source (" << spaymode << ") and destination (" <<
692  dpaymode << " folder payload modes differ" << std::endl;
693  }
694 
695  // check/set channels table if requested
696  if (!m_nochannel) {
697  if (!checkChannels(folder,sourcefl,destfl,created)) return 23;
698  }
699  }
700  // if only copying structures, stop here
701  if (m_nodata) return 0;
702  // extract folder/range information
703  std::cout << "Start to process folder: " << folder;
704  // check for timestamp XML
705  bool timestamp=(sourcefl->description().find("<timeStamp>time")!=
706  std::string::npos);
707  cool::ValidityKey since,until;
708  if (timestamp) {
709  since=m_timemin;
710  until=m_timemax;
711  std::cout << " (timestamp)" << std::endl;
712  } else {
713  since=m_runemin;
714  until=m_runemax;
715  std::cout << " (run/lumi)" << std::endl;
716  }
717  if (m_alliov || m_truncate)
718  std::cout << "Output IOVs will be modified" << std::endl;
719  if (m_skipout)
720  std::cout << "IOVs extending outside selection range will be skipped"
721  << std::endl;
722 
723  bool checkrefs=false;
724  const std::string name0=sourcefl->payloadSpecification()[0].name();
725  if (m_checkrefs && (name0=="PoolRef" || name0=="fileGUID")) {
726  checkrefs=true;
727  std::cout << "Check POOL references in folder " << folder << std::endl;
728  }
729  // if nocopy, and checking POOL references, and folder is not a POOL ref one
730  // can skip the data access
731  if (m_checkrefs && m_nocopy && !checkrefs) return 0;
732 
733  // check for <fullrep/> metadata indicating copy all tags if -skiprep option
734  bool copyall=
735  (m_skiprep && (sourcedesc.find("<fullrep/>")!=std::string::npos));
736  if (copyall) std::cout <<
737  "All tags in folder will be copied due to <fullrep/> metadata" << std::endl;
738 
739  // set up true list of tags to copy
740  std::vector<std::string> tags;
741  if (vermode==cool::FolderVersioning::SINGLE_VERSION) {
742  std::cout << "Single version folder" << std::endl;
743  tags.emplace_back("HEAD");
744  } else {
745  std::cout << "Multi version folder: consider tags [ ";
746  // get list of tags in this node which are requested
747  const std::vector<std::string> foldertags=sourcefl->listTags();
748  for (std::vector<std::string>::const_iterator itag=foldertags.begin();
749  itag!=foldertags.end();++itag) {
750  bool copyit=copyall;
751  // if input taglist is empty, take all tags in folder
752  if (taglist.empty() ||
753  find(taglist.begin(),taglist.end(),*itag)!=taglist.end())
754  copyit=true;
755  for (std::vector<std::string>::const_iterator imtag=m_magic.begin();
756  imtag!=m_magic.end();++imtag) {
757  if (itag->find(*imtag)!=std::string::npos) copyit=true;
758  }
759  if (copyit) {
760  tags.push_back(*itag);
761  std::cout << *itag << " ";
762  }
763  }
764  // if no tags were found, or doing inclusive hierarchical tag copying
765  // try resolving input tags hierarchically
766  if (tags.empty() || m_hitag) {
767  for (std::vector<std::string>::const_iterator itag=taglist.begin();
768  itag!=taglist.end();++itag) {
769  try {
770  std::string htag=sourcefl->resolveTag(*itag);
771  if (find(tags.begin(),tags.end(),htag)==tags.end()) {
772  std::cout << *itag << "=" << htag << " ";
773  tags.push_back(htag);
774  }
775  }
776  // ignore exceptions indicating tag not defined here
777  // note std::exception rather than COOL exception to cover case
778  // when trying to resolve a leaf tag in the '/' folder, which
779  // throws a coral AttributeException
780  catch (std::exception& e) { }
781  }
782  }
783  std::cout << "]" << std::endl;
784  // if still no tags were found, or forced HEAD tag copying, or no
785  // tags in the folder at all (=MV folder being used as SV), add HEAD
786  if (((tags.empty() || m_includehead) && !m_excludehead) ||
787  foldertags.empty())
788  tags.emplace_back("HEAD");
789  }
790 
791  sourcefl->setPrefetchAll(false);
792  for (std::vector<std::string>::const_iterator itag=tags.begin();
793  itag!=tags.end();++itag) {
794  std::string outtag=*itag;
795  if (!m_outtag.empty()) outtag=m_outtag;
796  int retcode;
797  // verify or copy folder
798  if (m_verify) {
799  retcode=verifyIOVs(folder,sourcefl,sourceflc,destfl,destflc,
800  *itag,since,until,checkrefs,iscora,spaymode);
801  } else if (m_nocopy) {
802  retcode=nocopyIOVs(folder,sourcefl,*itag,since,until,checkrefs);
803  } else if (m_root) {
804  retcode=rootIOVs(folder,sourcefl,*itag,since,until,timestamp);
805  } else if (m_analyse) {
806  retcode=analyseIOVs(folder,sourcefl,*itag,since,until,timestamp);
807  } else {
808  retcode=copyIOVs(folder,destfolder,sourcefl,sourceflc,destfl,destflc,
809  *itag,outtag,since,until,timestamp,checkrefs,iscora,
810  spaymode,created);
811  }
812  if (retcode!=0) {
813  std::cout << "ERROR operation failed for folder " << folder << " tag " <<
814  *itag << std::endl;
815  return retcode;
816  }
817  }
818  return 0;
819 }
820 
821 void AtlCoolCopy::setChannelRange(const cool::IFolderPtr& sourcefl) {
822  // add range specified via -ch1 -ch2 if given
823  if (!m_channel1.empty() && !m_channel2.empty()) {
824  m_channelRange.clear();
825  m_channelRange.push_back(m_channel1+":"+m_channel2);
826  }
828  const size_t nChanRange=m_channelRange.size();
829  for (size_t i=0;i<nChanRange;i++) {
830  size_t cpos=m_channelRange[i].find(':');
831  if (cpos==std::string::npos || cpos > m_channelRange[i].size()-1) {
832  // single channel
833  std::cout << "Adding channel " << m_channelRange[i] <<
834  " to channel selection" << std::endl;
835  if (m_chansel.allChannels())
836  m_chansel=cool::ChannelSelection(channelID(sourcefl,
837  m_channelRange[i]));
838  else
839  m_chansel.addChannel(channelID(sourcefl,m_channelRange[i]));
840  }
841  else {
842  // Channel Range
843  std::string c1=m_channelRange[i].substr(0,cpos);
844  std::string c2=m_channelRange[i].substr(1+cpos);
845  std::cout << "Adding channel range " << c1 << " to " << c2 <<
846  " to channel selection" << std::endl;
847  if (m_chansel.allChannels())
848  m_chansel=cool::ChannelSelection(channelID(sourcefl,c1),
849  channelID(sourcefl,c2));
850  else
851  m_chansel.addRange(channelID(sourcefl,c1),channelID(sourcefl,c2));
852  }
853  }//end loop over channel ranges
854 }
855 
856 cool::ChannelId AtlCoolCopy::channelID(const cool::IFolderPtr& folder,
857  const std::string& chanstring) {
858  const char* cstr=chanstring.c_str();
859  if (isNumeric(cstr)) {
860  // channel is a number
861  return cool::ChannelId(strtoul(cstr,nullptr,10));
862  } else {
863  cool::ChannelId chan=0;
864  try {
865  chan=folder->channelId(chanstring);
866  std::cout << "Channel name " << chanstring << " maps to channelID "
867  << chan << std::endl;
868  }
869  catch (cool::Exception& e) {
870  std::cout << "ERROR: Channel name " << chanstring <<
871  " not defined in folder " << std::endl;
872  }
873  return chan;
874  }
875 }
876 
877 // Calls non-thread-safe functions of CoraCoolFolder.
878 int AtlCoolCopy::copyIOVs ATLAS_NOT_THREAD_SAFE
879  (const std::string& folder,
880  const std::string& destfolder,
881  const cool::IFolderPtr& sourcefl,const CoraCoolFolderPtr& sourceflc,
882  const cool::IFolderPtr& destfl,const CoraCoolFolderPtr& destflc,
883  const std::string& sourcetag,const std::string& desttag,
884  const cool::ValidityKey since,const cool::ValidityKey until,
885  bool timestamp,bool checkrefs,bool iscora,
886  const cool::PayloadMode::Mode paymode ,bool created) {
887 
888  std::cout << "Copying tag " << sourcetag << " of folder " << folder <<
889  " to destination tag " << desttag << std::endl;
890  cool::FolderVersioning::Mode vermode=sourcefl->versioningMode();
891  cool::FolderVersioning::Mode dvermode=destfl->versioningMode();
892  // check for online mode
893  int updatemode=getUpdateMode(destfl->description(),desttag);
894  std::vector<std::string> dtaglist=destfl->listTags();
895  // if online mode, must have --getonline and either -truncate or -alliov
896  // only if destination DB is oracle
897  if (updatemode==1 && m_destdb.find("oracle")!=std::string::npos &&
898  (!m_getonline || (!m_truncate && !m_alliov))) {
899  if (m_ignoremode) {
900  std::cout << "Folder is online (UPD1) mode but IGNORING PROTECTION"
901  << std::endl;
902  } else {
903  if(find(dtaglist.begin(),dtaglist.end(),desttag)!=dtaglist.end()) {
904  std::cout << "Folder is online mode (UPD1) and tag already exist - -getonline and -truncate or -alliov options MUST be used" << std::endl;
905  return 35;
906  }
907  else {
908  std::cout << "Folder is online mode (UPD1), new tag will be created" << std::endl;
909  }
910 
911  }
912  }
913  // if UPD4 mode, must have -getbulk and either -truncate or -alliov
914  if (updatemode==4 && m_destdb.find("oracle")!=std::string::npos &&
915  (!m_getbulk || (!m_truncate && !m_alliov))) {
916  if (m_ignoremode) {
917  std::cout << "Folder is bulkreco (UPD4) mode but IGNORING PROTECTION"
918  << std::endl;
919  } else {
920  if(find(dtaglist.begin(),dtaglist.end(),desttag)!=dtaglist.end()) {
921  std::cout << "Folder is bulkreco mode (UPD4) - -getbulk and -truncate or -alliov options MUST be used" << std::endl;
922  return 35;
923  } else {
924  std::cout << "Folder is bulkreco mode (UPD4), new tag will be created" << std::endl;
925  }
926 
927  }
928  }
929 
930  // if destination tags are being checked, check if this tag already
931  // exists in destination folder, if so skip copy
932  // also skip if tag is HEAD, and folder was not newly created
933  if (m_checkdesttag) {
934  if (find(dtaglist.begin(),dtaglist.end(),desttag)!=dtaglist.end()
935  || (desttag=="HEAD" && !created)) {
936  std::cout << "Destination tag " << desttag <<
937  " already exists in folder " << folder << " - skip copy" << std::endl;
938  return 0;
939  }
940  }
941  bool relock=false; // tag must be relocked afterwards
942  bool prot=false; //update is protected, irrespective of if tag must be locked
943  if ((m_applock || (updatemode==1 && m_getonline) || updatemode==2 ||
944  (updatemode==4 && m_getbulk)) &&
945  dvermode==cool::FolderVersioning::MULTI_VERSION) {
946  // check if the destination tag exists and is locked
947  std::vector<std::string> dtaglist=destfl->listTags();
948  for (std::vector<std::string>::const_iterator itr=dtaglist.begin();
949  itr!=dtaglist.end();++itr) {
950  if (desttag==*itr) {
951  // tag exists - must protect it unless ignoremode
952  prot=!m_ignoremode;
953  // check lock status
954  if (destfl->tagLockStatus(desttag)==cool::HvsTagLock::LOCKED) {
955  std::cout << "Unlocking destination tag " << desttag <<
956  " for append or UPDx access" << std::endl;
957  if (m_applocksv) {
958  std::cout << "Appending according to SV folder rules" << std::endl;
959  if (updatemode!=3) {
960  std::cout <<
961  "ERROR: Only allowed for UPD3 mode tags" << std::endl;
962  return 36;
963  }
964  }
965  destfl->setTagLockStatus(desttag,cool::HvsTagLock::UNLOCKED);
966  relock=true;
967  }
968  }
969  }
970  }
971  int nobj=0;
972  int nbuf=0;
973  int nskip=0;
974  int nbad=0;
975  // set up tag to be used at point of insertion
976  std::string localtag="";
977  if (dvermode==cool::FolderVersioning::MULTI_VERSION &&
978  desttag!="HEAD" && m_usertags) localtag=desttag;
979  // now loop over IOVs - separate for CoraCool and COOL
980  try {
981  if (iscora) {
982  // branch for CoraCool
983  sourceflc->setPrefetchAll(false);
984  CoraCoolObjectIterPtr sourceitr;
985  if (vermode==cool::FolderVersioning::SINGLE_VERSION) {
986  sourceitr=sourceflc->browseObjects(since,until,m_chansel);
987  } else {
988  sourceitr=sourceflc->browseObjects(since,until,m_chansel,sourcetag);
989  }
990  // keep track of new FKs of inserted objects
991  std::map<int,int> insertkeymap;
992  unsigned int nref=0;
993  while (sourceitr->hasNext()) {
994  CoraCoolObjectPtr obj=sourceitr->next();
995  // check object should not be skipped as spreading outside select-IOV
996  if (m_skipout &&
997  (obj->since()<m_srunemin || obj->until()>m_srunemax)) {
998  ++nskip;
999  continue;
1000  }
1001  // check object should not be skipped as excluded channel
1002  if (!m_excludechans.empty()) {
1003  if (find(m_excludechans.begin(),m_excludechans.end(),
1004  obj->channelId())!=m_excludechans.end()) {
1005  ++nskip;
1006  continue;
1007  }
1008  }
1009  if (nbuf==0) {
1010  if (m_debug) std::cout <<
1011  "Setup new CoraCool storage buffer at object " << nobj << std::endl;
1012  destflc->setupStorageBuffer();
1013  }
1014  cool::ValidityKey newsince,newuntil;
1015  adjustIOVs(obj->since(),obj->until(),since,until,newsince,newuntil,
1016  timestamp);
1017  // skip negative/zero IOV lengths
1018  if (newsince>=newuntil) {
1019  std::cout << "WARNING: Skipping IOV with since " << newsince <<
1020  ">= until" << newuntil << std::endl;
1021  ++nbad;
1022  continue;
1023  }
1024  // find the old FK, check if we have already inserted this
1025  // in which case a reference can be added
1026  int oldfk=0;
1027  std::map<int,int>::const_iterator ikey=insertkeymap.end();
1028  bool foundkey=false;
1029  // ensure returned data is not of zero size - if so cannot extract
1030  // and remember the FK
1031  if (obj->size()>0) {
1032  oldfk=sourceflc->getAttrKey(
1033  (*obj->begin())[sourceflc->coralFKey()]);
1034  ikey=insertkeymap.find(oldfk);
1035  foundkey=true;
1036  }
1037  if (ikey==insertkeymap.end()) {
1038  int newfk=
1039  destflc->storeObject(newsince,newuntil,obj->begin(),obj->end(),
1040  obj->channelId(),localtag,
1041  (!m_userupdatehead && !localtag.empty()));
1042  if (foundkey) insertkeymap[oldfk]=newfk;
1043  } else {
1044  destflc->referenceObject(newsince,newuntil,ikey->second,
1045  obj->channelId(),localtag,
1046  (!m_userupdatehead && !localtag.empty()));
1047  ++nref;
1048  }
1049  ++nbuf;
1050  // flush buffer every m_bufsize objects
1051  if (nbuf==m_bufsize) {
1052  if (m_debug) std::cout << "Flush buffer after " << nobj << "," <<
1053  nbuf << " objects " << std::endl;
1054  // note CoraCool requires explicit re-setup of buffer after a flush
1055  destflc->flushStorageBuffer();
1056  destflc->setupStorageBuffer();
1057  nbuf=0;
1058  }
1059  ++nobj;
1060  }
1061  sourceitr->close();
1062  if (nref>0) std::cout << "Reference-to-existing used for " << nref
1063  << " payload objects" << std::endl;
1064  if (nbuf>0) {
1065  if (m_debug) std::cout << "Final buffer flush at " << nobj <<
1066  "," << nbuf << std::endl;
1067  destflc->flushStorageBuffer();
1068  }
1069  } else {
1070  // branch for pure COOL objects
1071  cool::IObjectIteratorPtr sourceitr;
1072  if (vermode==cool::FolderVersioning::SINGLE_VERSION) {
1073  sourceitr=sourcefl->browseObjects(since,until,m_chansel);
1074  } else {
1075  sourceitr=sourcefl->browseObjects(since,until,m_chansel,sourcetag);
1076  }
1077  while (sourceitr->goToNext()) {
1078  const cool::IObject& obj=sourceitr->currentRef();
1079  // check object should not be skipped as spreading outside select-IOV
1080  if (m_skipout && (obj.since()<m_srunemin || obj.until()>m_srunemax)) {
1081  ++nskip;
1082  continue;
1083  }
1084  // check object should not be skipped as excluded channel
1085  if (!m_excludechans.empty()) {
1086  if (find(m_excludechans.begin(),m_excludechans.end(),
1087  obj.channelId())!=m_excludechans.end()) {
1088  ++nskip;
1089  continue;
1090  }
1091  }
1092  if (nbuf==0) {
1093  if (m_debug) std::cout << "Setup new storage buffer at object " <<
1094  nobj << std::endl;
1095  destfl->setupStorageBuffer();
1096  }
1097  cool::ValidityKey newsince;
1098  cool::ValidityKey newuntil;
1099  adjustIOVs(obj.since(),obj.until(),since,until,newsince,newuntil,
1100  timestamp);
1101  // skip negative/zero IOV lengths
1102  if (newsince>=newuntil) {
1103  std::cout << "WARNING: Skipping IOV with since " << newsince <<
1104  ">= until" << newuntil << std::endl;
1105  ++nbad;
1106  continue;
1107  }
1108  if (checkrefs) checkRef(obj.payload(),folder,sourcetag);
1109  if (prot) {
1110  // check existing data in destination DB to ensure no clash
1111  if (m_applocksv) {
1112  // appendlockedsv mode - all IOV ends must be infinite
1113  // and new since must be greater than old since
1114  if (newuntil!=cool::ValidityKeyMax) {
1115  std::cout << "New IOVs must have until=cool::ValidityKeyMax" << std::endl;
1116  throw cool::Exception("Illegal insert over locked IOV",
1117  "AtlCoolCopy");
1118  }
1119  cool::IObjectIteratorPtr checkitr=destfl->browseObjects(newsince,
1120  newuntil,obj.channelId(),desttag);
1121  while (checkitr->goToNext()) {
1122  const cool::IObject& checkobj=checkitr->currentRef();
1123  if (checkobj.since()>=newsince) {
1124  std::cout << "ERROR:: Attempt to insert SV overlapping IOV whilst appending to locked tag" << std::endl;
1125  throw cool::Exception("Illegal insert over locked IOV",
1126  "AtlCoolCopy");
1127  }
1128  if (checkobj.until()!=cool::ValidityKeyMax) {
1129  std::cout << "Existing IOVs must have until=cool::ValidityKeyMax" << std::endl;
1130  throw cool::Exception("Illegal insert over locked IOV",
1131  "AtlCoolCopy");
1132  }
1133  }
1134  checkitr->close();
1135  } else if (m_applock) {
1136  // appendlocked mode - just make sure no objects in this IOV
1137  const unsigned int nexist=
1138  destfl->countObjects(newsince,newuntil,obj.channelId(),desttag);
1139  if (nexist>0) {
1140  std::cout << "ERROR: Attempt to insert IOV over " << nexist <<
1141  " objects whilst appending to locked tag" << std::endl;
1142  throw cool::Exception("Illegal insert over locked IOV",
1143  "AtlCoolCopy");
1144  }
1145  } else if (updatemode==2) {
1146  // UPD2 tag - make sure run is on list of runs open for update
1147  // only for run/lumi based folders
1148  if (timestamp)
1149  throw cool::Exception(
1150  "Attempt to insert into locked UPD2 tag with timestamp format",
1151  "AtlCoolCopy");
1152  unsigned int run1=newsince >> 32;
1153  unsigned int run2=(newuntil-1) >> 32;
1154  for (unsigned int irun=run1;irun<=run2;++irun) {
1155  if (!std::binary_search(m_runlist.begin(),m_runlist.end(),irun))
1156  {
1157  std::cout << "Run " << irun << " from range [" << run1 << ","
1158  << run2 << "] not found in runfile list" << std::endl;
1159  throw cool::Exception("Illegal insert over locked IOV",
1160  "AtlCoolCopy");
1161  }
1162  }
1163  }
1164  // updatemode==1 will fall through, but no checks are done here
1165  }
1166  if (paymode==cool::PayloadMode::VECTORPAYLOAD) {
1167  // cool vector payload object copy
1168  cool::IRecordIterator& pitr=obj.payloadIterator();
1169  const cool::IRecordVectorPtr vptr=pitr.fetchAllAsVector();
1170  destfl->storeObject(newsince,newuntil,
1171  *vptr,obj.channelId(),localtag,
1172  (!m_userupdatehead && !localtag.empty()));
1173  nbuf+=vptr->size();
1174  pitr.close();
1175  } else {
1176  // standard COOL object copy
1177  destfl->storeObject(newsince,newuntil,
1178  obj.payload(),obj.channelId(),localtag,
1179  (!m_userupdatehead && !localtag.empty()));
1180  ++nbuf;
1181  }
1182  // flush buffer every m_bufsize objects
1183  if (nbuf>=m_bufsize) {
1184  if (m_debug) std::cout << "Flush buffer after " << nobj << "," <<
1185  nbuf << " objects " << std::endl;
1186  destfl->flushStorageBuffer();
1187  nbuf=0;
1188  }
1189  ++nobj;
1190  }
1191  // finished with the iterator
1192  sourceitr->close();
1193  if (nbuf>0) {
1194  if (m_debug) std::cout << "Final buffer flush at " << nobj <<
1195  "," << nbuf << std::endl;
1196  destfl->flushStorageBuffer();
1197  } // end of COOL-specific part
1198  }
1199  std::cout << "Folder copied with " << nobj << " objects" << std::endl;
1200  if (nskip>0) std::cout << nskip <<
1201  " objects were skipped extending outside IOV selection or excluded channel"
1202  << std::endl;
1203  if (nbad>0) std::cout << nbad <<
1204  " objects were skipped having zero or negative IOV lengths" << std::endl;
1205  }
1206  // exceptions thrown from insert loop (both COOL or CORACOOL)
1207  catch (cool::Exception& e) {
1208  std::cout << "Exception thrown from copy loop: " << e.what() <<
1209  std::endl;
1210  if (relock) {
1211  std::cout << "Relocking destination tag " << desttag << std::endl;
1212  destfl->setTagLockStatus(desttag,cool::HvsTagLock::LOCKED);
1213  }
1214  return 31;
1215  }
1216  // check if tag needs to be relocked
1217  if (relock) {
1218  std::cout << "Relocking destination tag " << desttag << std::endl;
1219  destfl->setTagLockStatus(desttag,cool::HvsTagLock::LOCKED);
1220  }
1221 
1222  if (dvermode==cool::FolderVersioning::MULTI_VERSION && desttag!="HEAD") {
1223  if (!m_usertags) {
1224  // apply HEAD style tagging
1225  std::cout << "Tag folder with HEAD-style tagging for tag: " << desttag
1226  << std::endl;
1227  try {
1228  destfl->tagCurrentHead(desttag,sourcefl->tagDescription(sourcetag));
1229  }
1230  catch (cool::Exception& e) {
1231  std::cout << "Exception thrown in HEAD-style folder-tag: " <<
1232  e.what() << std::endl;
1233  return 32;
1234  }
1235  }
1236  // record information about this tag for later
1237  if (m_copytaginfo) m_cooltagmap.insert(
1238  CoolTagMap::value_type(desttag,CoolTagInfo(m_sourceDbPtr,folder,
1239  destfolder,sourcetag,desttag,m_taglabel)));
1240  // check if any hierarchical tags reference the just-copied tag
1241  if (!m_hitagmap.empty()) {
1242  for (HiTagMap::const_iterator imap=m_hitagmap.begin();
1243  imap!=m_hitagmap.end();++imap) {
1244  try {
1245  if (sourcefl->findTagRelation(imap->first)==sourcetag) {
1246  std::cout << "Create hierarchical tag between " << desttag <<
1247  " and " << imap->first << " in folder " << imap->second <<
1248  std::endl;
1249  // first check this relation has not already been created
1250  try {
1251  std::string etag=destfl->resolveTag(imap->first);
1252  if (etag==desttag) {
1253  std::cout << "This relation has already been created" << std::endl;
1254  } else {
1255  std::cout << "ERROR: Tag in parent already related to " <<
1256  desttag << std::endl;
1257  }
1258  }
1259  catch (cool::Exception& e ) {
1260  // only do creation if does not already exist - via exception
1261  try {
1262  destfl->createTagRelation(imap->first,desttag);
1263  // check if this implicates a new parent folder
1264  // to be checked for further tags up the tree
1265  if (find(m_hiparent.begin(),m_hiparent.end(),imap->second)==
1266  m_hiparent.end()) m_hiparent.push_back(imap->second);
1267  // store the original tag information to transfer
1268  // properties later
1269  if (m_copytaginfo &&
1270  m_cooltagmap.find(imap->first)==m_cooltagmap.end())
1271  m_cooltagmap.insert(CoolTagMap::value_type(imap->first,
1272  CoolTagInfo(m_sourceDbPtr,imap->second,imap->second,
1273  imap->first,imap->first)));
1274  }
1275  catch (cool::Exception& e) {
1276  std::cout << "Cool exception " << e.what() <<
1277  "thrown in hierarchical tag creation" << std::endl;
1278  return 34;
1279  }
1280  }
1281  }
1282  }
1283  catch (cool::Exception& e) {
1284  }
1285  }
1286  }
1287  }
1288  return 0;
1289 }
1290 
1291 void AtlCoolCopy::adjustIOVs(const cool::ValidityKey& since,
1292  const cool::ValidityKey& until,
1293  const cool::ValidityKey& qsince,
1294  const cool::ValidityKey& quntil,
1295  cool::ValidityKey& newsince,
1296  cool::ValidityKey& newuntil,
1297  bool timestamp) const {
1298  // set newsince/until to since/until
1299  // but doing any required truncation/adjustment
1300  newsince=since;
1301  newuntil=until;
1302  if (m_alliov) {
1303  // make IOV cover specified range
1304  if (timestamp) {
1305  newsince=m_newtimemin;
1306  newuntil=m_newtimemax;
1307  } else {
1308  newsince=m_newrunemin;
1309  newuntil=m_newrunemax;
1310  }
1311  }
1312  // check for IOV truncation to range of query
1313  if (m_truncate) {
1314  if (newsince<qsince) newsince=qsince;
1315  if (newuntil>quntil) newuntil=quntil;
1316  }
1317  // check not requesting an IOV with negative length
1318  if (newuntil<newsince) throw cool::Exception(
1319  "Attempt to insert IOV with -ve length","AtlCoolCopy::adjustIOVs");
1320 }
1321 
1322 int AtlCoolCopy::nocopyIOVs(const std::string& folder,
1323  const cool::IFolderPtr& sourcefl,const std::string& sourcetag,
1324  const cool::ValidityKey since,const cool::ValidityKey until,
1325  bool checkrefs) {
1326 
1327  std::cout << "Reading tag " << sourcetag << " of folder " << folder <<
1328  " (no copy)" << std::endl;
1329  cool::FolderVersioning::Mode vermode=sourcefl->versioningMode();
1330  int nobj=0;
1331  cool::IObjectIteratorPtr sourceitr;
1332  if (vermode==cool::FolderVersioning::SINGLE_VERSION) {
1333  sourceitr=sourcefl->browseObjects(since,until,m_chansel);
1334  } else {
1335  sourceitr=sourcefl->browseObjects(since,until,m_chansel,sourcetag);
1336  }
1337  try {
1338  while (sourceitr->goToNext()) {
1339  const cool::IObject& obj=sourceitr->currentRef();
1340  if (checkrefs) checkRef(obj.payload(),folder,sourcetag);
1341  ++nobj;
1342  }
1343  std::cout << "Folder scanned with " << nobj << " objects" << std::endl;
1344  }
1345  // exceptions thrown from read loop
1346  catch (cool::Exception& e) {
1347  std::cout << "Exception thrown from read loop: " << e.what() <<
1348  std::endl;
1349  return 33;
1350  }
1351  // finished with the iterator
1352  sourceitr->close();
1353  return 0;
1354 }
1355 
1356 int AtlCoolCopy::verifyIOVs(const std::string& folder,
1357  const cool::IFolderPtr& sourcefl,const CoraCoolFolderPtr& sourceflc,
1358  const cool::IFolderPtr& destfl,const CoraCoolFolderPtr& destflc,
1359  const std::string& sourcetag,
1360  const cool::ValidityKey since,const cool::ValidityKey until,
1361  const bool checkrefs,const bool iscora,
1362  const cool::PayloadMode::Mode paymode) {
1363 
1364  std::cout << "Verifying tag " << sourcetag << " of folder " << folder <<
1365  std::endl;
1366  destfl->setPrefetchAll(false);
1367  cool::FolderVersioning::Mode vermode=sourcefl->versioningMode();
1368  int nobj=0;
1369  cool::IObjectIteratorPtr sourceitr,destitr;
1370  CoraCoolObjectIterPtr csourceitr,cdestitr;
1371  std::string tag=sourcetag;
1372  if (vermode==cool::FolderVersioning::SINGLE_VERSION || sourcetag=="HEAD")
1373  tag="";
1374  try {
1375  if (iscora) {
1376  sourceflc->setPrefetchAll(false);
1377  csourceitr=sourceflc->browseObjects(since,until,m_chansel,tag);
1378  cdestitr=destflc->browseObjects(since,until,m_chansel,tag);
1379  } else {
1380  sourceitr=sourcefl->browseObjects(since,until,m_chansel,tag);
1381  destitr=destfl->browseObjects(since,until,m_chansel,tag);
1382  }
1383  }
1384  catch (std::exception& e) {
1385  std::cout << "Exception thrown from verify iterator setup: " << e.what() <<
1386  std::endl;
1387  return 105;
1388  }
1389  try {
1390  // the check algorithm assumes the two databases will give back the
1391  // results of the query in the same order, which is currently the
1392  // case in COOL 1.3. If this changes, the verification will be more complex
1393  if (iscora) {
1394  const std::string& cfkey=sourceflc->coralFKey();
1395  const std::string& cpkey=sourceflc->coralPKey();
1396  while (csourceitr->hasNext()) {
1397  CoraCoolObjectPtr sobj=csourceitr->next();
1398  // check object should not be skipped as excluded channel
1399  if (!m_excludechans.empty()) {
1400  if (find(m_excludechans.begin(),m_excludechans.end(),
1401  sobj->channelId())!=m_excludechans.end()) {
1402  continue;
1403  }
1404  }
1405  if (cdestitr->hasNext()) {
1406  CoraCoolObjectPtr dobj=cdestitr->next();
1407  // check objects are the same
1408  int iret=0;
1409  // check IOV equality
1410  if (sobj->since()!=dobj->since() || sobj->until()!=dobj->until())
1411  iret=100;
1412  // check channel equality
1413  if (sobj->channelId()!=dobj->channelId())
1414  iret=101;
1415  // check size of payloads
1416  if (sobj->size()!=dobj->size()) {
1417  std::cout << "ERROR CoraCool object " << nobj <<
1418  " sizes do not match: " << sobj->size() << " " << dobj->size()
1419  << std::endl;
1420  iret=102;
1421  }
1422  // check payload equality (does not check attribute names)
1423  CoraCoolObject::const_iterator ditr=dobj->begin();
1424  for (CoraCoolObject::const_iterator sitr=sobj->begin();
1425  sitr!=sobj->end();++sitr,++ditr) {
1426  // loop over all the attributes, in order to skip PK and FK
1427  for (coral::AttributeList::const_iterator aitr=sitr->begin();
1428  aitr!=sitr->end();++aitr) {
1429  const std::string& aname=aitr->specification().name();
1430  if (aname!=cfkey && aname!=cpkey) {
1431  try {
1432  if (*aitr!=(*ditr)[aname]) {
1433  std::cout << "ERROR Values of attriute " << aname <<
1434  " differ" << std::endl;
1435  iret=102;
1436  }
1437  }
1438  catch (coral::AttributeListException& e) {
1439  std::cout << "ERROR: CoraCool attribute " << aname <<
1440  " not found in destination!" << std::endl;
1441  iret=102;
1442  }
1443  }
1444  }
1445  }
1446  if (iret!=0) {
1447  std::cout << "ERROR database entries do not match: since: " <<
1448  sobj->since() << "," << dobj->since() << " until: " <<
1449  sobj->until() << "," << dobj->until() << " channel: " <<
1450  sobj->channelId() << "," << dobj->channelId() << std::endl;
1451  return iret;
1452  }
1453  } else {
1454  std::cout <<
1455  "ERROR destination folder no matching CoraCool iterator for object "
1456  << nobj << std::endl;
1457  return 103;
1458  }
1459  ++ nobj;
1460  }
1461  } else {
1462  while (sourceitr->goToNext()) {
1463  const cool::IObject& sobj=sourceitr->currentRef();
1464  // check object should not be skipped as excluded channel
1465  if (!m_excludechans.empty()) {
1466  if (find(m_excludechans.begin(),m_excludechans.end(),
1467  sobj.channelId())!=m_excludechans.end()) {
1468  continue;
1469  }
1470  }
1471  if (checkrefs) checkRef(sobj.payload(),folder,sourcetag);
1472  if (destitr->goToNext()) {
1473  const cool::IObject& dobj=destitr->currentRef();
1474  // check objects are the same
1475  int iret=0;
1476  // check IOV equality
1477  if (sobj.since()!=dobj.since() || sobj.until()!=dobj.until())
1478  iret=100;
1479  // check channel equality
1480  if (sobj.channelId()!=dobj.channelId())
1481  iret=101;
1482  // check payload equality (does not check attribute names)
1483  // do not use cool::IRecord equality operator as does not correctly
1484  // handle null values
1485  if (paymode==cool::PayloadMode::VECTORPAYLOAD) {
1486  cool::IRecordIterator& spitr=sobj.payloadIterator();
1487  const cool::IRecordVectorPtr svptr=spitr.fetchAllAsVector();
1488  cool::IRecordIterator& dpitr=dobj.payloadIterator();
1489  const cool::IRecordVectorPtr dvptr=dpitr.fetchAllAsVector();
1490  if (svptr->size()!=dvptr->size()) {
1491  iret=102;
1492  } else {
1493  // loop through the payloads, checking equality - assumes
1494  // order is significant and same in source and destination DBs
1495  cool::IRecordVector::const_iterator svitr=svptr->begin();
1496  cool::IRecordVector::const_iterator svend=svptr->end();
1497  cool::IRecordVector::const_iterator dvitr=dvptr->begin();
1498  for (;svitr!=svend;++svitr,++dvitr) {
1499  if (!equalRecord(**svitr,**dvitr)) iret=102;
1500  }
1501  }
1502  if (iret!=0) {
1503  std::cout << "ERROR vector payloads do not match (size " << svptr->size() << "," << dvptr->size() << ")" << std::endl;
1504  }
1505 
1506  } else {
1507  // standard COOL folder - simple check of payloads
1508  if (!equalRecord(sobj.payload(),dobj.payload())) iret=102;
1509  }
1510 
1511  if (iret!=0) {
1512  std::cout << "ERROR database entries do not match: since: " <<
1513  sobj.since() << "," << dobj.since() << " until: " <<
1514  sobj.until() << "," << dobj.until() << " channel: " <<
1515  sobj.channelId() << "," << dobj.channelId() << std::endl;
1516  std::cout << "Source payload:" << std::endl;
1517  sobj.payload().attributeList().toOutputStream(std::cout);
1518  std::cout << std::endl << "Destination payload:" << std::endl;
1519  dobj.payload().attributeList().toOutputStream(std::cout);
1520  std::cout << std::endl;
1521  return iret;
1522  }
1523  } else {
1524  std::cout <<
1525  "ERROR destination folder no matching iterator for object "
1526  << nobj << std::endl;
1527  return 103;
1528  }
1529  ++nobj;
1530  }
1531  }
1532  }
1533  catch (cool::Exception& e) {
1534  std::cout << "Exception thrown from verify loop: " << e.what() <<
1535  std::endl;
1536  return 104;
1537  }
1538  // finished with the iterators
1539  if (iscora) {
1540  } else {
1541  sourceitr->close();
1542  destitr->close();
1543  }
1544  std::cout << "Verification of folder " << folder << " tag " <<
1545  sourcetag << " OK (" << nobj << " objects)" << std::endl;
1546  return 0;
1547 }
1548 
1549 
1550 
1551 int AtlCoolCopy::rootIOVs(const std::string& folder,
1552  const cool::IFolderPtr& sourcefl,const std::string& sourcetag,
1553  const cool::ValidityKey since,const cool::ValidityKey until,
1554  const bool timestamp) {
1555  // copy this selection to ROOT
1556  std::cout << "Write tag " << sourcetag << " of folder " << folder <<
1557  " to ROOT file" << std::endl;
1558  // create the directory structure - top directory COOL
1559  std::string treename=rootDirs(folder,"COOL");
1560  bool timestamp2=timestamp;
1561  if (m_forcetime) timestamp2=true;
1562  if (m_forcerune) timestamp2=false;
1563  cool::FolderVersioning::Mode vermode=sourcefl->versioningMode();
1564  // create TTree with appropriate structure - only if it does not exist
1565  // could have been created from a previous tag in the same folder
1566  TTree* tree=static_cast<TTree*>(gDirectory->FindObject(treename.c_str()));
1567  if (tree==nullptr) {
1568  std::cout << "Book TTree " << treename << std::endl;
1569  tree=new TTree(treename.c_str(),"COOL datadump");
1570  if (timestamp2) {
1571  tree->Branch("IOVSince",&m_nt_since,"IOVSince/l");
1572  tree->Branch("IOVUntil",&m_nt_until,"IOVUntil/l");
1573  } else {
1574  tree->Branch("RunSince",&m_nt_runsince,"RunSince/i");
1575  tree->Branch("RunUntil",&m_nt_rununtil,"RunUntil/i");
1576  tree->Branch("LBSince",&m_nt_lbsince,"LBSince/i");
1577  tree->Branch("LBUntil",&m_nt_lbuntil,"LBUntil/i");
1578  }
1579  tree->Branch("ChannelID",&m_nt_channel,"ChannelID/i");
1580  if (vermode==cool::FolderVersioning::MULTI_VERSION)
1581  tree->Branch("TagID",m_nt_tagid,"TagID/C");
1582  // now loop through specification, creating payload buffer and tree
1583  const cool::IRecordSpecification& spec=
1584  (sourcefl->folderSpecification()).payloadSpecification();
1585  unsigned int ncolumns=spec.size();
1586  // clear the buffer of pointers - note this leaks the memory of the
1587  // previous buffers, but to do this properly would have to remember
1588  // the type of each object and delete appropriately
1589  m_nt_treename=treename;
1590  m_nt_bufferptr.clear();
1591  for (unsigned int icol=0;icol<ncolumns;++icol) {
1592  const cool::IFieldSpecification& fieldspec=spec[icol];
1593  void* ptr=nullptr;
1594  char rootID;
1595  if (rootAllocate(fieldspec,ptr,rootID)) {
1596  tree->Branch(fieldspec.name().c_str(),ptr,
1597  (fieldspec.name()+"/"+rootID).c_str());
1598  if (m_debug) std::cout << "Defining column for " << spec[icol].name()
1599  << " of type " << spec[icol].storageType().name() << std::endl;
1600  } else {
1601  std::cout << "Attribute " << spec[icol].name() << " of type " <<
1602  spec[icol].storageType().name() << " will be skipped" << std::endl;
1603  }
1604  m_nt_bufferptr.push_back(ptr);
1605  }
1606  } else {
1607  std::cout << "TTree " << treename << " already exists" << std::endl;
1608  // check we have seen and defined this tree
1609  unsigned int size=
1610  (sourcefl->folderSpecification()).payloadSpecification().size();
1611  if (treename!=m_nt_treename || size!=m_nt_bufferptr.size()) {
1612  std::cout << "ERROR in tree buffer definition: expect " << treename <<
1613  " size " << size << " but buffer has " << m_nt_treename << " size "
1614  << m_nt_bufferptr.size() << std::endl;
1615  return 123;
1616  }
1617  }
1618 
1619  int nobj=0;
1620  int nex=0;
1621  cool::IObjectIteratorPtr sourceitr;
1622  try {
1623  if (vermode==cool::FolderVersioning::SINGLE_VERSION) {
1624  sourceitr=sourcefl->browseObjects(since,until,m_chansel);
1625  } else {
1626  sourceitr=sourcefl->browseObjects(since,until,m_chansel,sourcetag);
1627  }
1628  }
1629  catch (cool::Exception& e) {
1630  std::cout << "Exception thrown from ROOT copy iterator setup: " <<
1631  e.what() << std::endl;
1632  return 125;
1633  }
1634  // now loop over all IOVs to copy them
1635  try {
1636  while (sourceitr->goToNext()) {
1637  const cool::IObject& sobj=sourceitr->currentRef();
1638  if (timestamp2) {
1639  m_nt_since=sobj.since();
1640  m_nt_until=sobj.until();
1641  } else {
1642  m_nt_runsince=(sobj.since() >> 32);
1643  m_nt_rununtil=(sobj.until() >> 32);
1644  m_nt_lbsince=(sobj.since() & 0xFFFFFFFF);
1645  m_nt_lbuntil=(sobj.until() & 0xFFFFFFFF);
1646  }
1647  m_nt_channel=sobj.channelId();
1648  if (vermode==cool::FolderVersioning::MULTI_VERSION) {
1649  // truncate the string first to avoid coverity complaining about
1650  // potential buffer overruns
1651  std::string sourcetag2=sourcetag.substr(0,255);
1652  strncpy(m_nt_tagid,sourcetag2.c_str(),sizeof(m_nt_tagid)-1);
1653  }
1654  // loop over the payload elements and fill the ones for which buffers
1655  // are defined
1656  try {
1657  const cool::IRecord& record=sobj.payload();
1658  for (unsigned int icol=0;icol<record.size();++icol) {
1659  if (m_nt_bufferptr[icol]!=nullptr) rootWrite(m_nt_bufferptr[icol],record[icol]);
1660  }
1661  tree->Fill();
1662  ++nobj;
1663  }
1664  catch (cool::Exception& e) {
1665  // can get exceptions due to NULL values
1666  // catch them and continue...
1667  ++nex;
1668  }
1669  }
1670  sourceitr->close();
1671  std::cout << "Written " << nobj << " objects to ROOT TTree with " << nex
1672  << " nulls/exceptions" << std::endl;
1673  }
1674  catch (cool::Exception& e) {
1675  std::cout << "Exception thrown from ROOT file writing loop: " <<
1676  e.what() << std::endl;
1677  return 124;
1678  }
1679  return 0;
1680 }
1681 
1682 std::string AtlCoolCopy::rootDirs(const std::string& folder,
1683  const std::string& toproot) {
1684  // create a ROOT directory structure start with toproot (=COOL or COOLANA)
1685  // and cd to the directory where a tree should be created
1686  // return the tree name (=leaf of the COOL foldername)
1687  p_rootfile->cd();
1688  if (p_rootfile->FindObject(toproot.c_str())==nullptr) {
1689  p_rootfile->mkdir(toproot.c_str());
1690  std::cout << "Made top directory " << toproot << std::endl;
1691  }
1692  gDirectory->cd(toproot.c_str());
1693  // now parse the COOL folder name to create intermediate directories
1694  // assume folder names begin with '/', to be skipped
1695  std::string::size_type iofs1=1;
1696  std::string::size_type iofs2=1;
1697  std::string treename;
1698  while (iofs2!=std::string::npos) {
1699  iofs2=folder.find('/',iofs1);
1700  if (iofs2==std::string::npos) {
1701  // no more /, so current part of string is leaf tree name
1702  treename=folder.substr(iofs1);
1703  } else {
1704  std::string dirname=folder.substr(iofs1,iofs2-iofs1);
1705  iofs1=iofs2+1;
1706  if (gDirectory->FindObject(dirname.c_str())==nullptr) {
1707  std::cout << "Make directory " << dirname << std::endl;
1708  gDirectory->mkdir(dirname.c_str());
1709  }
1710  gDirectory->cd(dirname.c_str());
1711  }
1712  }
1713  return treename;
1714 }
1715 
1716 bool AtlCoolCopy::rootAllocate(const cool::IFieldSpecification& spec,
1717  void*& sptr,char& rootID) const {
1718  const cool::StorageType& stype=spec.storageType();
1719  rootID=' ';
1720  sptr=nullptr;
1721  if (stype==cool::StorageType::Bool) {
1722  // map bool to uint32 for now
1723  sptr=static_cast<void*>(new unsigned int(0));
1724  rootID='i';
1725  } else if (stype==cool::StorageType::UChar) {
1726  sptr=static_cast<void*>(new unsigned char(' '));
1727  rootID='C';
1728  } else if (stype==cool::StorageType::Int16) {
1729  sptr=static_cast<void*>(new short(0));
1730  rootID='S';
1731  } else if (stype==cool::StorageType::UInt16) {
1732  sptr=static_cast<void*>(new unsigned short(0));
1733  rootID='s';
1734  } else if (stype==cool::StorageType::Int32) {
1735  sptr=static_cast<void*>(new int(0));
1736  rootID='I';
1737  } else if (stype==cool::StorageType::UInt32) {
1738  sptr=static_cast<void*>(new unsigned int(0));
1739  rootID='i';
1740  } else if (stype==cool::StorageType::Int64) {
1741  sptr=static_cast<void*>(new long long int(0));
1742  rootID='L';
1743  } else if (stype==cool::StorageType::UInt63) {
1744  sptr=static_cast<void*>(new unsigned long long int(0));
1745  rootID='l';
1746  } else if (stype==cool::StorageType::Float) {
1747  sptr=static_cast<void*>(new float(0.));
1748  rootID='F';
1749  } else if (stype==cool::StorageType::Double) {
1750  sptr=static_cast<void*>(new double(0.));
1751  rootID='D';
1752  } else if (stype==cool::StorageType::String4k ||
1753  stype==cool::StorageType::String255) {
1754  sptr=static_cast<void*>(new char[4100]);
1755  rootID='C';
1756  } else if (stype==cool::StorageType::String64k && !m_noclobroot) {
1757  sptr=static_cast<void*>(new char[65536]);
1758  rootID='C';
1759  } else if (stype==cool::StorageType::String16M && !m_noclobroot) {
1760  sptr=static_cast<void*>(new char[67108864]);
1761  rootID='C';
1762  } else if (stype==cool::StorageType::Blob64k && !m_noclobroot) {
1763  sptr=static_cast<void*>(new char[65536]);
1764  rootID='C';
1765  } else {
1766  std::cout << "rootAllocate: Unsupported storage type for attribute: " <<
1767  spec.name() << std::endl;
1768  }
1769  return (sptr!=nullptr);
1770 }
1771 
1772 void AtlCoolCopy::rootWrite(void* sptr,const cool::IField& field) const {
1773  // check for NULL value
1774  bool recnull=(field.isNull() && m_zeronull);
1775  const cool::StorageType& stype=field.storageType();
1776  if (stype==cool::StorageType::Bool) {
1777  if (recnull) {
1778  *(static_cast<int*>(sptr))=0;
1779  } else {
1780  *(static_cast<int*>(sptr))=(field.data<bool>() ? 1 : 0);
1781  }
1782  } else if (stype==cool::StorageType::UChar) {
1783  if (recnull) {
1784  *(static_cast<unsigned char*>(sptr))=0;
1785  } else {
1786  *(static_cast<unsigned char*>(sptr))=field.data<unsigned char>();
1787  }
1788  } else if (stype==cool::StorageType::Int16) {
1789  if (recnull) {
1790  *(static_cast<short*>(sptr))=0;
1791  } else {
1792  *(static_cast<short*>(sptr))=field.data<short>();
1793  }
1794  } else if (stype==cool::StorageType::UInt16) {
1795  if (recnull) {
1796  *(static_cast<unsigned short*>(sptr))=0;
1797  } else {
1798  *(static_cast<unsigned short*>(sptr))=field.data<unsigned short>();
1799  }
1800  } else if (stype==cool::StorageType::Int32) {
1801  if (recnull) {
1802  *(static_cast<int*>(sptr))=0;
1803  } else {
1804  *(static_cast<int*>(sptr))=field.data<int>();
1805  }
1806  } else if (stype==cool::StorageType::UInt32) {
1807  if (recnull) {
1808  *(static_cast<unsigned int*>(sptr))=0;
1809  } else {
1810  *(static_cast<unsigned int*>(sptr))=field.data<unsigned int>();
1811  }
1812  } else if (stype==cool::StorageType::Int64) {
1813  if (recnull) {
1814  *(static_cast<long long*>(sptr))=0;
1815  } else {
1816  *(static_cast<long long*>(sptr))=field.data<long long>();
1817  }
1818  } else if (stype==cool::StorageType::UInt63) {
1819  if (recnull) {
1820  *(static_cast<unsigned long long*>(sptr))=0;
1821  } else {
1822  *(static_cast<unsigned long long*>(sptr))=field.data<unsigned long long>();
1823  }
1824  } else if (stype==cool::StorageType::Float) {
1825  if (recnull) {
1826  *(static_cast<float*>(sptr))=0.;
1827  } else {
1828  *(static_cast<float*>(sptr))=field.data<float>();
1829  }
1830  } else if (stype==cool::StorageType::Double) {
1831  if (recnull) {
1832  *(static_cast<double*>(sptr))=0.;
1833  } else {
1834  *(static_cast<double*>(sptr))=field.data<double>();
1835  }
1836  } else if (stype==cool::StorageType::String255 ||
1837  stype==cool::StorageType::String4k ||
1838  stype==cool::StorageType::String64k ||
1839  stype==cool::StorageType::String16M) {
1840  if (recnull) {
1841  strcpy(static_cast<char*>(sptr),"NULL");
1842  } else {
1843  strcpy(static_cast<char*>(sptr),field.data<std::string>().c_str());
1844  }
1845  } else if (stype==cool::StorageType::Blob64k && !m_noclobroot) {
1846  if (recnull) {
1847  strcpy(static_cast<char*>(sptr),"NULL");
1848  } else {
1849  auto blob = field.data<coral::Blob>();
1850  std::string blobStr((char*)blob.startingAddress(), blob.size());
1851  strcpy(static_cast<char*>(sptr), blobStr.c_str());
1852  }
1853  } else {
1854  std::cout << "ERROR: Unknown storage type in rootWrite!" << std::endl;
1855  }
1856 }
1857 
1858 int AtlCoolCopy::analyseIOVs(const std::string& folder,
1859  const cool::IFolderPtr& sourcefl,const std::string& sourcetag,
1860  const cool::ValidityKey since,const cool::ValidityKey until,
1861  const bool timestamp) {
1862  // analyse the IOV and channel structure of this folder/tag, make ROOT histos
1863  std::cout << "Analyse tag " << sourcetag << " of folder " << folder <<
1864  std::endl;
1865  bool anatime=(m_anadelt>=0);
1866  if (anatime) {
1867  std::cout << "Analyse time structures with tolerance of " <<
1868  m_anadelt/1.E9 << " seconds " << std::endl;
1869  }
1870  // create COOLANA/folder structure and create leaf directory for histograms
1871  std::string dirname=rootDirs(folder,"COOLANA");
1872  if (gDirectory->FindObject(dirname.c_str())==nullptr) {
1873  std::cout << "Make directory " << dirname << std::endl;
1874  gDirectory->mkdir(dirname.c_str());
1875  }
1876  gDirectory->cd(dirname.c_str());
1877  // get channels
1878  std::vector<cool::ChannelId> channels=sourcefl->listChannels();
1879  unsigned int nchan=channels.size();
1880  // end of last IOV seen on this channel
1881  long long* lastiov=new long long[nchan];
1882  long long* iovtotlen=new long long[nchan];
1883  long long* iovtotgap=new long long[nchan];
1884  int* iovn=new int[nchan];
1885  for (unsigned int i=0;i<nchan;++i) {
1886  lastiov[i]=-1; // no IOV seen on this channel yet
1887  iovtotlen[i]=0;
1888  iovtotgap[i]=0;
1889  iovn[i]=0;
1890  }
1891  cool::ValidityKey globsince=cool::ValidityKeyMax;
1892  cool::ValidityKey globuntil=cool::ValidityKeyMin;
1893 
1894  // book histograms - only if the objects do not already exist (previous tag)
1895  TH1F* h_iovchan=bookOrFindTH1F("IOVSperChannel","IOVs per channel",
1896  nchan,-0.5,nchan-0.5);
1897  TH1F* h_iovname=bookOrFindTH1F("IOVSperChannelName",
1898  "IOVs per channel-name (copy of IOVSperChannel)",
1899  nchan,-0.5,nchan-0.5);
1900  TH1F* h_iovlength=bookOrFindTH1F("IOVLogLength","IOV log10 length",
1901  100,0.,20.);
1902  TH1F* h_iovgap=bookOrFindTH1F("IOVLogGapLength","IOV log10 gap length",
1903  100,0.,20.);
1904  // histograms for time analysis if needed
1905  TH1F* h_anadelt=nullptr;
1906  TH1F* h_chandelt=nullptr;
1907  if (anatime) {
1908  h_anadelt=bookOrFindTH1F("IOVAlignLogDelT","IOV alignment log deltaT",
1909  100,0.,20.);
1910  // add factor 2 in number of channels, to catch those where a channel
1911  // changes many times within the m_anadelt window (i.e. noise/jitter)
1912  h_chandelt=bookOrFindTH1F("AlignedChanPerIOV","Aligned channels per IOV",
1913  nchan*2,0.5,nchan*2-0.5);
1914  }
1915  std::cout << "Booked histograms for folder with " << nchan << " channels"
1916  << std::endl;
1917  // setup storage for IOV time analysis
1918  using IOVTimeMap = std::map<cool::ValidityKey, int>;
1919  IOVTimeMap iov_time_map;
1920 
1921  // setup iterator to loop over objects
1922  int nobj=0;
1923  cool::FolderVersioning::Mode vermode=sourcefl->versioningMode();
1924  cool::IObjectIteratorPtr sourceitr;
1925  try {
1926  if (vermode==cool::FolderVersioning::SINGLE_VERSION) {
1927  sourceitr=sourcefl->browseObjects(since,until,m_chansel);
1928  } else {
1929  sourceitr=sourcefl->browseObjects(since,until,m_chansel,sourcetag);
1930  }
1931  }
1932  catch (cool::Exception& e) {
1933  std::cout << "Exception thrown from analysis copy iterator setup: " <<
1934  e.what() << std::endl;
1935  return 135;
1936  }
1937  // look up names of all the channels in one go
1938  std::map<cool::ChannelId,std::string>
1939  chanmap=sourcefl->listChannelsWithNames();
1940  // now loop over all IOVs and write them
1941  try {
1942  while (sourceitr->goToNext()) {
1943  const cool::IObject& sobj=sourceitr->currentRef();
1944  // get channel and find its index
1945  cool::ChannelId ichanid=sobj.channelId();
1946  const std::string& cname=chanmap[ichanid];
1949  std::equal_range(channels.begin(),channels.end(),ichanid);
1950  if (chanitr.first!=chanitr.second) {
1951  cool::ChannelId ichan=std::distance(channels.begin(),chanitr.first);
1952  Int_t bin=h_iovchan->Fill(ichan);
1953  if (ichan && !h_iovname->GetBinContent(bin)) {
1954  h_iovname->GetXaxis()->SetBinLabel(bin,cname.c_str());
1955  }
1956  h_iovname->Fill(ichan);
1957  // analyse IOV start/stop
1958  cool::ValidityKey since2=sobj.since();
1959  cool::ValidityKey until2=sobj.until();
1960  if (since2<globsince) globsince=since2;
1961  // dont count IOV is open-ended, so length statistics will make sense
1962  if (until2!=cool::ValidityKeyMax) {
1963  if (until2>globuntil) globuntil=until2;
1964  long long len=until2-since2;
1965  h_iovlength->Fill(log10(len));
1966  iovn[ichan]+=1;
1967  iovtotlen[ichan]+=len;
1968  }
1969  if (lastiov[ichan]<static_cast<long long>(since2) &&
1970  lastiov[ichan]>=0) {
1971  // have a gap in the IOV structure for this channel
1972  long long gap=since2-lastiov[ichan];
1973  iovtotgap[ichan]+=gap;
1974  h_iovgap->Fill(log10(gap));
1975  std::cout << "Gap of " << gap << std::endl;
1976  }
1977  if (until2!=cool::ValidityKeyMax) {
1978  lastiov[ichan]=until2;
1979  } else {
1980  lastiov[ichan]=since2;
1981  }
1982  // analyse IOV alignment
1983  if (anatime) {
1984  long long del1=-1;
1985  long long del2=-1;
1986  // find the nearest time to this one
1987  // this gives the first value exceeding since2
1988  IOVTimeMap::iterator hiitr=iov_time_map.lower_bound(since2);
1989  IOVTimeMap::iterator lowitr=hiitr;
1990  if (hiitr!=iov_time_map.end()) {
1991  // del1 is +ve time interval to next one
1992  del1=hiitr->first-since2;
1993  }
1994  if (lowitr!=iov_time_map.begin()) {
1995  // del2 is +ve time interval to previous one
1996  --lowitr;
1997  del2=since2-lowitr->first;
1998  }
1999  long long del=-1;
2000  IOVTimeMap::iterator moditr;
2001  bool domod=false;
2002  if (del1<=m_anadelt && del1>-1) {
2003  moditr=hiitr;
2004  del=del1;
2005  domod=true;
2006  }
2007  if (del2<=m_anadelt && del2>-1 && (del2<del || del==-1)) {
2008  moditr=lowitr;
2009  del=del2;
2010  domod=true;
2011  }
2012  if (domod) {
2013  ++(moditr->second);
2014  if (del>0) {
2015  h_anadelt->Fill(log10(del));
2016  } else {
2017  h_anadelt->Fill(0.);
2018  }
2019  } else {
2020  iov_time_map[since2]=0;
2021  }
2022  }
2023  } else {
2024  // channel ID not found
2025  std::cout << "ERROR :Channel " << ichanid <<
2026  " not found in channel list - ignored" << std::endl;
2027  }
2028  ++nobj;
2029  }
2030  std::cout << "Finished analysis with " << nobj << " objects" << std::endl;
2031  if (timestamp) {
2032  std::cout << "IOV timestamp range: " << globsince << " " <<
2033  timeString(globsince) << "to " << globuntil << " " <<
2034  timeString(globuntil) << std::endl;
2035  } else {
2036  std::cout << "IOV run/LB range [" << (globsince >> 32) << "," <<
2037  (globsince & 0xFFFFFFFF) << "] to [" << (globuntil >> 32) << "," <<
2038  (globuntil & 0xFFFFFFFF) << "]" << std::endl;
2039  }
2040  // calculate statistics for each channel
2041  TH1F* h_iovoccchan=bookOrFindTH1F("ChannelOcc","Channel Occupancy",
2042  nchan,-0.5,nchan-0.5);
2043  TH1F* h_iovlenchan=bookOrFindTH1F("IOVLenChan",
2044  "Mean IOV length per channel",nchan,-0.5,nchan-0.5);
2045  for (unsigned int i=0;i<nchan;++i) {
2046  float occ=0.;
2047  float avlen=0.;
2048  if (iovn[i]>0) {
2049  occ=1.-float(iovtotgap[i])/float(iovtotlen[i]+iovtotgap[i]);
2050  avlen=float(iovtotlen[i])/iovn[i];
2051  }
2052  h_iovoccchan->Fill(i,occ);
2053  h_iovlenchan->Fill(i,avlen);
2054  }
2055  if (anatime) {
2056  std::cout << "Alignment analysis: " << iov_time_map.size()
2057  << " seperate IOV starts (tolerance " << m_anadelt/1.E9 <<
2058  " seconds)" << std::endl;
2059  // fill histogram of number of channels incremented per IOV
2060  for (IOVTimeMap::const_iterator itr=iov_time_map.begin();
2061  itr!=iov_time_map.end();++itr) {
2062  h_chandelt->Fill(itr->second);
2063  }
2064  }
2065  }
2066  catch (cool::Exception& e) {
2067  std::cout << "Exception thrown from folder analysis reading loop: " <<
2068  e.what() << std::endl;
2069  return 134;
2070  }
2071  sourceitr->close();
2072  delete [] lastiov;
2073  delete [] iovtotlen;
2074  delete [] iovtotgap;
2075  delete[] iovn; iovn=nullptr;
2076  return 0;
2077 }
2078 
2079 TH1F* AtlCoolCopy::bookOrFindTH1F(const std::string& hID,
2080  const std::string& htitle,
2081  const int nchan, const float xlow, const float xhigh) {
2082  // check histogram does not exist in current directory
2083  // if yes, return pointer to it, else book and return pointer
2084  TObject* obj=gDirectory->FindObject(hID.c_str());
2085  if (obj==nullptr) {
2086  return new TH1F(hID.c_str(),htitle.c_str(),nchan,xlow,xhigh);
2087  } else {
2088  return static_cast<TH1F*>(obj);
2089  }
2090 }
2091 
2092 
2093 int AtlCoolCopy::doCopy ATLAS_NOT_THREAD_SAFE () {
2094  if (isOpen()) {
2095  int retcode=0;
2096  // execute copy for all defined folders
2097  for (std::vector<std::string>::const_iterator ifolder=
2098  m_folderlist.begin();ifolder!=m_folderlist.end();++ifolder) {
2099  int code=copyFolder(*ifolder,m_tags);
2100  if (code>retcode) retcode=code;
2101  }
2102  if (!m_hiparent.empty()) {
2103  // fill in any hierarchical tags for parent folders
2104  int code=tagParents();
2105  if (code>retcode) retcode=code;
2106  }
2107  if (m_copytaginfo) {
2108  // write information (tag description, lock status) to dest tags
2109  int code=writeTagInfo();
2110  if (code>retcode) retcode=code;
2111  }
2112  if (m_checkrefs) {
2113  int code=0;
2114  if (m_poolcat.empty()) {
2115  code=listPoolRefs();
2116  if (!m_checkoutputfile.empty()) filePoolRefs();
2117  } else {
2118  code=resolvePoolRefs();
2119  }
2120  if (code>retcode) retcode=code;
2121  }
2122  if (p_rootfile) {
2123  p_rootfile->Write();
2124  delete p_rootfile;
2125  }
2126  return retcode;
2127  } else {
2128  return 10;
2129  }
2130 }
2131 
2132 bool AtlCoolCopy::procOptVector(const int argc, const char* argv[],
2133  std::vector<std::string>& folders) {
2134  // process an array of options, return True if OK, False if not
2135  int ic=0;
2136  bool error=false;
2137  while (ic<argc) {
2138  int ir=argc-ic;
2139  std::string_view par0=argv[ic];
2140  // strip double "--" to achieve compatability with python-style options
2141  if (par0.compare(0,2,"--")==0) par0=par0.substr(1);
2142  if ((par0=="-f" || par0=="-folder") && ir>1) {
2143  folders.emplace_back(argv[ic+1]);
2144  ++ic;
2145  } else if ((par0=="-e" || par0=="-exclude") && ir>1) {
2146  addExclude(argv[ic+1]);
2147  ++ic;
2148  } else if ((par0=="-t" || par0=="-tag") && ir>1) {
2149  m_tags.emplace_back(argv[ic+1]);
2150  ++ic;
2151  } else if ((par0=="-mt" || par0=="-magic") && ir>1) {
2152  m_magic.push_back("_"+std::string(argv[ic+1]));
2153  ++ic;
2154  } else if ((par0=="-of" || par0=="-outfolder") && ir>1) {
2155  m_outfolder=argv[ic+1];
2156  ++ic;
2157  } else if ((par0=="-ot" || par0=="-outtag") && ir>1) {
2158  m_outtag=argv[ic+1];
2159  ++ic;
2160  } else if ((par0=="-bs" || par0=="-buffersize") && ir>1) {
2161  m_bufsize=atoi(argv[ic+1]);
2162  ++ic;
2163  } else if ((par0=="-sl" || par0=="-seal") && ir>1) {
2164  m_sealmsg=atoi(argv[ic+1]);
2165  ++ic;
2166  } else if ((par0=="-rls" || par0=="-runlumisince") && ir>2) {
2167  m_runemin=runLBVal(argv[ic+1],argv[ic+2]);
2168  ic+=2;
2169  } else if ((par0=="-rlu" || par0=="-runlumiuntil") && ir>2) {
2170  m_runemax=runLBVal(argv[ic+1],argv[ic+2]);
2171  ic+=2;
2172  } else if ((par0=="-nrls" || par0=="-newrunlumisince") && ir>2) {
2174  ic+=2;
2175  } else if ((par0=="-nrlu" || par0=="-newrunlumiuntil") && ir>2) {
2177  ic+=2;
2178  } else if ((par0=="-srls" || par0=="-skiprunlumisince") && ir>2) {
2179  m_srunemin=runLBVal(argv[ic+1],argv[ic+2]);
2180  m_skipout=true;
2181  ic+=2;
2182  } else if ((par0=="-srlu" || par0=="-skiprunlumiuntil") && ir>2) {
2183  m_srunemax=runLBVal(argv[ic+1],argv[ic+2]);
2184  m_skipout=true;
2185  ic+=2;
2186  } else if (par0=="-ro" || par0=="-root") {
2187  m_root=true;
2188  } else if (par0=="-zn" || par0=="-zeronull") {
2189  m_zeronull=true;
2190  } else if (par0=="-ana" || par0=="-analyse") {
2191  m_analyse=true;
2192  float ttime=atof(argv[ic+1])*1.E9;
2193  m_anadelt=static_cast<long long>(ttime);
2194  ++ic;
2195  } else if ((par0=="-rs" || par0=="-runsince") && ir>1) {
2196  m_runemin=(static_cast<long long>(atol(argv[ic+1])) << 32);
2197  ++ic;
2198  } else if ((par0=="-ru" || par0=="-rununtil") && ir>1) {
2199  m_runemax=(static_cast<long long>(1+atol(argv[ic+1])) << 32)-1;
2200  ++ic;
2201  } else if ((par0=="-r" || par0=="-run") && ir>1) {
2202  m_runemin=(static_cast<long long>(atol(argv[ic+1])) << 32);
2203  m_runemax=(static_cast<long long>(1+atol(argv[ic+1])) << 32)-1;
2204  ++ic;
2205  } else if ((par0=="-ts" || par0=="-timesince") && ir>1) {
2206  m_timemin=timeVal(argv[ic+1]);
2207  ++ic;
2208  } else if ((par0=="-tu" || par0=="-timeuntil") && ir>1) {
2209  m_timemax=timeVal(argv[ic+1]);
2210  ++ic;
2211  } else if ((par0=="-nts" || par0=="-newtimesince") && ir>1) {
2213  ++ic;
2214  } else if ((par0=="-ntu" || par0=="-newtimeuntil") && ir>1) {
2216  ++ic;
2217  } else if (par0=="-c" || par0=="-create") {
2218  m_allowcreate=true;
2219  } else if ((par0=="-ch" || par0=="-channel") && ir>1) {
2220  m_channelRange.emplace_back(argv[ic+1]);
2221  ++ic;
2222  } else if ((par0=="-ch1" || par0=="-channel1") && ir>1) {
2223  m_channel1=argv[ic+1];
2224  ++ic;
2225  } else if ((par0=="-ch2" || par0=="-channel2") && ir>1) {
2226  m_channel2=argv[ic+1];
2227  ++ic;
2228  } else if (par0=="-chd" || par0=="-channeldesc") {
2229  m_chdesc=true;
2230  // no abbreviaton for this one - dangerous option
2231  } else if (par0=="-forcerecreate") {
2232  m_recreate=true;
2233  } else if (par0=="-d" || par0=="-debug") {
2234  m_debug=true;
2235  } else if (par0=="-a" || par0=="-alliov") {
2236  m_alliov=true;
2237  } else if (par0=="-ih" || par0=="-includehead") {
2238  m_includehead=true;
2239  } else if (par0=="-eh" || par0=="-excludehead") {
2240  m_excludehead=true;
2241  } else if (par0=="-ht" || par0=="-headtag") {
2242  m_usertags=false;
2243  } else if (par0=="-uht" || par0=="-userheadtag") {
2244  m_userupdatehead=true;
2245  } else if (par0=="-v" || par0=="-verify") {
2246  m_verify=true;
2247  } else if (par0=="-nc" || par0=="-nocopy") {
2248  m_nocopy=true;
2249  } else if (par0=="-noc" || par0=="-nocoracool") {
2250  m_coracool=false;
2251  } else if (par0=="-nch" || par0=="-nochannel") {
2252  m_nochannel=true;
2253  } else if (par0=="-ncr" || par0=="-noclobroot") {
2254  m_noclobroot=true;
2255  } else if (par0=="-nd" || par0=="-nodata") {
2256  m_nodata=true;
2257  } else if (par0=="-nh" || par0=="-nohitag") {
2258  m_nohitag=true;
2259  } else if (par0=="-hi" || par0=="-hitag") {
2260  m_hitag=true;
2261  } else if ((par0=="-ec" || par0=="-excludechannel") && ir>1) {
2262  m_excludechans.push_back(strtoul(argv[ic+1],nullptr,10));
2263  ++ic;
2264  } else if (par0=="-fs" || par0=="-forcesingle") {
2265  m_forcesingle=true;
2266  } else if (par0=="-fm" || par0=="-forcemulti") {
2267  m_forcemulti=true;
2268  } else if (par0=="-frl" || par0=="-forcerunlumi") {
2269  m_forcerune=true;
2270  } else if (par0=="-ftm" || par0=="-forcetime") {
2271  m_forcetime=true;
2272  } else if (par0=="-fp" || par0=="-forcepayload") {
2273  m_forcepay=true;
2274  } else if (par0=="-fnp" || par0=="-forcenopayload") {
2275  m_forcenopay=true;
2276  } else if (par0=="-cr" || par0=="-checkrefs") {
2277  m_checkrefs=true;
2278  } else if (par0=="-lp" || par0=="-listpfn") {
2279  m_listpfn=true;
2280  m_checkrefs=true;
2281  } else if (par0=="-cf" || par0=="-checkfiles") {
2282  m_poolopen=true;
2283  m_checkrefs=true;
2284  } else if (par0=="-pa" || par0=="-poolall") {
2285  m_poolall=true;
2286  } else if ((par0=="-co" || par0=="-checkoutput") && ir>1) {
2288  ++ic;
2289  } else if ((par0=="-pc" || par0=="-poolcat") && ir>1) {
2290  m_poolcat.emplace_back(argv[ic+1]);
2291  ++ic;
2292  } else if ((par0=="-mc" || par0=="-mergecat") && ir>1) {
2293  m_mergecat.emplace_back(argv[ic+1]);
2294  ++ic;
2295  } else if ((par0=="-ds" || par0=="-dataset") && ir>1) {
2296  m_newdataset=argv[ic+1];
2297  ++ic;
2298  } else if (par0=="-us" || par0=="-updatesource") {
2299  m_sourceread=false;
2300  } else if (par0=="-cd" || par0=="-checkdest") {
2301  m_checkdesttag=true;
2302  } else if (par0=="-tr" || par0=="-truncate") {
2303  m_truncate=true;
2304  } else if (par0=="-al" || par0=="-appendlocked") {
2305  m_applock=true;
2306  } else if (par0=="-alsv" || par0=="-appendlockedsv") {
2307  m_applock=true;
2308  m_applocksv=true;
2309  } else if (par0=="-rdo" || par0=="-readoracle") {
2310  m_readoracle=true;
2311  } else if (par0=="-skiprep" || par0=="-sr") {
2312  m_skiprep=true;
2313  } else if (par0=="-go" || par0=="-getonline") {
2314  m_getonline=true;
2315  } else if (par0=="-onr" || par0=="-onlinerun") {
2316  m_onlinerun=true;
2317  } else if (par0=="-gb" || par0=="-getbulk") {
2318  m_getbulk=true;
2319  } else if (par0=="-gt" || par0=="-gettime") {
2320  m_gettime=true;
2321  } else if ((par0=="-tdb" || par0=="-timedb") && ir>1) {
2322  m_timedb=argv[ic+1];
2323  ++ic;
2324  } else if (par0=="-ignoremode" && ir>1) {
2325  std::cout << "Ignoremode password is " << argv[ic+1] << ":end" << std::endl;
2326  if (strcmp(argv[ic+1],"BackDoor")==0) {
2327  m_ignoremode=true;
2328  } else {
2329  std::cout << "ERROR: Incorrect password for -ignoremode" << std::endl;
2330  error=true;
2331  }
2332  ++ic;
2333  } else if (par0=="-is" || par0=="-ignorespec") {
2334  m_ignorespec=true;
2335  } else if (par0=="-pt" || par0=="-prunetags") {
2336  m_prunetags=true;
2337  m_excludehead=true;
2338  } else if (par0=="-lo" || par0=="-lockedonly") {
2339  m_lockedonly=true;
2340  m_prunetags=true;
2341  m_excludehead=true;
2342  } else if (par0=="-cti" || par0=="-copytaginfo") {
2343  m_copytaginfo=true;
2344  } else if (par0=="-ctl" || par0=="-copytaglock") {
2345  m_copytaginfo=true;
2346  m_copytaglock=true;
2347  } else if ((par0=="-tl" || par0=="-taglabel") && ir>1) {
2348  m_taglabel=argv[ic+1];
2349  ++ic;
2350  m_copytaginfo=true;
2351  } else if ((par0=="-ag" || par0=="-addguid") && ir>1) {
2352  m_addguid.emplace_back(argv[ic+1]);
2353  ++ic;
2354  } else if ((par0=="-alf" || par0=="-addlfn") && ir>1) {
2355  m_addlfn.emplace_back(argv[ic+1]);
2356  ++ic;
2357  } else if ((par0=="-pf" || par0=="-parfile") && ir>1) {
2358  m_parfile.emplace_back(argv[ic+1]);
2359  ++ic;
2360  } else if ((par0=="-rf" || par0=="-runfile") && ir>1) {
2361  m_runfile.emplace_back(argv[ic+1]);
2362  ++ic;
2363  } else if ((par0=="-ws" || par0=="-runinfohost") && ir>1) {
2364  m_runinfohost=argv[ic+1];
2365  ++ic;
2366  } else if (par0=="-h" || par0=="-help") {
2367  // help printout triggered by -999 return code
2368  return 999;
2369  } else {
2370  std::cout << "Parameter error for argument: " << par0 << std::endl;
2371  error=true;
2372  }
2373  ++ic;
2374  }
2375  return !error;
2376 }
2377 
2378 
2379 int AtlCoolCopy::setOpts(int argc, const char* argv[]) {
2380  // accumulate raw folder list
2381  std::vector<std::string> folders;
2382  // process options given on command-line
2383  if (!procOptVector(argc,argv,folders)) return 2;
2384 
2385  // parse any parameters in files via parfile option
2386  for (std::vector<std::string>::const_iterator ifile=m_parfile.begin();
2387  ifile!=m_parfile.end();++ifile) {
2388  std::cout << "Reading parameters from file " << *ifile << std::endl;
2389  FILE* p_inp=fopen(ifile->c_str(),"r");
2390  if (p_inp==nullptr) {
2391  std::cout << "File not found" << std::endl;
2392  return 3;
2393  }
2394  char* p_buf=new char[999];
2395  while (!feof(p_inp)) {
2396  char* p_line=fgets(p_buf,999,p_inp);
2397  if (p_line!=nullptr) {
2398  int fargc=0;
2399  const char* fargv[99];
2400  // split this line into tokens
2401  char* p_start=nullptr;
2402  while (*p_line!='\0') {
2403  if (*p_line==' ' || *p_line=='\n') {
2404  // pointing at a space/newline, marking the end of a parameter
2405  if (p_start!=nullptr) {
2406  // if we have a parameter, mark the end and store it
2407  *p_line='\0';
2408  fargv[fargc]=p_start;
2409  fargc++;
2410  p_start=nullptr;
2411  }
2412  } else {
2413  // mark the start of a parameter
2414  if (p_start==nullptr) p_start=p_line;
2415  }
2416  ++p_line;
2417  }
2418  if (fargc>0) {
2419  if (!procOptVector(fargc,&fargv[0],folders)) {
2420  fclose(p_inp);
2421  return 3;
2422  }
2423  }
2424  }
2425  }
2426  std::cout << "Close file" << std::endl;
2427  fclose(p_inp);
2428  delete[] p_buf;
2429  }
2430 
2431  // now open the database so folder lookup will work
2433  std::cout << "Problem opening connections" << std::endl;
2434  return 10;
2435  } else {
2436  // having assembled the raw list of folders and exclude list, construct
2437  // real list of folders (allows exclude to be specified after folders on
2438  // command line), if none given, add '/'
2439  if (m_lockedonly) {
2440  if (getLockedTags()==0) return 11;
2441  }
2442  if (folders.empty()) {
2443  // no folders specified, take all with tags
2444  addFolder("/",false);
2445  } else {
2446  // explicit list of folders
2447  for (std::vector<std::string>::const_iterator ifold=folders.begin();
2448  ifold!=folders.end();++ifold) addFolder(*ifold,false);
2449  // need to process only tags in root folder, if inclusive hiearchicals
2450  if (m_hitag) addFolder("/",true);
2451  }
2452  }
2453  if (m_getonline) {
2454  if (!getOnlineRun()) return 6;
2455  }
2456  if (m_getbulk) {
2457  if (!getBulkRun()) return 6;
2458  }
2459  if (m_gettime) {
2460  if (!getTimeFromRun()) return 5;
2461  }
2462  if (!m_runfile.empty()) {
2463  if (!getRunList()) return 7;
2464  }
2465  // list out parameter changes
2466  if (m_runemin!=cool::ValidityKeyMin || m_runemax!=cool::ValidityKeyMax)
2467  std::cout << "Source run/LB range [" << (m_runemin >> 32) << "," <<
2468  (m_runemin & 0xFFFFFFFF) << "] to [" << (m_runemax >> 32) << "," <<
2469  (m_runemax & 0xFFFFFFFF) << "]" << std::endl;
2470  if (m_timemin!=cool::ValidityKeyMin || m_timemax!=cool::ValidityKeyMax)
2471  std::cout << "Source timestamp range " << m_timemin << " " <<
2472  timeString(m_timemin) << "to " << m_timemax << " " <<
2473  timeString(m_timemax) << std::endl;
2474  if (m_alliov)
2475  std::cout << "Change o/p run/LB range [" << (m_newrunemin >> 32) << "," <<
2476  (m_newrunemin & 0xFFFFFFFF) << "] to [" << (m_newrunemax >> 32) << "," <<
2477  (m_newrunemax & 0xFFFFFFFF) << "]" << std::endl;
2478  if (m_alliov)
2479  std::cout << "Change o/p timestamp range " << m_newtimemin << " " <<
2480  timeString(m_newtimemin) << "to " << m_newtimemax << " " <<
2481  timeString(m_newtimemax) << std::endl;
2482  if (m_skipout) {
2483  std::cout << "Skip IOVs extending outside run/LB range [" <<
2484  (m_srunemin >> 32) << "," << (m_srunemin & 0xFFFFFFFF) << "] to [" <<
2485  (m_srunemax >> 32) << "," << (m_srunemax & 0xFFFFFFFF) << "]" <<
2486  std::endl;
2487  }
2488  if (!m_excludechans.empty()) {
2489  for (std::vector<cool::ChannelId>::const_iterator itr=
2490  m_excludechans.begin();itr!=m_excludechans.end();++itr)
2491  std::cout << "Channel " << *itr << " will be excluded" << std::endl;
2492  }
2493  if (m_hitag) std::cout << "All hierachical tags connecting to referenced tags will be copied" << std::endl;
2494  if (m_nohitag) std::cout << "Hierarchical tag relations will not be copied"
2495  << std::endl;
2496  return 0;
2497 }
2498 
2499 bool AtlCoolCopy::isNumeric(const char* input) {
2500  // determine if input string is numeric or string
2501  bool isnum=true;
2502  const char* cptr=input;
2503  while (*cptr!='\0') {
2504  if (!isdigit(*cptr)) { isnum=false; break;}
2505  ++cptr;
2506  }
2507  return isnum;
2508 }
2509 
2510 bool AtlCoolCopy::equalRecord(const cool::IRecord& lhs,
2511  const cool::IRecord& rhs) {
2512  // equality test for COOL IRecords, handling NULL string attributes correctly
2513  // tests values and types of Attributes, not names
2514  if (lhs.size()!=rhs.size()) return false;
2515  for (size_t i=0;i<lhs.size();++i) {
2516  // types must match - have to test explicitly first
2517  if (lhs[i].specification().storageType()!=
2518  rhs[i].specification().storageType())
2519  return false;
2520  // now use IField equality to for final test (spec again and data)
2521  if (lhs[i]!=rhs[i]) {
2522  // if not equal, check for special case of strings and compare directly
2523  // types are known to be equal so only test LHS
2524  const cool::StorageType& stype=lhs[i].specification().storageType();
2525  if (stype==cool::StorageType::String255 ||
2526  stype==cool::StorageType::String4k ||
2527  stype==cool::StorageType::String64k ||
2528  stype==cool::StorageType::String16M) {
2529  // check if string data payloads are really equal or not
2530  if (lhs[i].data<std::string>()!=rhs[i].data<std::string>())
2531  return false;
2532  } else {
2533  // if not string, trust the result of IField !=operator
2534  return false;
2535  }
2536  }
2537  }
2538  return true;
2539 }
2540 
2541 
2542 cool::ValidityKey AtlCoolCopy::timeVal(const char* input) {
2543  // convert input char* string to 64bit COOL validityKey
2544  // input either represents a string in seconds, or a date in the form
2545  // yyyy/mm/dd:hh:mm:ss
2546  // first determine if input is a number
2547  if (isNumeric(input)) {
2548  return static_cast<long long>(atol(input))*
2549  static_cast<long long>(1.E9);
2550  } else {
2551  struct tm mytm{},mytm2{};
2552  char* result=strptime(input,"%Y-%m-%d:%T",&mytm);
2553  if (result!=nullptr) {
2554  // make the DST field zero, so the time is interpreted without daylight
2555  // savings time
2556  mytm.tm_isdst=0;
2557  // now have to correct for the local time zone - do this by also
2558  // calculating the time since epoch for 2/1/1970 midnight (no DST)
2559  cool::ValidityKey itime=static_cast<cool::ValidityKey>(mktime(&mytm));
2560  strptime("1970-01-02:00:00:00","%Y-%m-%d:%T",&mytm2);
2561  cool::ValidityKey caltime=static_cast<cool::ValidityKey>(mktime(&mytm2));
2562  itime+=24*60*60-caltime;
2563  return itime*static_cast<cool::ValidityKey>(1.E9);
2564  } else {
2565  std::cout <<
2566  "ERROR in format of time value, use e.g. 2007-05-25:14:01:00" <<
2567  std::endl;
2568  return 0;
2569  }
2570  }
2571 }
2572 
2573 std::string AtlCoolCopy::timeString(const cool::ValidityKey iovtime) {
2574  if (iovtime==cool::ValidityKeyMin) {
2575  return "ValidityKeyMin ";
2576  } else if (iovtime==cool::ValidityKeyMax) {
2577  return "ValidityKeyMax ";
2578  } else {
2579  time_t time=static_cast<time_t>(iovtime/1E9);
2580  struct tm result;
2581  char buf[32];
2582  return "UTC "+std::string(asctime_r(gmtime_r(&time, &result), buf));
2583  }
2584 }
2585 
2586 cool::ValidityKey AtlCoolCopy::runLBVal(const char* input1,const char* input2) {
2587  // parse the inputs as run/LB numbers to generate a validitykey
2588  // used in processing -rls-type options
2589  cool::ValidityKey val;
2590  if (input1[0]=='M' || input1[0]=='m') {
2591  val=((1LL << 31)-1) << 32;
2592  } else {
2593  val=static_cast<long long>(atol(input1)) << 32;
2594  }
2595  if (input2[0]=='M' || input2[0]=='m') {
2596  val+=(1LL << 32);
2597  } else {
2598  val+=atoll(input2);
2599  }
2600  if (val>cool::ValidityKeyMax) val=cool::ValidityKeyMax;
2601  return val;
2602 }
2603 
2604 
2606  // extract time limits for a run range using the expected information
2607  // in the /TDAQ/RunCtrl/SOR_Params and EOR_Params on the given DB connection
2608 
2609  // choose database instance based on run number switchover if none is given
2610  if (m_timedb.empty()) {
2611  if ((m_runemin >> 32)>=236107) {
2612  m_timedb="COOLONL_TDAQ/CONDBR2";
2613  } else {
2614  m_timedb="COOLONL_TDAQ/COMP200";
2615  }
2616  }
2617  // select foldername based on database instance
2618  std::string sorfolder="/TDAQ/RunCtrl/SOR_Params";
2619  std::string eorfolder="/TDAQ/RunCtrl/EOR_Params";
2620  if (m_timedb.find ("CONDBR2")!=std::string::npos) {
2621  sorfolder="/TDAQ/RunCtrl/SOR";
2622  eorfolder="/TDAQ/RunCtrl/EOR";
2623  }
2624  std::cout << "Extracting times for run range [" << (m_runemin >> 32) <<
2625  "," << (m_runemax >> 32) << "] from database " << m_timedb <<
2626  " folder " << sorfolder << std::endl;
2627  if (m_runemin==cool::ValidityKeyMin || m_runemax==cool::ValidityKeyMax) {
2628  std::cout << "ERROR: Run range not correctly specified" << std::endl;
2629  return false;
2630  }
2631  // open database connection
2632  cool::IDatabasePtr tdaqdb;
2633  try {
2634  tdaqdb=m_dbSvc->openDatabase(transConn(m_timedb),m_sourceread);
2635  std::cout << "Opened database connection" << std::endl;
2636  }
2637  catch (std::exception& e) {
2638  std::cout << "COOL exception caught: " << e.what() << std::endl;
2639  return false;
2640  }
2641  // start of run information
2642  try {
2643  cool::IFolderPtr folder=tdaqdb->getFolder(sorfolder);
2644  // channel number is arbitrary - have to loop
2645  cool::IObjectIteratorPtr itr=folder->browseObjects(m_runemin,m_runemin,
2647  int nobj=0;
2648  while (itr->goToNext()) {
2649  const cool::IRecord& payload=itr->currentRef().payload();
2650  m_timemin=payload["SORTime"].data<unsigned long long>();
2651  ++nobj;
2652  }
2653  itr->close();
2654  if (nobj!=1) {
2655  std::cout << "ERROR: Found " << nobj << " SOR records" << std::endl;
2656  return false;
2657  }
2658  }
2659  catch (std::exception& e) {
2660  std::cout << "Exception accessing SOR information: " << e.what() <<
2661  std::endl;
2662  return false;
2663  }
2664  // end of run information
2665  try {
2666  cool::IFolderPtr folder=tdaqdb->getFolder(eorfolder);
2667  // channel number is arbitrary - have to loop
2668  cool::IObjectIteratorPtr itr=folder->browseObjects(((m_runemax >> 32) << 32),((m_runemax >> 32) << 32),
2670  int nobj=0;
2671  while (itr->goToNext()) {
2672  const cool::IRecord& payload=itr->currentRef().payload();
2673  m_timemax=payload["EORTime"].data<unsigned long long>();
2674  ++nobj;
2675  }
2676  itr->close();
2677  if (nobj!=1) {
2678  std::cout << "ERROR: Found " << nobj << " EOR records" << std::endl;
2679  return false;
2680  }
2681  }
2682  catch (std::exception& e) {
2683  std::cout << "Exception accessing SOR information: " << e.what() <<
2684  std::endl;
2685  return false;
2686  }
2687  tdaqdb->closeDatabase();
2688  std::cout << "Timestamp range set to " << m_timemin << " " <<
2689  timeString(m_timemin) << "to " << m_timemax << " " <<
2690  timeString(m_timemax) << std::endl;
2691  return true;
2692 }
2693 
2695  // open using the ATLAS_COOLONL_GLOBAL schema, since we have authentication
2696  // information for this one by default
2697  // get minimum run-number/timestamp for bulk reco update
2698  std::cout << "Extracting current run-number from ATLAS_RUN_NUMBER @ ATONR_ADG ... " <<
2699  // Initialize libcurl
2700  curl_global_init(CURL_GLOBAL_ALL);
2701  using uniqueCurl_t = std::unique_ptr<CURL,decltype(&curl_easy_cleanup)>;
2702  uniqueCurl_t curl(curl_easy_init(), curl_easy_cleanup);
2703  CURLcode res = CURLE_OK;
2704  if (curl) {
2705  std::string url = m_runinfohost + "/runs?sort=runnumber:DESC&size=1";
2706  // Set the URL
2707  res = curl_easy_setopt(curl.get(), CURLOPT_URL, url.c_str());
2708  if (res != CURLE_OK) {
2709  std::cerr << "Failed to perform request: curl_easy_setopt, line "<<__LINE__<<std::endl;
2710  return false;
2711  }
2712  // Follow HTTP redirections
2713  res = curl_easy_setopt(curl.get(), CURLOPT_FOLLOWLOCATION, 1L);
2714  if (res != CURLE_OK) {
2715  std::cerr << "Failed to perform request: curl_easy_setopt, line "<<__LINE__<<std::endl;
2716  return false;
2717  }
2718  // Response data buffer
2719  std::string response;
2720 
2721  // Set the callback function to receive response data
2722  res = curl_easy_setopt(curl.get(), CURLOPT_WRITEFUNCTION, WriteCallback);
2723  if (res != CURLE_OK) {
2724  std::cerr << "Failed to perform request: curl_easy_setopt, line "<<__LINE__<<std::endl;
2725  return false;
2726  }
2727  res = curl_easy_setopt(curl.get(), CURLOPT_WRITEDATA, &response);
2728  if (res != CURLE_OK) {
2729  std::cerr << "Failed to perform request: curl_easy_setopt, line "<<__LINE__<<std::endl;
2730  return false;
2731  }
2732 
2733  // Perform the request
2734  res = curl_easy_perform(curl.get());
2735  if (res != CURLE_OK) {
2736  std::cerr << "Failed to perform request: " << curl_easy_strerror(res) << ":" << url.c_str() << std::endl;
2737  return false;
2738  } else {
2739  // Print the received response
2740  std::cout << "Response: " << std::endl;
2741  std::cout << response << std::endl;
2742  // Parse the JSON string
2743  try {
2745 
2746  // Extract the runnumber field
2747  int runNumber = jsonData["resources"][0]["runnumber"];
2748  int nextrun=runNumber+1;
2749  std::cout << "Next run started will be " << nextrun << std::endl;
2750  const long long rtime=time(nullptr);
2751  std::cout << "Epoch time extracted " << rtime << std::endl;
2752  if (m_alliov) {
2753  // if overwriting IOVs, set the new IOV lower limit
2754  m_newrunemin=(static_cast<long long>(nextrun)) << 32;
2755  m_newtimemin=rtime*static_cast<long long>(1E9);
2756  } else {
2757  // set the query lower limit - for use with truncate option
2758  m_runemin=(static_cast<long long>(nextrun)) << 32;
2759  m_timemin=rtime*static_cast<long long>(1E9);
2760  m_truncate=true;
2761  }
2762  } catch (nlohmann::json::parse_error& e) {
2763  std::cerr << "Failed to parse JSON response: " << e.what() << std::endl;
2764  return false;
2765  } catch (nlohmann::json::type_error& e) {
2766  std::cerr << "Failed to extract data from JSON response: " << e.what() << std::endl;
2767  return false;
2768  } catch (std::exception& e) {
2769  std::cerr << "Failed to extract run and timestamp from JSON response: " << e.what() << std::endl;
2770  return false;
2771  }
2772  }
2773  // Clean up done by unique_ptr d'tor
2774  } else {
2775  std::cerr << "Failed to initialize libcurl." << std::endl;
2776  return false;
2777  }
2778  // Cleanup libcurl
2779  curl_global_cleanup();
2780  return true;
2781 }
2783  // get minimum run-number/timestamp for bulk reco update
2784  if (m_getonline) {
2785  std::cout << "ERROR: -getonline and -getbulk cannot be used simultaneously"
2786  << std::endl;
2787  return false;
2788  }
2789  std::cout << "Call getbulk using URL" << std::endl;
2790  // Initialize libcurl
2791  curl_global_init(CURL_GLOBAL_ALL);
2792  using uniqueCurl_t = std::unique_ptr<CURL,decltype(&curl_easy_cleanup)>;
2793  uniqueCurl_t curl(curl_easy_init(), curl_easy_cleanup);
2794  //CURL *curl = curl_easy_init();
2795  CURLcode res = CURLE_OK;
2796 
2797  if (curl) {
2798  std::string url = m_runinfohost + "/runs/nemop/sync";
2799  // Set the URL
2800  res = curl_easy_setopt(curl.get(), CURLOPT_URL, url.c_str());
2801  if (res != CURLE_OK) {
2802  std::cerr << "Failed to perform request: curl_easy_setopt, line "<<__LINE__<<std::endl;
2803  return false;
2804  }
2805  // Follow HTTP redirections
2806  res = curl_easy_setopt(curl.get(), CURLOPT_FOLLOWLOCATION, 1L);
2807  if (res != CURLE_OK) {
2808  std::cerr << "Failed to perform request: curl_easy_setopt, line "<<__LINE__<<std::endl;
2809  return false;
2810  }
2811  // Response data buffer
2812  std::string response;
2813 
2814  // Set the callback function to receive response data
2815  res = curl_easy_setopt(curl.get(), CURLOPT_WRITEFUNCTION, WriteCallback);
2816  if (res != CURLE_OK) {
2817  std::cerr << "Failed to perform request: curl_easy_setopt, line "<<__LINE__<<std::endl;
2818  return false;
2819  }
2820  res = curl_easy_setopt(curl.get(), CURLOPT_WRITEDATA, &response);
2821  if (res != CURLE_OK) {
2822  std::cerr << "Failed to perform request: curl_easy_setopt, line "<<__LINE__<<std::endl;
2823  return false;
2824  }
2825  // Perform the request
2826  res = curl_easy_perform(curl.get());
2827  if (res != CURLE_OK) {
2828  std::cerr << "Failed to perform request: " << curl_easy_strerror(res) << ":" << url.c_str() << std::endl;
2829  return false;
2830  } else {
2831  // Print the received response
2832  std::cout << "Response: " << std::endl;
2833  std::cout << response << std::endl;
2834  try {
2835  // Split the response into two fields
2837  // Extract the run and timestamp fields
2838  int nextrun = jsonData["run"];
2839  long long rtime = jsonData["timestamp"];
2840  std::cout << "Next run started will be " << nextrun << std::endl;
2841  std::cout << "Epoch time extracted " << rtime << std::endl;
2842  if (m_alliov) {
2843  // if overwriting IOVs, set the new IOV lower limit
2844  m_newrunemin=(static_cast<long long>(nextrun)) << 32;
2845  m_newtimemin=rtime*static_cast<long long>(1E9);
2846  } else {
2847  // set the query lower limit - for use with truncate option
2848  m_runemin=(static_cast<long long>(nextrun)) << 32;
2849  m_timemin=rtime*static_cast<long long>(1E9);
2850  m_truncate=true;
2851  }
2852  } catch (nlohmann::json::parse_error& e) {
2853  std::cerr << "Failed to parse JSON response: " << e.what() << std::endl;
2854  return false;
2855  } catch (nlohmann::json::type_error& e) {
2856  std::cerr << "Failed to extract data from JSON response: " << e.what() << std::endl;
2857  return false;
2858  } catch (std::exception& e) {
2859  std::cerr << "Failed to extract run and timestamp from JSON response: " << e.what() << std::endl;
2860  return false;
2861  }
2862  }
2863  // Clean up done by unique_ptr
2864  } else {
2865  std::cerr << "Failed to initialize libcurl." << std::endl;
2866  return false;
2867  }
2868  // Cleanup libcurl
2869  curl_global_cleanup();
2870 
2871  return true;
2872 }
2873 
2875  // loop over all given filenames
2876  for (std::vector<std::string>::const_iterator itr=m_runfile.begin();
2877  itr!=m_runfile.end();++itr) {
2878  std::cout << "Reading allowed run numbers from file " << *itr << std::endl;
2879  FILE* p_inp=fopen(itr->c_str(),"r");
2880  if (p_inp==nullptr) {
2881  std::cout << "File not found" << std::endl;
2882  return false;
2883  }
2884  char* p_buf=new char[999];
2885  while (!feof(p_inp)) {
2886  char* p_line=fgets(p_buf,999,p_inp);
2887  if (p_line!=nullptr) {
2888  unsigned int run=atoi(p_line);
2889  m_runlist.push_back(run);
2890  }
2891  }
2892  fclose(p_inp);
2893  delete[] p_buf;
2894  }
2895  std::sort(m_runlist.begin(),m_runlist.end());
2896  std::cout << "Read list of " << m_runlist.size() << " runs from " <<
2897  m_runfile.size() << " input runlist files" << std::endl;
2898  for (std::vector<unsigned int>::const_iterator itr=m_runlist.begin();
2899  itr!=m_runlist.end();++itr) std::cout <<
2900  "Update allowed for run " << *itr << std::endl;
2901  return true;
2902 }
2903 
2904 int AtlCoolCopy::getUpdateMode(std::string_view desc,
2905  std::string_view tag) {
2906  // analyse the folder description and tag name for updateMode flags
2907  // return 1 for online mode, 0 otherwise
2908  std::string_view modestr="";
2909  int mode=0;
2910  std::string::size_type iofs1=desc.find("<updateMode>");
2911  std::string::size_type iofs2=desc.find("</updateMode>");
2912  if (iofs1!=std::string::npos && iofs2!=std::string::npos && iofs2>iofs1)
2913  modestr=desc.substr(iofs1+12,iofs2-iofs1-12);
2914  if (modestr=="UPD1" || tag.find("UPD1")!=std::string::npos) mode=1;
2915  if (modestr=="UPD2" || tag.find("UPD2")!=std::string::npos) mode=2;
2916  if (modestr=="UPD3" || tag.find("UPD3")!=std::string::npos) mode=3;
2917  if (modestr=="UPD4" || tag.find("UPD4")!=std::string::npos) mode=4;
2918  return mode;
2919 }
2920 
2921 
2922 bool AtlCoolCopy::checkChannels(const std::string& folder,
2923  const cool::IFolderPtr& sourcefl,const cool::IFolderPtr& destfl,
2924  bool newfolder) {
2925  // Channel manipulation is slow due to lack of bulk API for creating them
2926  // this routine therefore does the minimum work, not checking destination
2927  // if folder is newly created, and not copying description unless requested
2928  // get map of all channels
2929  const std::map<cool::ChannelId,std::string> chanmap=
2930  sourcefl->listChannelsWithNames();
2931  if (m_debug) std::cout << "Checking channels table for folder " << folder
2932  << " with " << chanmap.size() << " channels" << std::endl;
2933  int ncreate=0;
2934  int nmodify=0;
2935  // iterate over all channels
2936  for (std::map<cool::ChannelId,std::string>::const_iterator
2937  itr=chanmap.begin();itr!=chanmap.end();++itr) {
2938  // assume now ALL channels are in channels table (COOL 2.4 and above)
2939  const cool::ChannelId chan=itr->first;
2940  // check if channel should be skipped
2941  if (!m_excludechans.empty()) {
2942  if (find(m_excludechans.begin(),m_excludechans.end(),
2943  chan)!=m_excludechans.end()) continue;
2944  }
2945  if (!m_chansel.inSelection(chan)) continue;
2946 
2947  const std::string& sourcename=itr->second;
2948  // only look up channel description if we are copying it
2949  std::string sourcedesc="";
2950  if (m_chdesc) sourcedesc=sourcefl->channelDescription(chan);
2951  // only check destination if folder alreay existed
2952  if (!newfolder && destfl->existsChannel(chan)) {
2953  const std::string & destname=destfl->channelName(chan);
2954  std::string destdesc="";
2955  if (m_chdesc) destdesc=destfl->channelDescription(chan);
2956  // if sourcename is not set, and destination is, dont worry
2957  if (sourcename!=destname && !sourcename.empty()) {
2958  // channel names differ - error if verifying, set if copying
2959  if (m_verify) {
2960  std::cout << "ERROR: Channel " << chan << " names differ: " <<
2961  sourcename << " " << destname << std::endl;
2962  return false;
2963  }
2964  destfl->setChannelName(chan,sourcename);
2965  std::cout << "Modify channel " << chan << " name from "
2966  << destname << " to " << sourcename << std::endl;
2967  ++nmodify;
2968  }
2969  if (sourcedesc!=destdesc && !sourcedesc.empty()) {
2970  // channel descriptions differ - error if verifying, set if copying
2971  if (m_verify) {
2972  std::cout << "ERROR: Channel " << chan << " descriptions differ: "
2973  << sourcedesc << " " << destdesc << std::endl;
2974  return false;
2975  }
2976  std::cout << "Modify channel " << chan << " description from "
2977  << sourcedesc << " to " << destdesc << std::endl;
2978  destfl->setChannelDescription(chan,sourcedesc);
2979  ++nmodify;
2980  }
2981  } else {
2982  // channel does not exist on destination - if verifying, this is error
2983  if (m_verify) return false;
2984  // otherwise create it
2985  if (m_debug) std::cout << "Create new channel " << chan << " name "
2986  << sourcename << " description" << sourcedesc << std::endl;
2987  destfl->createChannel(chan,sourcename,sourcedesc);
2988  ++ncreate;
2989  }
2990  }
2991  if (ncreate>0) std::cout << "Created " << ncreate << " new channels for "
2992  << folder << std::endl;
2993  if (nmodify>0) std::cout << "Modified " << nmodify << " channel info for "
2994  << folder << std::endl;
2995  return true;
2996 }
2997 
2998 
2999 void AtlCoolCopy::checkRef(const cool::IRecord& payload,
3000  const std::string& folder, const std::string& tag) {
3001  const std::string name=payload[0].name();
3002  if (name=="PoolRef" || name=="fileGUID") {
3003  std::string poolref;
3004  std::string addr=payload[0].data<std::string>();
3005  if (name=="PoolRef") {
3006  std::string::size_type iofs1=addr.find("[DB=");
3007  std::string::size_type iofs2=addr.find(']',iofs1);
3008  if (iofs1!=std::string::npos && iofs2!=std::string::npos && iofs2>iofs1) {
3009  poolref=addr.substr(iofs1+4,iofs2-iofs1-4);
3010  } else {
3011  std::cout << "ERROR: Badly formed POOL object reference " <<
3012  addr << std::endl;
3013  }
3014  } else {
3015  // for fileGUID, POOL GUID is just the string
3016  poolref=addr;
3017  }
3018  std::string foldertag=folder+":"+tag;
3019  // insert into list, first check if same as before
3020  if (m_poollast!=m_poolrefs.end() && m_poollast->first==poolref) {
3021  m_poollast->second.inccount();
3022  m_poollast->second.addfoldertag(foldertag);
3023  } else {
3024  m_poollast=m_poolrefs.find(poolref);
3025  if (m_poollast!=m_poolrefs.end()) {
3026  m_poollast->second.inccount();
3027  m_poollast->second.addfoldertag(foldertag);
3028  } else {
3029  m_poolrefs[poolref]=PoolMapElement(1,foldertag);
3030  m_poollast=m_poolrefs.find(poolref);
3031  }
3032  }
3033  }
3034 }
3035 
3037  std::cout << "Copying additional hierarchical tags of parent folders"
3038  << std::endl;
3039  while (!m_hiparent.empty()) {
3040  // take first element and erase it
3041  std::string folderset=*m_hiparent.begin();
3042  m_hiparent.erase(m_hiparent.begin());
3043  // process any tags defined for this folderset
3044  if (m_sourceDbPtr->existsFolderSet(folderset)) {
3045  cool::IFolderSetPtr sourcefl=m_sourceDbPtr->getFolderSet(folderset);
3046  cool::IFolderSetPtr destfl=m_destDbPtr->getFolderSet(folderset);
3047  std::cout << "Processing folderset " << folderset << std::endl;
3048  for (HiTagMap::const_iterator imap=m_hitagmap.begin();
3049  imap!=m_hitagmap.end();++imap) {
3050  try {
3051  // will throw exception if this tag is not pointing to the folder
3052  std::string sourcetag=sourcefl->findTagRelation(imap->first);
3053  std::cout << "Create hierarchical tag between " << sourcetag <<
3054  " and " << imap->first << " in folder " << imap->second <<
3055  std::endl;
3056  try {
3057  // first check this relation has not already been created
3058  std::string etag=destfl->resolveTag(imap->first);
3059  if (etag==sourcetag) {
3060  std::cout << "This relation has already been created" << std::endl;
3061  } else {
3062  std::cout << "ERROR: Tag in parent already related to " <<
3063  etag << std::endl;
3064  return 34;
3065  }
3066  }
3067  catch (cool::Exception& e ) {
3068  // only do creation if does not already exist - via exception
3069  try {
3070  destfl->createTagRelation(imap->first,sourcetag);
3071  // check if this implicates yet another parent folder to be checked
3072  if (find(m_hiparent.begin(),m_hiparent.end(),imap->second)==
3073  m_hiparent.end()) m_hiparent.push_back(imap->second);
3074  if (m_copytaginfo &&
3075  m_cooltagmap.find(imap->first)==m_cooltagmap.end())
3076  m_cooltagmap.insert(CoolTagMap::value_type(imap->first,
3077  CoolTagInfo(m_sourceDbPtr,imap->second,imap->second,
3078  imap->first,imap->first)));
3079  }
3080  catch (cool::Exception& e) {
3081  std::cout << "Cool exception " << e.what() <<
3082  "thrown in hierarchical tag creation" << std::endl;
3083  return 34;
3084  }
3085  }
3086  }
3087  // exceptions from findTag - do nothing
3088  catch (cool::Exception& e) { }
3089  }
3090  } else {
3091  std::cout << "ERROR Folderset " << folderset << " not found" <<
3092  std::endl;
3093  }
3094  }
3095  return 0;
3096 }
3097 
3099  std::cout << "Write tag description ";
3100  if (m_copytaglock) std::cout << "and lock info ";
3101  std::cout << "for " << m_cooltagmap.size() << " tags" << std::endl;
3102  for (CoolTagMap::const_iterator itr=m_cooltagmap.begin();
3103  itr!=m_cooltagmap.end();++itr) {
3104  itr->second.write(m_destDbPtr,m_copytaglock);
3105  }
3106  return 0;
3107 }
3108 
3110  std::cout << "Total of " << m_poolrefs.size() << " POOL files referenced"
3111  << std::endl;
3112  for (PoolMap::const_iterator ipool=m_poolrefs.begin();
3113  ipool!=m_poolrefs.end();++ipool) {
3114  std::cout << "Ref " << ipool->first << " (" << ipool->second.count()
3115  << ")" << std::endl;
3116  }
3117  return 0;
3118 }
3119 
3120 int AtlCoolCopy::resolvePoolRefs ATLAS_NOT_THREAD_SAFE () {
3121  std::cout << "Total of " << m_poolrefs.size() << " POOL Files referenced"
3122  << std::endl;
3123  pool::IFileCatalog* catalog=setupCatalog(m_poolcat);
3124  if (catalog==nullptr) return 110;
3125  pool::SimpleUtilityBase pool_utility;
3126  if (m_poolopen) {
3127  // prepare POOL session
3128  pool_utility.startSession();
3129  }
3130  // inject additional GUIDs/LFNs if needed
3131  if (!m_addguid.empty()) {
3132  for (std::vector<std::string>::const_iterator itr=m_addguid.begin();
3133  itr!=m_addguid.end();++itr) {
3134  m_poolrefs[*itr]=PoolMapElement(1,"ADDGUID");
3135  std::cout << "Added POOL file GUID: " << *itr << std::endl;
3136  }
3137  }
3138  if (!m_addlfn.empty()) {
3139  for (std::vector<std::string>::const_iterator itr=m_addlfn.begin();
3140  itr!=m_addlfn.end();++itr) {
3141  std::string guid;
3142  catalog->lookupFileByLFN(*itr,guid);
3143  std::cout << "Add POOL file GUID: " << guid << " from LFN " << *itr
3144  << std::endl;
3145  m_poolrefs[guid]=PoolMapElement(1,"ADDLFN");
3146  }
3147  }
3148 
3149  // set up for making new dataset if needed
3150  using LFNGVec = std::vector<std::pair<std::string, std::string> >;
3151  LFNGVec dsfound;
3152  bool dscopy=!m_newdataset.empty();
3153 
3154  // loop through GUIDs and attempt to resolve
3155  int nbad=0;
3156  for (PoolMap::iterator ipool=m_poolrefs.begin();
3157  ipool!=m_poolrefs.end();++ipool) {
3158  pool::FileCatalog::FileID guid=ipool->first;
3160  catalog->getLFNs( guid, lfns );
3161  if( !lfns.empty() ) {
3162  // file found in cataloge - print LFN and usage count
3163  const std::string lfn = lfns[0].first;
3164  ipool->second.setlfn(lfn);
3165  std::cout << "LFN: " << lfn << " (" << ipool->second.count()
3166  << ")" << std::endl;
3167  if (dscopy)
3168  dsfound.push_back(std::pair<std::string,std::string>(lfn,guid));
3169  } else {
3170  // error bit 0 - no LFN
3171  if (!m_listpfn) ipool->second.setErrorBit(0);
3172  }
3173  if (m_listpfn || m_poolopen) {
3174  std::string pfn, tech;
3175  catalog->getFirstPFN( guid, pfn, tech );
3176  if( !pfn.empty() ) {
3177  ipool->second.setpfn(pfn);
3178  std::cout << "PFN: " << pfn << " (" << ipool->second.count()
3179  << ")" << std::endl;
3180  if (m_poolopen) {
3181  // first try the file as a CoolHist file
3182  std::string hguid=getCoolHistGUID(pfn);
3183  if (!hguid.empty()) {
3184  // successful get of CoolHist GUID
3185  if (hguid!=ipool->first) {
3186  std::cout << "ERROR File CoolHist GUID " << hguid <<
3187  " inconsistent with catalogue " << ipool->first << std::endl;
3188  ipool->second.setErrorBit(3);
3189  }
3190  } else {
3191  // try the file as a genuine POOL file
3192  try {
3193  const std::string fid = pool_utility.readFileGUID( pfn );
3194  if( fid != ipool->first ) {
3195  std::cout << "ERROR File GUID " << fid <<
3196  " inconsistent with catalogue " << ipool->first << std::endl;
3197  // file GUID inconsistent with catalogue - error bit 3
3198  ipool->second.setErrorBit(3);
3199  }
3200  }
3201  catch( std::runtime_error& e ) {
3202  std::cout << "Cannot open file for reading!" << std::endl;
3203  std::cout << e.what() << std::endl;
3204  // File cannot be opened: set error bit 2
3205  ipool->second.setErrorBit(2);
3206  }
3207  }
3208  } // end of actions opening POOL file
3209  } else {
3210  // PFN not found - set bit 1
3211  ipool->second.setErrorBit(1);
3212  }
3213  }
3214  // check file error code
3215  if (ipool->second.errcode()>0) ++nbad;
3216  }
3217  catalog->commit();
3218  catalog->disconnect();
3219  delete catalog;
3220 
3221  // produce definition of new dataset if needed
3222  if (dscopy) {
3223  // start up a new catalogue instance with the merge catalogues
3224  // which indicate which files are already available and don't need to
3225  // put in the output dataset definition
3226  catalog=setupCatalog(m_mergecat);
3227  if (catalog==nullptr) return 110;
3228  const std::string dssname="register.sh";
3229  std::cout << "Write DQ2 registerFileInDataset commands to " << dssname
3230  << " for registration in dataset " << m_newdataset << std::endl;
3231  std::ofstream dsstream(dssname.c_str());
3232  for (LFNGVec::const_iterator itr=dsfound.begin();
3233  itr!=dsfound.end();++itr) {
3234  const std::string& lfn=itr->first;
3235  const std::string& guid=itr->second;
3237  catalog->getLFNs( guid, lfns );
3238  if( !lfns.empty() ) {
3239  // file is already registered - check logical names are consistent
3240  const std::string lfn2 = lfns[0].first;
3241  if (lfn2!=lfn) std::cout << "WARNING: LFNs for GUID " << guid <<
3242  " differ in input/merge datasets: " << lfn << " vs "
3243  << lfn2 << std::endl;
3244  } else {
3245  // file is not registered - add to output
3246  dsstream << "dq2-register-files " << m_newdataset << " "
3247  << lfn << " " << guid << std::endl;
3248  }
3249  }
3250  catalog->commit();
3251  catalog->disconnect();
3252  delete catalog;
3253  }
3254 
3255  int retcode=0;
3256  if (nbad==0) {
3257  std::cout << "All POOL references were resolved by catalogues"
3258  << std::endl;
3259  } else {
3260  std::cout << "ERROR Could not resolve " << nbad << " files" << std::endl;
3261  retcode=111;
3262  }
3263  if (nbad>0 || m_poolall) filePoolRefs();
3264  return retcode;
3265 }
3266 
3267 std::string AtlCoolCopy::getCoolHistGUID(const std::string& file) {
3268  // attempt to extract COOL Hist GUID from file
3269  std::string hguid="";
3270  TFile* myfile=TFile::Open(file.c_str(),"READ");
3271  if (myfile!=nullptr) {
3272  TObjString* oguid;
3273  myfile->GetObject("fileGUID",oguid);
3274  if (oguid!=nullptr) {
3275  hguid=oguid->GetString();
3276  std::cout << "CoolHist GUID found to be " << hguid << std::endl;
3277  }
3278  myfile->Close();
3279  }
3280  return hguid;
3281 }
3282 
3284  // list POOL refs and error codes, optionally to file
3285  if (!m_checkoutputfile.empty()) {
3286  std::cout << "Write POOL file checkoutput on " << m_checkoutputfile <<
3287  std::endl;
3288  } else {
3289  m_checkoutputfile="/dev/null";
3290  }
3291  std::ofstream chkostream(m_checkoutputfile.c_str());
3292  std::cout << "ErrCode GUID Count LFN PFN Folders ..." << std::endl;
3293  for (PoolMap::const_iterator ipool=m_poolrefs.begin();
3294  ipool!=m_poolrefs.end();++ipool) {
3295  if (m_poolall || ipool->second.errcode()>0) {
3296  std::ostringstream line;
3297  // write error code, GUID, usage count
3298  line << ipool->second.errcode() << " " << ipool->first << " " <<
3299  ipool->second.count() << " ";
3300  if (!ipool->second.lfn().empty()) {
3301  line << ipool->second.lfn() << " ";
3302  } else {
3303  line << "noLFN ";
3304  }
3305  if (!ipool->second.pfn().empty()) {
3306  line << ipool->second.pfn() << " ";
3307  } else {
3308  line << "noPFN ";
3309  }
3310  for (std::vector<std::string>::const_iterator
3311  itr=ipool->second.foldertag().begin();
3312  itr!=ipool->second.foldertag().end();++itr)
3313  line << *itr << " ";
3314  std::cout << line.str() << std::endl;
3315  chkostream << line.str() << std::endl;
3316  }
3317  }
3318 }
3319 
3321  const std::vector<std::string>& catvec) {
3323  try {
3324  catalog->setWriteCatalog("file:PoolFileCatalog.xml");
3325  for (std::vector<std::string>::const_iterator icat=catvec.begin();
3326  icat!=catvec.end();++icat) {
3327  std::cout << "Add catalogue: " << *icat << std::endl;
3328  // if catalogue contains no ":" specifier, assume plain file
3329  if (icat->find(':')==std::string::npos) {
3330  catalog->addReadCatalog("file:"+(*icat));
3331  } else {
3332  catalog->addReadCatalog(*icat);
3333  }
3334  }
3335  catalog->connect();
3336  catalog->start();
3337  return catalog;
3338  }
3339  catch (std::exception& e) {
3340  std::cout << "Could not setup POOL catalogues, exception:" << e.what()
3341  << std::endl;
3342  return nullptr;
3343  }
3344 }
3345 
3346 void printHelp() {
3347  std::cout << "usage: AtlCoolCopy.exe <sourceCoolDB> <destinationCoolDB> { <options> }" << std::endl;
3348  std::cout << "Options are (see doc/mainpage.h for more):" << std::endl <<
3349  "-a, -alliov : set IOVs on destination to [ValidityKeyMin, ValidityKeyMax]" << std::endl <<" or following settings of -nrls,-nrlu,-nts,-ntu" <<
3350  std::endl <<
3351  "-ag, -addguid <guid> : Add GUID to list accessed for POOL checks" <<
3352  std::endl <<
3353  "-alf, -addlfn <LFN> : Add LFN to list accessed for POOL checks" <<
3354  std::endl <<
3355  "-al, -appendlocked : Allow locked tags to be updated if no overlap" <<
3356  std::endl <<
3357  "-alsv, -appendlockedsv : Allow locked tag update for openended IOVs" <<
3358  std::endl <<
3359  "-ana, -analyse <delta_t>: produce analysis ROOT file (filename = dest DB argument)" << std::endl <<
3360 "-bs, -buffersize <size> : set size of bulkstorage output buf to <size> objs"
3361  << std::endl <<
3362  "-c, -create : create destination DB if not already existing"
3363  << std::endl <<
3364  "-cd, -checkdest : Check destination DB and skip already existing tags"
3365  << std::endl <<
3366  "-ch, -channel : restrict selection to given channel or range specified as c1:c2" << std::endl <<
3367  "-ch1, -channel1 : specify start of a range of channels" << std::endl <<
3368  "-ch2, -channel2 : specify end of a range of channels" << std::endl <<
3369  "-cf, -checkfiles : check POOL files can be opened and have correct GUID"
3370  << std::endl <<
3371  "-co, -checkoutput <file> : write POOL file check output on file"
3372  << std::endl << "-cti, -copytaginfo : Copy tag descriptions"
3373  << std::endl << "-ctl, -copytaglock : Copy tag locked status and descriptions"
3374  << std::endl << "-cr, -checkrefs : check POOL references"
3375  << std::endl << "-d, -debug : produce debug output" << std::endl;
3376  std::cout <<
3377  "-ds, -dataset : output register.sh for creating DQ2 datasets "
3378  << std::endl <<
3379  "-ec, -excludechannel : exclude given channel from copy" << std::endl <<
3380  "-eh, -excludehead : exclude HEAD tag even if no tags found in MV folders"
3381  << std::endl <<
3382  "-ih, -includehead : include HEAD as well as any tags in MV folders" <<
3383  std::endl <<
3384  "-e, -exclude <pattern> : exclude folders" << std::endl <<
3385  "-f, -folder <pattern> : include folders" << std::endl <<
3386  "-fs, -forcesingle : force destination folder to be singleversion"
3387  << std::endl <<
3388  "-fm, -forcemulti : force destination folder to be multiversion"
3389  << std::endl <<
3390  "-frl, -forcerunlumi : force destination folder to be run/LB indexed"
3391  << std::endl <<
3392  "-ftm, -forcetime : force destination folder to be timestamp indexed"
3393  << std::endl <<
3394  "-fp, -forcepayload : Force destn folders to be created with payload tbl" << std::endl <<
3395  "-fnp, -forcenopayload : Force destn folders to be created without payload tbl" << std::endl <<
3396  "-forcerecreate : delete and recreate destination database" << std::endl;
3397  std::cout << "-ht, -headtag : Use HEAD-style tagging"
3398  << std::endl <<
3399  "-go, -getonline : Set minimum run number (-rls setting) to next ONLINE run"
3400  << std::endl <<
3401  "-gb, -getbulk : Set minimum run number (-rls setting) to next bulk reco run"
3402  << std::endl <<
3403  "-gt, -gettime : Extract timestamp information for given run number range"
3404  << std::endl <<
3405  "-h, -help : print help and exit" << std::endl <<
3406  "-hi, -hitag : Copy hierrchical tags inclusively" << std::endl <<
3407  "-ignoremode <pwd> : Ignore UPDx mode protection (experts only)"
3408  << std::endl <<
3409  "-is, -ignorespec : Ignore differences in folder spec if names are all equal" << std::endl <<
3410  "-lo, -lockedonly : Only copy locked/partially-locked top-level tags"
3411  << std::endl <<
3412  "-nc, -nocopy : Do not actually copy, just read source DB" << std::endl <<
3413  "-nch, -nochannel : Do not check or copy channel information" << std::endl
3414 << "-ncr, -noclobroot: Do not copy CLOB data into ROOT files" << std::endl
3415 << "-noc, -nocoracool : Do not copy Coracool structure payloads " << std::endl <<
3416  "-nd, -nodata : Copy only folder structures, not data" << std::endl <<
3417  "-nh, -nohitag : Do not follow hierarchical tag relations" << std::endl <<
3418 "-mc, -mergecat <catfile> : specify POOL file catalogue for new dataset making"
3419  << std::endl;
3420  std::cout << "-of, -outfolder <folder> : rename folder on output"
3421  << std::endl <<
3422  "-onr, -onlinerun : Retrieve run number from online server (not replica)" <<std::endl <<
3423  "-ot, -outtag : " << "Rename tag on output" << std::endl;
3424  std::cout <<
3425  "-pa, -poolall : Output all POOL files (incl good) when checking files"
3426  << std::endl <<
3427 "-pc, -poolcat <catfile> : specify POOL file catalogue for ref checking"
3428  << std::endl <<
3429  "-pf, -parfile <file> : Read additional options/parameters from file" <<
3430  std::endl <<
3431 "-pt, -prunetags : Copy only hierarchical tags descending from specified toptags"
3432  << std::endl <<
3433 "-rdo, -readoracle : force data to be read from Oracle, using dbreplica.config"
3434  << std::endl <<
3435  "-sl, -seal <val>: Set SEAL (hence COOL/POOL) output level to <val>"
3436  << std::endl <<
3437  "-sr, -skiprep : Skip folders having <norep/> folder metadata tag" <<
3438  std::endl <<
3439  "-t, -tag <tag> : Copy multiversion data with tag <tag>" << std::endl <<
3440  "-mt, -magic <tag> : Include magic tags involving the given pattern " << std::endl <<
3441 "-tr, -truncate : Set destination IOVs outside query interval to query interval"
3442  << std::endl <<
3443 "-tl, -taglabel : Specify tag description to enter in destination DB"
3444  << std::endl <<
3445  "-uht, -userheadtag : Also copy user tag data to the HEAD" << std::endl <<
3446  "-v, -verify : Verify data present on destination rather than copying" <<
3447  std::endl <<
3448  "-ro, -root : Produce ROOT output file instead of copying to COOL"
3449  << std::endl <<
3450  "-zn, -zeronull : Zero NULLs in ROOT file instead of skipping them" <<
3451  std::endl <<
3452  "-rls, -runlumisince <run> <LB> : Set minimum IOV interval" << std::endl <<
3453  "-rlu, -runlumiuntil <run> <LB> : Set maximum IOV interval" << std::endl <<
3454  "-rs, -runsince <run> : Set minimum IOV interval" << std::endl <<
3455  "-ru, -rununtil <run> : Set maximum IOV interval" << std::endl <<
3456  "-r, -run <run> : Copy only run <run>" << std::endl <<
3457 "-srls, -skiprunlumisince <run> <LB> : Set minimum IOV for skipping IOV in copy"
3458  << std::endl <<
3459 "-srlu, -skiprunlumiuntil <run> <LB> : Set maximum IOV for skipping IOV in copy"
3460  << std::endl <<
3461  "-tdb, -timedb <dbconn> : Set database connection for time information" <<
3462  "-ts, -timesince <time> : Set minimum IOV interval (UTC SECONDs or UTC YYYY-MM-DD:hh:mm:ss)" <<
3463  std::endl <<
3464  "-tu, -timeuntil <time> : Set maximum IOV interval (UTC SECONDs or UTC YYYY-MM-DD:hh:mm:ss)" <<
3465  std::endl;
3466  std::cout <<
3467  "-nrls, -newrunlumisince <run> <LB> : Set minimum of output IOV interval (use with -alliov)" << std::endl <<
3468  "-nrlu, -newrunlumiuntil <run> <LB> : Set maximum of output IOV interval (use with --aliov)" << std::endl <<
3469  "-nts, -newtimesince <time> : Set minimum of outputIOV interval (UTC SECONDs or UTC YYYY-MM-DD:hh:mm:ss) (use with --alliov)" <<
3470  std::endl <<
3471  "-ntu, -newtimeuntil <time> : Set maximum of output IOV interval (UTC SECONDs or UTC YYYY-MM-DD:hh:mm:ss) (use with --alliov)" <<
3472  std::endl;
3473  std::cout << "See http://twiki.cern.ch/twiki/bin/view/Atlas/AtlCoolCopy for more details" << std::endl;
3474 }
3475 
3476 int main ATLAS_NOT_THREAD_SAFE (int argc, const char* argv[]) {
3477  int retcode=0;
3478  if (argc<3) {
3479  printHelp();
3480  retcode=1;
3481  } else {
3482  AtlCoolCopy mycopy(argv[1],argv[2]);
3483  retcode=mycopy.setOpts(argc-3,&argv[3]);
3484  if (retcode==999) {
3485  printHelp();
3486  return 0;
3487  }
3488  if (retcode==0) retcode=mycopy.doCopy();
3489  }
3490  if (retcode>0) std::cout << "ERROR AtlCoolCopy.exe fails with exit code " <<
3491  retcode << std::endl;
3492  return retcode;
3493 }
SimpleUtilityBase.h
AtlCoolCopy::analyseIOVs
int analyseIOVs(const std::string &folder, const cool::IFolderPtr &sourcefl, const std::string &sourcetag, const cool::ValidityKey since, const cool::ValidityKey until, const bool timestamp)
Definition: AtlCoolCopy.cxx:1858
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
AtlCoolCopy::runLBVal
static cool::ValidityKey runLBVal(const char *input1, const char *input2)
Definition: AtlCoolCopy.cxx:2586
AtlCoolCopy::channelID
static cool::ChannelId channelID(const cool::IFolderPtr &folder, const std::string &chanstring)
Definition: AtlCoolCopy.cxx:856
AtlCoolCopy::m_skipout
bool m_skipout
Definition: AtlCoolCopy.cxx:204
AllowedVariables::e
e
Definition: AsgElectronSelectorTool.cxx:37
AtlCoolCopy::rootWrite
void rootWrite(void *sptr, const cool::IField &field) const
Definition: AtlCoolCopy.cxx:1772
AtlCoolCopy::m_magic
std::vector< std::string > m_magic
Definition: AtlCoolCopy.cxx:264
AtlCoolCopy::m_getbulk
bool m_getbulk
Definition: AtlCoolCopy.cxx:212
pool::SimpleUtilityBase::readFileGUID
virtual std::string readFileGUID(const std::string &pfn)
AtlCoolCopy::verifyIOVs
int verifyIOVs(const std::string &folder, const cool::IFolderPtr &sourcefl, const CoraCoolFolderPtr &sourceflc, const cool::IFolderPtr &destfl, const CoraCoolFolderPtr &destflc, const std::string &sourcetag, const cool::ValidityKey since, const cool::ValidityKey until, const bool checkrefs, const bool iscora, const cool::PayloadMode::Mode paymode)
Definition: AtlCoolCopy.cxx:1356
AtlCoolCopy::m_nt_rununtil
UInt_t m_nt_rununtil
Definition: AtlCoolCopy.cxx:288
checkFileSG.line
line
Definition: checkFileSG.py:75
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
xAOD::short
short
Definition: Vertex_v1.cxx:165
AtlCoolCopy
Definition: AtlCoolCopy.cxx:81
AtlCoolCopy::m_outtag
std::string m_outtag
Definition: AtlCoolCopy.cxx:239
get_generator_info.result
result
Definition: get_generator_info.py:21
pool::IFileCatalog::Files
Gaudi::IFileCatalog::Files Files
Definition: IFileCatalog.h:26
AtlCoolCopy::m_channel1
std::string m_channel1
Definition: AtlCoolCopy.cxx:233
AtlCoolCopy::ATLAS_NOT_THREAD_SAFE
int doCopy ATLAS_NOT_THREAD_SAFE()
python.rtime.rtime
def rtime(fn, *args, **kw)
Definition: rtime.py:15
CheckTagAssociation.localtag
localtag
Definition: CheckTagAssociation.py:19
AtlCoolCopy::m_verify
bool m_verify
Definition: AtlCoolCopy.cxx:182
AtlCoolCopy::m_nt_lbuntil
UInt_t m_nt_lbuntil
Definition: AtlCoolCopy.cxx:290
AtlCoolCopy::m_srunemax
cool::ValidityKey m_srunemax
Definition: AtlCoolCopy.cxx:231
find
std::string find(const std::string &s)
return a remapped string
Definition: hcg.cxx:135
CoraCoolDatabase
Definition: CoraCoolDatabase.h:24
AtlCoolCopy::m_coralsvc
coral::ConnectionService m_coralsvc
Definition: AtlCoolCopy.cxx:253
CaloCellPos2Ntuple.int
int
Definition: CaloCellPos2Ntuple.py:24
json
nlohmann::json json
Definition: HistogramDef.cxx:9
AtlCoolCopy::m_copytaglock
bool m_copytaglock
Definition: AtlCoolCopy.cxx:216
AtlCoolCopy::getTimeFromRun
bool getTimeFromRun()
Definition: AtlCoolCopy.cxx:2605
response
MDT_Response response
Definition: MDT_ResponseTest.cxx:28
CaloCondBlobAlgs_fillNoiseFromASCII.spec
spec
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:47
AtlCoolCopy::m_readoracle
bool m_readoracle
Definition: AtlCoolCopy.cxx:208
AtlCoolCopy::m_destdb
std::string m_destdb
Definition: AtlCoolCopy.cxx:173
AtlCoolCopy::m_repsort
ReplicaSorter * m_repsort
Definition: AtlCoolCopy.cxx:256
AtlCoolCopy::m_getonline
bool m_getonline
Definition: AtlCoolCopy.cxx:210
AtlCoolCopy::getUpdateMode
static int getUpdateMode(std::string_view desc, std::string_view tag)
Definition: AtlCoolCopy.cxx:2904
mergePhysValFiles.newfolder
newfolder
Definition: DataQuality/DataQualityUtils/scripts/mergePhysValFiles.py:83
AtlCoolCopy::m_checkoutputfile
std::string m_checkoutputfile
Definition: AtlCoolCopy.cxx:241
pool::FileCatalog::FileID
std::string FileID
Definition: IFileCatalog.h:20
AtlCoolCopy::setChannelRange
void setChannelRange(const cool::IFolderPtr &sourcefl)
Definition: AtlCoolCopy.cxx:821
xAOD::char
char
Definition: TrigDecision_v1.cxx:38
parse
std::map< std::string, std::string > parse(const std::string &list)
Definition: egammaLayerRecalibTool.cxx:1054
extractSporadic.c1
c1
Definition: extractSporadic.py:134
tree
TChain * tree
Definition: tile_monitor.h:30
IDatabase.h
AtlCoolCopy::m_excludehead
bool m_excludehead
Definition: AtlCoolCopy.cxx:177
TRTCalib_cfilter.p1
p1
Definition: TRTCalib_cfilter.py:130
IFileCatalog.h
dirname
std::string dirname(std::string name)
Definition: utils.cxx:200
Cut::all
@ all
Definition: SUSYToolsAlg.cxx:67
AtlCoolCopy::rootDirs
std::string rootDirs(const std::string &folder, const std::string &toproot)
Definition: AtlCoolCopy.cxx:1682
AtlCoolCopy::m_truncate
bool m_truncate
Definition: AtlCoolCopy.cxx:203
AtlCoolCopy::ATLAS_NOT_THREAD_SAFE
int copyFolder ATLAS_NOT_THREAD_SAFE(const std::string &folder, const std::vector< std::string > &taglist)
AtlCoolCopy::m_timemax
cool::ValidityKey m_timemax
Definition: AtlCoolCopy.cxx:225
bin
Definition: BinsDiffFromStripMedian.h:43
AtlCoolCopy::m_hitag
bool m_hitag
Definition: AtlCoolCopy.cxx:194
AtlCoolCopy::m_chansel
cool::ChannelSelection m_chansel
Definition: AtlCoolCopy.cxx:268
PlotCalibFromCool.nchan
nchan
Definition: PlotCalibFromCool.py:564
AtlCoolCopy::openConnections
bool openConnections(const std::string &sourcedb, const std::string &destdb, bool allowcreate)
Definition: AtlCoolCopy.cxx:340
AtlCoolCopy::m_userupdatehead
bool m_userupdatehead
Definition: AtlCoolCopy.cxx:179
python.subdetectors.tile.Blob
Blob
Definition: tile.py:17
CheckTagAssociation.taglist
taglist
Definition: CheckTagAssociation.py:103
AtlCoolCopy::m_parfile
std::vector< std::string > m_parfile
Definition: AtlCoolCopy.cxx:247
pool::IFileCatalog::disconnect
void disconnect()
Definition: IFileCatalog.h:40
AtlCoolCopy::m_hitagmap
HiTagMap m_hitagmap
Definition: AtlCoolCopy.cxx:274
pool::IFileCatalog::commit
void commit()
Save catalog to file.
Definition: IFileCatalog.h:49
AtlCoolCopy::m_dbSvc
cool::IDatabaseSvc * m_dbSvc
Definition: AtlCoolCopy.cxx:255
exclude
std::set< std::string > exclude
list of directories to be excluded
Definition: hcg.cxx:95
ReadOfcFromCool.field
field
Definition: ReadOfcFromCool.py:48
AtlCoolCopy::m_newrunemin
cool::ValidityKey m_newrunemin
Definition: AtlCoolCopy.cxx:226
dbg::ptr
void * ptr(T *p)
Definition: SGImplSvc.cxx:74
AtlCoolCopy::m_usertags
bool m_usertags
Definition: AtlCoolCopy.cxx:178
AtlCoolCopy::m_srunemin
cool::ValidityKey m_srunemin
Definition: AtlCoolCopy.cxx:230
AtlCoolCopy::m_sourcedb
std::string m_sourcedb
Definition: AtlCoolCopy.cxx:172
CaloSwCorrections.gap
def gap(flags, cells_name, *args, **kw)
Definition: CaloSwCorrections.py:212
AtlCoolCopy::m_forcemulti
bool m_forcemulti
Definition: AtlCoolCopy.cxx:197
ITransaction.h
physics_parameters.url
string url
Definition: physics_parameters.py:27
ATLAS_NOT_THREAD_SAFE
int AtlCoolCopy::copyFolder ATLAS_NOT_THREAD_SAFE(const std::string &folder, const std::vector< std::string > &taglist)
Definition: AtlCoolCopy.cxx:536
AtlCoolCopy::equalRecord
static bool equalRecord(const cool::IRecord &lhs, const cool::IRecord &rhs)
Definition: AtlCoolCopy.cxx:2510
AtlCoolCopy::m_ignoremode
bool m_ignoremode
Definition: AtlCoolCopy.cxx:218
atlasStyleMacro.icol
int icol
Definition: atlasStyleMacro.py:13
AtlCoolCopy::m_newtimemax
cool::ValidityKey m_newtimemax
Definition: AtlCoolCopy.cxx:229
CoraCoolObject.h
cool
Definition: CoolTagInfo.h:12
dq_defect_copy_defect_database.channels
def channels
Definition: dq_defect_copy_defect_database.py:56
AtlCoolCopy::timeVal
static cool::ValidityKey timeVal(const char *input)
Definition: AtlCoolCopy.cxx:2542
AtlCoolCopy::m_coracool
bool m_coracool
Definition: AtlCoolCopy.cxx:217
AtlCoolCopy::m_applocksv
bool m_applocksv
Definition: AtlCoolCopy.cxx:207
pool::IFileCatalog::lookupFileByLFN
void lookupFileByLFN(const std::string &lfn, std::string &fid) const
Return the status of a LFName.
Definition: IFileCatalog.h:82
python.Dumpers.aname
string aname
Definition: Dumpers.py:5546
AtlCoolCopy::getCoolHistGUID
static std::string getCoolHistGUID(const std::string &file)
Definition: AtlCoolCopy.cxx:3267
dq_defect_copy_defect_database.since
def since
Definition: dq_defect_copy_defect_database.py:54
AtlCoolCopy::m_forcesingle
bool m_forcesingle
Definition: AtlCoolCopy.cxx:196
AtlCoolCopy::tagParents
int tagParents()
Definition: AtlCoolCopy.cxx:3036
python.checkMetadata.metadata
metadata
Definition: checkMetadata.py:175
AtlCoolCopy::m_gettime
bool m_gettime
Definition: AtlCoolCopy.cxx:209
AtlCoolCopy::checkRef
void checkRef(const cool::IRecord &payload, const std::string &folder, const std::string &tag)
Definition: AtlCoolCopy.cxx:2999
dq_defect_copy_defect_database.until
def until
Definition: dq_defect_copy_defect_database.py:55
AtlCoolCopy::m_checkrefs
bool m_checkrefs
Definition: AtlCoolCopy.cxx:186
ReplicaSorter.h
python.TileCalibTools.copyFolder
def copyFolder(dbr, dbw, folder, tagr, tagw, chanNum, pointInTime1, pointInTime2)
Definition: TileCalibTools.py:441
AtlCoolCopy::setupCatalog
static pool::IFileCatalog * setupCatalog(const std::vector< std::string > &catvec)
Definition: AtlCoolCopy.cxx:3320
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
AtlCoolCopy::m_poolrefs
PoolMap m_poolrefs
Definition: AtlCoolCopy.cxx:271
skel.input1
tuple input1
Definition: skel.GENtoEVGEN.py:750
main
int main(int, char **)
Main class for all the CppUnit test classes
Definition: CppUnit_SGtestdriver.cxx:141
AtlCoolCopy::m_nt_lbsince
UInt_t m_nt_lbsince
Definition: AtlCoolCopy.cxx:289
TRTCalib_cfilter.p2
p2
Definition: TRTCalib_cfilter.py:131
AtlCoolCopy::m_newrunemax
cool::ValidityKey m_newrunemax
Definition: AtlCoolCopy.cxx:227
CoraCoolObject::const_iterator
AttrListVec::const_iterator const_iterator
Definition: CoraCoolObject.h:23
AtlCoolCopy::m_nt_since
ULong64_t m_nt_since
Definition: AtlCoolCopy.cxx:285
histSizes.code
code
Definition: histSizes.py:129
tags
std::vector< std::string > tags
Definition: hcg.cxx:102
AtlCoolCopy::m_nohitag
bool m_nohitag
Definition: AtlCoolCopy.cxx:195
pool::IFileCatalog
Definition: IFileCatalog.h:23
rerun_display.lfn
lfn
Definition: rerun_display.py:60
AtlCoolCopy::m_open
bool m_open
Definition: AtlCoolCopy.cxx:267
CaloCondBlobAlgs_fillNoiseFromASCII.desc
desc
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:54
AtlCoolCopy::m_poolall
bool m_poolall
Definition: AtlCoolCopy.cxx:189
AtlCoolCopy::m_nt_runsince
UInt_t m_nt_runsince
Definition: AtlCoolCopy.cxx:287
ParseInputs.gDirectory
gDirectory
Definition: Final2012/ParseInputs.py:133
AtlCoolCopy::m_skiprep
bool m_skiprep
Definition: AtlCoolCopy.cxx:205
lumiFormat.i
int i
Definition: lumiFormat.py:85
AtlCoolCopy::CoolTagMap
std::map< std::string, CoolTagInfo > CoolTagMap
Definition: AtlCoolCopy.cxx:279
ReadCellNoiseFromCool.chan
chan
Definition: ReadCellNoiseFromCool.py:52
LArCellNtuple.argv
argv
Definition: LArCellNtuple.py:152
python.LArBadChannelDBAlg.xFFFFFFFF
xFFFFFFFF
Definition: LArBadChannelDBAlg.py:73
AtlCoolCopy::m_alliov
bool m_alliov
Definition: AtlCoolCopy.cxx:181
AtlCoolCopy::m_nt_until
ULong64_t m_nt_until
Definition: AtlCoolCopy.cxx:286
maskDeadModules.run1
run1
Definition: maskDeadModules.py:40
AtlCoolCopy::m_channelRange
std::vector< std::string > m_channelRange
Definition: AtlCoolCopy.cxx:232
AtlCoolCopy::m_channel2
std::string m_channel2
Definition: AtlCoolCopy.cxx:234
AtlCoolCopy::m_ignorespec
bool m_ignorespec
Definition: AtlCoolCopy.cxx:219
AtlCoolCopy::m_checkdesttag
bool m_checkdesttag
Definition: AtlCoolCopy.cxx:220
AtlCoolCopy::m_poolcat
std::vector< std::string > m_poolcat
Definition: AtlCoolCopy.cxx:265
pool::IFileCatalog::start
void start()
redirect to init() for Gaudi FC
Definition: IFileCatalog.h:45
PlotPulseshapeFromCool.input
input
Definition: PlotPulseshapeFromCool.py:106
calibdata.exception
exception
Definition: calibdata.py:496
res
std::pair< std::vector< unsigned int >, bool > res
Definition: JetGroupProductTest.cxx:14
AtlCoolCopy::m_sourceread
bool m_sourceread
Definition: AtlCoolCopy.cxx:202
AtlCoolCopy::m_debug
bool m_debug
Definition: AtlCoolCopy.cxx:180
file
TFile * file
Definition: tile_monitor.h:29
AtlCoolCopy::m_excludechans
std::vector< cool::ChannelId > m_excludechans
Definition: AtlCoolCopy.cxx:248
ISession.h
AtlCoolCopy::adjustIOVs
void adjustIOVs(const cool::ValidityKey &since, const cool::ValidityKey &until, const cool::ValidityKey &qsince, const cool::ValidityKey &quntil, cool::ValidityKey &newsince, cool::ValidityKey &newuntil, const bool timestamp) const
Definition: AtlCoolCopy.cxx:1291
AtlCoolCopy::m_outfolder
std::string m_outfolder
Definition: AtlCoolCopy.cxx:238
Preparation.mode
mode
Definition: Preparation.py:94
AtlCoolCopy::ATLAS_NOT_THREAD_SAFE
int copyIOVs ATLAS_NOT_THREAD_SAFE(const std::string &folder, const std::string &destfolder, const cool::IFolderPtr &sourcefl, const CoraCoolFolderPtr &sourceflc, const cool::IFolderPtr &destfl, const CoraCoolFolderPtr &destflc, const std::string &sourcetag, const std::string &desttag, const cool::ValidityKey since, const cool::ValidityKey until, bool timestamp, bool checkrefs, bool iscora, const cool::PayloadMode::Mode paymode, bool created)
pool::IFileCatalog::setWriteCatalog
void setWriteCatalog(const std::string &connect)
Access to the (first) writable file catalog.
run
Definition: run.py:1
AtlCoolCopy::m_lockedonly
bool m_lockedonly
Definition: AtlCoolCopy.cxx:214
DQHistogramMergeRegExp.argc
argc
Definition: DQHistogramMergeRegExp.py:20
xAOD::double
double
Definition: CompositeParticle_v1.cxx:159
PoolMapElement.h
AtlCoolCopy::m_coolapp
cool::Application m_coolapp
Definition: AtlCoolCopy.cxx:254
AtlCoolCopy::m_listpfn
bool m_listpfn
Definition: AtlCoolCopy.cxx:187
AtlCoolCopy::procOptVector
bool procOptVector(const int argc, const char *argv[], std::vector< std::string > &folders)
Definition: AtlCoolCopy.cxx:2132
AtlCoolCopy::m_forcerune
bool m_forcerune
Definition: AtlCoolCopy.cxx:198
AtlCoolCopy::m_sourceDbPtr
cool::IDatabasePtr m_sourceDbPtr
Definition: AtlCoolCopy.cxx:257
contents
void contents(std::vector< std::string > &keys, TDirectory *td, const std::string &directory, const std::string &pattern, const std::string &path)
Definition: computils.cxx:319
pool::IFileCatalog::connect
void connect()
Definition: IFileCatalog.h:39
CoraCoolFolderPtr
boost::shared_ptr< CoraCoolFolder > CoraCoolFolderPtr
Definition: CoraCoolTypes.h:15
AtlCoolCopy::m_runemax
cool::ValidityKey m_runemax
Definition: AtlCoolCopy.cxx:223
AtlCoolCopy::m_folderlist
std::vector< std::string > m_folderlist
Definition: AtlCoolCopy.cxx:261
AtlCoolCopy::m_poolopen
bool m_poolopen
Definition: AtlCoolCopy.cxx:188
AtlCoolCopy::m_runlist
std::vector< unsigned int > m_runlist
Definition: AtlCoolCopy.cxx:250
CxxUtils::atof
double atof(std::string_view str)
Converts a string into a double / float.
Definition: Control/CxxUtils/Root/StringUtils.cxx:91
pool_uuid.guid
guid
Definition: pool_uuid.py:112
grepfile.ic
int ic
Definition: grepfile.py:33
ReadCellNoiseFromCoolCompare.run2
run2
Definition: ReadCellNoiseFromCoolCompare.py:53
AtlCoolCopy::m_onlinerun
bool m_onlinerun
Definition: AtlCoolCopy.cxx:211
CoraCoolDatabasePtr
boost::shared_ptr< CoraCoolDatabase > CoraCoolDatabasePtr
Definition: CoraCoolTypes.h:12
CoraCoolFolder.h
AtlCoolCopy::m_sealmsg
int m_sealmsg
Definition: AtlCoolCopy.cxx:236
AtlCoolCopy::m_sourceCoraPtr
CoraCoolDatabasePtr m_sourceCoraPtr
Definition: AtlCoolCopy.cxx:259
AtlCoolCopy::m_applock
bool m_applock
Definition: AtlCoolCopy.cxx:206
AtlCoolCopy::ATLAS_NOT_THREAD_SAFE
int resolvePoolRefs ATLAS_NOT_THREAD_SAFE()
AtlCoolCopy::listPoolRefs
int listPoolRefs()
Definition: AtlCoolCopy.cxx:3109
AtlCoolCopy::PoolMap
std::map< std::string, PoolMapElement > PoolMap
Definition: AtlCoolCopy.cxx:269
AtlCoolCopy::checkChannels
bool checkChannels(const std::string &folder, const cool::IFolderPtr &sourcefl, const cool::IFolderPtr &destfl, bool newfolder)
Definition: AtlCoolCopy.cxx:2922
AtlCoolCopy::m_taglabel
std::string m_taglabel
Definition: AtlCoolCopy.cxx:243
AtlCoolCopy::m_timemin
cool::ValidityKey m_timemin
Definition: AtlCoolCopy.cxx:224
defineDB.ichan
int ichan
Definition: JetTagCalibration/share/defineDB.py:28
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:221
printHelp
void printHelp()
Definition: AtlCoolCopy.cxx:3346
AtlCoolCopy::m_destDbPtr
cool::IDatabasePtr m_destDbPtr
Definition: AtlCoolCopy.cxx:258
AtlCoolCopy::nocopyIOVs
int nocopyIOVs(const std::string &folder, const cool::IFolderPtr &sourcefl, const std::string &sourcetag, const cool::ValidityKey since, const cool::ValidityKey until, bool checkrefs)
Definition: AtlCoolCopy.cxx:1322
AtlCoolCopy::filePoolRefs
void filePoolRefs()
Definition: AtlCoolCopy.cxx:3283
AtlCoolCopy::m_nt_bufferptr
std::vector< void * > m_nt_bufferptr
Definition: AtlCoolCopy.cxx:294
AtlCoolCopy::getBulkRun
bool getBulkRun()
Definition: AtlCoolCopy.cxx:2782
EventContainers::Mode
Mode
Definition: IdentifiableContainerBase.h:13
pool::SimpleUtilityBase
Common base class for POOL utilities.
Definition: SimpleUtilityBase.h:23
AtlCoolCopy::HiTagMap
std::map< std::string, std::string > HiTagMap
Definition: AtlCoolCopy.cxx:273
AtlCoolCopy::m_runemin
cool::ValidityKey m_runemin
Definition: AtlCoolCopy.cxx:222
AtlCoolCopy::writeTagInfo
int writeTagInfo()
Definition: AtlCoolCopy.cxx:3098
AtlCoolCopy::m_prunetags
bool m_prunetags
Definition: AtlCoolCopy.cxx:213
AtlCoolCopy::p_rootfile
TFile * p_rootfile
Definition: AtlCoolCopy.cxx:282
mc.nskip
nskip
Definition: mc.PhPy8EG_Hto4l_NNLOPS_nnlo_30_ggH125_ZZ4l.py:41
AtlCoolCopy::m_bufsize
int m_bufsize
Definition: AtlCoolCopy.cxx:235
AtlCoolCopy::m_timedb
std::string m_timedb
Definition: AtlCoolCopy.cxx:242
AtlCoolCopy::m_analyse
bool m_analyse
Definition: AtlCoolCopy.cxx:185
AtlCoolCopy::m_poollast
PoolMap::iterator m_poollast
Definition: AtlCoolCopy.cxx:270
PixelModuleFeMask_create_db.payload
string payload
Definition: PixelModuleFeMask_create_db.py:69
AtlCoolCopy::m_tags
std::vector< std::string > m_tags
Definition: AtlCoolCopy.cxx:263
AtlCoolCopy::m_nochannel
bool m_nochannel
Definition: AtlCoolCopy.cxx:192
AtlCoolCopy::m_mergecat
std::vector< std::string > m_mergecat
Definition: AtlCoolCopy.cxx:266
pool::IFileCatalog::getFirstPFN
void getFirstPFN(const std::string &fid, std::string &pfn, std::string &tech) const
Get the first PFN + filetype for the given FID.
ir
int ir
counter of the current depth
Definition: fastadd.cxx:49
AtlCoolCopy::m_runinfohost
std::string m_runinfohost
Definition: AtlCoolCopy.cxx:244
CoolTagInfo
Definition: CoolTagInfo.h:16
DeMoAtlasDataLoss.runNumber
string runNumber
Definition: DeMoAtlasDataLoss.py:64
AtlCoolCopy::m_nt_tagid
char m_nt_tagid[256]
Definition: AtlCoolCopy.cxx:292
AtlCoolCopy::m_forcepay
bool m_forcepay
Definition: AtlCoolCopy.cxx:200
python.DataFormatRates.c2
c2
Definition: DataFormatRates.py:123
AtlCoolCopy::m_nodata
bool m_nodata
Definition: AtlCoolCopy.cxx:191
TileSynchronizeBch.copyall
copyall
Definition: TileSynchronizeBch.py:47
AtlCoolCopy::bookOrFindTH1F
static TH1F * bookOrFindTH1F(const std::string &hID, const std::string &htitle, const int chan, const float xlow, const float xhigh)
Definition: AtlCoolCopy.cxx:2079
AtlCoolCopy::m_runfile
std::vector< std::string > m_runfile
Definition: AtlCoolCopy.cxx:249
Athena::Status
Status
Athena specific StatusCode values.
Definition: AthStatusCode.h:22
CoraCoolObjectIterPtr
boost::shared_ptr< CoraCoolObjectIter > CoraCoolObjectIterPtr
Definition: CoraCoolTypes.h:21
CaloSwCorrections.time
def time(flags, cells_name, *args, **kw)
Definition: CaloSwCorrections.py:242
CaloCellTimeCorrFiller.foldertag
string foldertag
Definition: CaloCellTimeCorrFiller.py:21
makeDTCalibBlob_pickPhase.folders
folders
Definition: makeDTCalibBlob_pickPhase.py:346
AtlCoolCopy::addFolder
bool addFolder(const std::string &folder, const bool onlyTags)
Definition: AtlCoolCopy.cxx:461
Pythia8_RapidityOrderMPI.val
val
Definition: Pythia8_RapidityOrderMPI.py:14
AtlCoolCopy::m_cooltagmap
CoolTagMap m_cooltagmap
Definition: AtlCoolCopy.cxx:280
AtlCoolCopy::m_copytaginfo
bool m_copytaginfo
Definition: AtlCoolCopy.cxx:215
AtlCoolCopy::transConn
static std::string transConn(const std::string &inconn)
Definition: AtlCoolCopy.cxx:450
AtlCoolCopy::m_includehead
bool m_includehead
Definition: AtlCoolCopy.cxx:176
AtlCoolCopy::getRunList
bool getRunList()
Definition: AtlCoolCopy.cxx:2874
CoraCoolObjectPtr
boost::shared_ptr< CoraCoolObject > CoraCoolObjectPtr
Definition: CoraCoolTypes.h:18
AtlCoolCopy::m_newdataset
std::string m_newdataset
Definition: AtlCoolCopy.cxx:240
makeDTCalibBlob_pickPhase.outtag
string outtag
Definition: makeDTCalibBlob_pickPhase.py:286
AtlCoolCopy::m_nt_treename
std::string m_nt_treename
Definition: AtlCoolCopy.cxx:293
AtlCoolCopy::m_root
bool m_root
Definition: AtlCoolCopy.cxx:183
CoraCoolDatabase.h
CaloCondBlobAlgs_fillNoiseFromASCII.folder
folder
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:56
AtlCoolCopy::isOpen
bool isOpen() const
Definition: AtlCoolCopy.cxx:297
AtlCoolCopy::m_recreate
bool m_recreate
Definition: AtlCoolCopy.cxx:175
AtlCoolCopy::rootAllocate
bool rootAllocate(const cool::IFieldSpecification &spec, void *&sptr, char &rootID) const
Definition: AtlCoolCopy.cxx:1716
AtlCoolCopy::m_destCoraPtr
CoraCoolDatabasePtr m_destCoraPtr
Definition: AtlCoolCopy.cxx:260
CxxUtils::atoi
int atoi(std::string_view str)
Helper functions to unpack numbers decoded in string into integers and doubles The strings are requir...
Definition: Control/CxxUtils/Root/StringUtils.cxx:85
CoolTagInfo.h
CoraCoolObjectIter.h
WriteCallback
size_t WriteCallback(void *contents, size_t size, size_t nmemb, std::string *s)
Definition: AtlCoolCopy.cxx:65
AtlCoolCopy::m_nocopy
bool m_nocopy
Definition: AtlCoolCopy.cxx:190
python.TrigEgammaMonitorHelper.TH1F
def TH1F(name, title, nxbins, bins_par2, bins_par3=None, path='', **kwargs)
Definition: TrigEgammaMonitorHelper.py:24
LArCellNtuple.ifile
string ifile
Definition: LArCellNtuple.py:133
AtlCoolCopy::getLockedTags
bool getLockedTags()
Definition: AtlCoolCopy.cxx:430
AtlCoolCopy::m_nt_channel
UInt_t m_nt_channel
Definition: AtlCoolCopy.cxx:291
AtlCoolCopy::m_zeronull
bool m_zeronull
Definition: AtlCoolCopy.cxx:184
CaloCondBlobAlgs_fillNoiseFromASCII.tag
string tag
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:24
AtlCoolCopy::AtlCoolCopy
AtlCoolCopy(const std::string &sourcedb, const std::string &destdb, bool allowcreate=false)
Definition: AtlCoolCopy.cxx:301
AtlCoolCopy::m_noclobroot
bool m_noclobroot
Definition: AtlCoolCopy.cxx:221
AtlCoolCopy::setOpts
int setOpts(int argc, const char *argv[])
Definition: AtlCoolCopy.cxx:2379
AtlCoolCopy::m_addlfn
std::vector< std::string > m_addlfn
Definition: AtlCoolCopy.cxx:246
get_generator_info.error
error
Definition: get_generator_info.py:40
AtlCoolCopy::addExclude
bool addExclude(const std::string &folder)
Definition: AtlCoolCopy.cxx:529
AtlCoolCopy::m_anadelt
long long m_anadelt
Definition: AtlCoolCopy.cxx:237
checker_macros.h
Define macros for attributes used to control the static checker.
python.PyAthena.obj
obj
Definition: PyAthena.py:132
error
Definition: IImpactPoint3dEstimator.h:70
AtlCoolCopy::m_hiparent
std::vector< std::string > m_hiparent
Definition: AtlCoolCopy.cxx:276
Amg::distance
float distance(const Amg::Vector3D &p1, const Amg::Vector3D &p2)
calculates the distance between two point in 3D space
Definition: GeoPrimitivesHelpers.h:54
AtlCoolCopy::m_chdesc
bool m_chdesc
Definition: AtlCoolCopy.cxx:193
AtlCoolCopy::timeString
static std::string timeString(const cool::ValidityKey iovtime)
Definition: AtlCoolCopy.cxx:2573
AtlCoolCopy::rootIOVs
int rootIOVs(const std::string &folder, const cool::IFolderPtr &sourcefl, const std::string &sourcetag, const cool::ValidityKey since, const cool::ValidityKey until, const bool timestamp)
Definition: AtlCoolCopy.cxx:1551
pool::IFileCatalog::addReadCatalog
void addReadCatalog(const std::string &connect)
Add new catalog identified by name to the existing ones.
Definition: IFileCatalog.h:116
ReplicaSorter
Definition: Database/CoolConvUtilities/src/ReplicaSorter.h:12
readCCLHist.float
float
Definition: readCCLHist.py:83
AtlCoolCopy::m_folderexcl
std::vector< std::string > m_folderexcl
Definition: AtlCoolCopy.cxx:262
AtlCoolCopy::m_allowcreate
bool m_allowcreate
Definition: AtlCoolCopy.cxx:174
AtlCoolCopy::m_forcetime
bool m_forcetime
Definition: AtlCoolCopy.cxx:199
CaloCondBlobAlgs_fillNoiseFromASCII.blob
blob
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:96
AtlCoolCopy::getOnlineRun
bool getOnlineRun()
Definition: AtlCoolCopy.cxx:2694
PersistencySvcException.h
AtlCoolCopy::m_forcenopay
bool m_forcenopay
Definition: AtlCoolCopy.cxx:201
AtlCoolCopy::isNumeric
static bool isNumeric(const char *input)
Definition: AtlCoolCopy.cxx:2499
AtlCoolCopy::m_addguid
std::vector< std::string > m_addguid
Definition: AtlCoolCopy.cxx:245
AtlCoolCopy::openCoraCool
bool openCoraCool()
Definition: AtlCoolCopy.cxx:410
AtlCoolCopy::m_newtimemin
cool::ValidityKey m_newtimemin
Definition: AtlCoolCopy.cxx:228
PoolMapElement
Definition: PoolMapElement.h:14
pool::IFileCatalog::getLFNs
void getLFNs(const std::string &fid, Files &files) const
Get all logical names for a given FID. Return pairs <LFN,FID>
Definition: IFileCatalog.h:61