/[PAMELA software]/YodaProfiler/src/GLTables.cpp
ViewVC logotype

Diff of /YodaProfiler/src/GLTables.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.17 by mocchiut, Thu Nov 9 12:02:54 2006 UTC revision 1.23 by mocchiut, Wed Feb 14 10:54:59 2007 UTC
# Line 17  Line 17 
17  #include <GLTables.h>  #include <GLTables.h>
18  #include <sgp4.h>  #include <sgp4.h>
19  //  //
20    ClassImp(GL_TABLES);
21  ClassImp(GL_TRK_CALIB);  ClassImp(GL_TRK_CALIB);
22  ClassImp(GL_RUN);  ClassImp(GL_RUN);
23  ClassImp(GL_ROOT);  ClassImp(GL_ROOT);
# Line 28  ClassImp(GL_TLE); Line 29  ClassImp(GL_TLE);
29  //  //
30  using namespace std;  using namespace std;
31    
32    GL_TABLES::GL_TABLES(){
33    };
34    
35    GL_TABLES::GL_TABLES(TString host, TString user, TString psw){
36      fHost = new TString(host.Data());
37      fUser = new TString(user.Data());
38      fPsw = new TString(psw.Data());
39      fSet = true;
40      fNquery = 0;
41    };
42    
43    
44    void GL_TABLES::Set(TString host, TString user, TString psw){
45      fHost = new TString(host.Data());
46      fUser = new TString(user.Data());
47      fPsw = new TString(psw.Data());
48      fSet = true;
49      fNquery = 0;
50    };
51    
52    Bool_t GL_TABLES::IsConnected(TSQLServer *dbc){
53      //
54      //
55      //
56      if ( !fSet ){
57        return true;
58      };
59      //
60      //
61      //
62      //  printf(" host is %s \n",fHost->Data());
63      //
64      stringstream myquery;  
65      myquery.str("");
66      myquery << "show databases;";
67      dbc->Query(myquery.str().c_str());
68      fNquery++;
69      //
70      if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){
71        // is connected
72        return true;
73      } else {
74        //
75        printf(" WARNING: Lost connection to DB! try to recover... \n");
76        //
77        TString host = fHost->Data();
78        TString user = fUser->Data();
79        TString psw = fPsw->Data();
80        delete dbc;
81        dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
82        //
83        myquery.str("");
84        myquery << "show databases;";
85        dbc->Query(myquery.str().c_str());
86        fNquery++;
87        //
88        if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){
89          //
90          printf(" ...connection recovered, I can continue! \n");
91          //
92          myquery.str("");
93          myquery << "SET time_zone='+0:00'";
94          dbc->Query(myquery.str().c_str());
95          fNquery++;
96          myquery.str("");
97          myquery << "SET wait_timeout=173000;";
98          dbc->Query(myquery.str().c_str());      
99          fNquery++;
100          return true;
101        };
102      };
103      //
104      printf(" GLTABLES: connection is gone away, query will fail\n");
105      //
106      return false;
107      //
108    };
109    
110    void GL_TABLES::ResetCounters(){
111      fNquery = 0;
112    };
113    
114    void GL_TABLES::AddQ(){
115      if ( fSet ) fNquery++;
116    };
117    
118    UInt_t GL_TABLES::GetNqueries(){
119       UInt_t rn = 0;
120       rn += (UInt_t&)fNquery;
121       return(rn);
122    };
123    
124  GL_RUN::GL_RUN() {  GL_RUN::GL_RUN() {
125    ID                         = 0;    ID                         = 0;
126    ID_RUN_FRAG                = 0;    ID_RUN_FRAG                = 0;
# Line 161  GL_TIMESYNC::GL_TIMESYNC(){ Line 254  GL_TIMESYNC::GL_TIMESYNC(){
254    TYPE     = 0;    TYPE     = 0;
255  }  }
256    
 GL_TLE::GL_TLE(){  
 }  
   
257  // ****************************************************  // ****************************************************
258    
259  void GL_RUN::SetEV_FROM(UInt_t evfrom){  void GL_RUN::SetEV_FROM(UInt_t evfrom){
# Line 428  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 518  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
518    //    //
519    //  printf("1myquery is %s \n",myquery.str().c_str());    //  printf("1myquery is %s \n",myquery.str().c_str());
520    //    //
521      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
522      this->GetGLTABLES()->AddQ();
523    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
524    //    //
525    // retrieve this ID_TRASH    // retrieve this ID_TRASH
526    //    //
527    myquery.str("");    myquery.str("");
528    myquery << " SELECT ID_TRASH,ID_ROOT_L0,ID_ROOT_L2 FROM GL_RUN_TRASH ORDER BY ID_TRASH DESC LIMIT 1";      myquery << " SELECT ID_TRASH,ID_ROOT_L0,ID_ROOT_L2 FROM GL_RUN_TRASH ORDER BY ID_TRASH DESC LIMIT 1";  
529      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
530      this->GetGLTABLES()->AddQ();
531    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
532    //    //
533    UInt_t idtrash = 0;    UInt_t idtrash = 0;
# Line 455  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 549  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
549    //    //
550    //  printf("2myquery is %s \n",myquery.str().c_str());    //  printf("2myquery is %s \n",myquery.str().c_str());
551    //    //
552      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
553      this->GetGLTABLES()->AddQ();
554    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
555    //    //
556    Row = pResult->Next();          Row = pResult->Next();      
# Line 470  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 566  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
566    //    //
567    //  printf("3myquery is %s \n",myquery.str().c_str());    //  printf("3myquery is %s \n",myquery.str().c_str());
568    //    //
569      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
570      this->GetGLTABLES()->AddQ();
571    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
572    //    //
573    Row = pResult->Next();          Row = pResult->Next();      
# Line 486  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 584  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
584    //    //
585    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
586    //    //
587      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
588      this->GetGLTABLES()->AddQ();
589    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
590    //    //
591    myquery.str("");    myquery.str("");
# Line 495  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 595  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
595    //    //
596    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
597    //    //
598      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
599      this->GetGLTABLES()->AddQ();
600    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
601    //    //
602    myquery.str("");    myquery.str("");
# Line 505  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 607  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
607    //  printf("4myquery is %s \n",myquery.str().c_str());    //  printf("4myquery is %s \n",myquery.str().c_str());
608    //    //
609    //    //
610      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
611      this->GetGLTABLES()->AddQ();
612    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
613    //    //
614    myquery.str("");    myquery.str("");
# Line 515  Int_t GL_RUN::DeleteRun(TSQLServer *dbc, Line 619  Int_t GL_RUN::DeleteRun(TSQLServer *dbc,
619    //  printf("5myquery is %s \n",myquery.str().c_str());    //  printf("5myquery is %s \n",myquery.str().c_str());
620    //    //
621    //    //
622      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
623      this->GetGLTABLES()->AddQ();
624    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
625    //    //
626    return 0;    return 0;
# Line 546  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 652  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
652      //      //
653      printf(" qui? myquery is %s \n",myquery.str().c_str());      printf(" qui? myquery is %s \n",myquery.str().c_str());
654      //      //
655        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
656        this->GetGLTABLES()->AddQ();
657      pResult = dbc->Query(myquery.str().c_str());      pResult = dbc->Query(myquery.str().c_str());
658      //      //
659      Row = pResult->Next();            Row = pResult->Next();      
# Line 629  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 737  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
737    //    //
738    //  printf("5myquery is %s \n",myquery.str().c_str());    //  printf("5myquery is %s \n",myquery.str().c_str());
739    //    //
740      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
741      this->GetGLTABLES()->AddQ();
742    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
743    //    //
744    //    //
# Line 636  Int_t GL_RUN::RestoreRun(TSQLServer *dbc Line 746  Int_t GL_RUN::RestoreRun(TSQLServer *dbc
746    myquery << " DELETE FROM GL_RUN_TRASH where BELONGED_TO='GL_RUN_FRAGMENTS' AND ID=";    myquery << " DELETE FROM GL_RUN_TRASH where BELONGED_TO='GL_RUN_FRAGMENTS' AND ID=";
747    myquery << IDRUN << ";";    myquery << IDRUN << ";";
748    //    //
749      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
750      this->GetGLTABLES()->AddQ();
751    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
752    //    //
753    return 0;    return 0;
# Line 718  Int_t GL_RUN::Fill_GL_RUN(TSQLServer *db Line 830  Int_t GL_RUN::Fill_GL_RUN(TSQLServer *db
830    //    //
831    //  printf("myquery is %s \n",myquery.str().c_str());    //  printf("myquery is %s \n",myquery.str().c_str());
832    //    //
833      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
834      this->GetGLTABLES()->AddQ();
835    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
836    //    //
837    return 0;    return 0;
# Line 794  Int_t GL_RUN::Fill_GL_RUN_FRAGMENTS(TSQL Line 908  Int_t GL_RUN::Fill_GL_RUN_FRAGMENTS(TSQL
908    //    //
909    // printf("myquery is %s \n",myquery.str().c_str());    // printf("myquery is %s \n",myquery.str().c_str());
910    //    //
911      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
912      this->GetGLTABLES()->AddQ();
913    dbc->Query(myquery.str().c_str());    dbc->Query(myquery.str().c_str());
914    //    //
915    return 0;    return 0;
# Line 851  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T Line 967  Int_t GL_RUN::Query_GL_RUN(UInt_t run, T
967    myquery << " from GL_RUN where ID=" << run << ";";    myquery << " from GL_RUN where ID=" << run << ";";
968    //    //
969    //  printf(" myquery is %s \n",myquery.str().c_str());    //  printf(" myquery is %s \n",myquery.str().c_str());
970      if ( !this->IsConnected(dbc) ) return -57;  
971      this->AddQ();
972    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
973    //    //
974    //  printf(" getrowcount %i \n",pResult->GetRowCount());    //  printf(" getrowcount %i \n",pResult->GetRowCount());
# Line 949  Int_t GL_RUN::Query_GL_RUN_FRAGMENTS(TSt Line 1067  Int_t GL_RUN::Query_GL_RUN_FRAGMENTS(TSt
1067    //    //
1068    //  printf(" query is %s \n",myquery.str().c_str());    //  printf(" query is %s \n",myquery.str().c_str());
1069    //    //
1070      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1071      this->GetGLTABLES()->AddQ();
1072    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1073    if(!pResult->GetRowCount())return(-50);    if(!pResult->GetRowCount())return(-50);
1074    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1014  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id, Line 1134  Int_t GL_ROOT::Query_GL_ROOT(UInt_t id,
1134    myquery << ",NAME";    myquery << ",NAME";
1135    myquery << " from GL_ROOT where ID=" << id << ";";        myquery << " from GL_ROOT where ID=" << id << ";";    
1136    //    //
1137      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1138      this->GetGLTABLES()->AddQ();
1139    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1140    if(!pResult->GetRowCount())return (-51);    if(!pResult->GetRowCount())return (-51);
1141    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1050  Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(U Line 1172  Int_t GL_TRK_CALIB::Query_GL_TRK_CALIB(U
1172    myquery << "select ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,OBT2,PKT1,PKT2,BOOT_NUMBER,VALIDATION from GL_TRK_CALIB where FROM_TIME <= "<< time;    myquery << "select ID,ID_ROOT_L0,EV_ROOT_CALIBTRK1,EV_ROOT_CALIBTRK2,FROM_TIME,TO_TIME,OBT1,OBT2,PKT1,PKT2,BOOT_NUMBER,VALIDATION from GL_TRK_CALIB where FROM_TIME <= "<< time;
1173    myquery << " AND VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";          myquery << " AND VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";      
1174    //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1175      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1176      this->GetGLTABLES()->AddQ();
1177    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1178    if(!pResult->GetRowCount())return (-53);    if(!pResult->GetRowCount())return (-53);
1179    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1107  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1231  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1231    myquery << " ;";    myquery << " ;";
1232    //myquery << " and VALIDATION=1;";    //myquery << " and VALIDATION=1;";
1233    //    //
1234      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1235      this->GetGLTABLES()->AddQ();
1236    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1237    //  printf(" mysquery is %s\n",myquery.str().c_str());    //  printf(" mysquery is %s\n",myquery.str().c_str());
1238    //    //
# Line 1126  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB Line 1252  Int_t GL_CALO_CALIB::Query_GL_CALO_CALIB
1252      myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT,VALIDATION from GL_CALO_CALIB where SECTION=" << section;      myquery << "select ID_ROOT_L0, FROM_TIME, TO_TIME, EV_ROOT,VALIDATION from GL_CALO_CALIB where SECTION=" << section;
1253      myquery << " and FROM_TIME <= " << time;      myquery << " and FROM_TIME <= " << time;
1254      myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";      myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;";
1255        if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1256        this->GetGLTABLES()->AddQ();
1257      pResult = dbc->Query(myquery.str().c_str());      pResult = dbc->Query(myquery.str().c_str());
1258      //    printf(" mysquery is %s\n",myquery.str().c_str());      //    printf(" mysquery is %s\n",myquery.str().c_str());
1259      //      //
# Line 1168  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn Line 1296  Int_t GL_S4_CALIB::Query_GL_S4_CALIB(UIn
1296    myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time;    myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time;
1297    myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1298    //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";          //  myquery << " ORDER BY FROM_TIME DESC LIMIT 1;";      
1299      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1300      this->GetGLTABLES()->AddQ();
1301    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1302    if(!pResult->GetRowCount())return (-55);//throw -55;    if(!pResult->GetRowCount())return (-55);//throw -55;
1303    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1214  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti Line 1344  Int_t GL_PARAM::Query_GL_PARAM(UInt_t ti
1344    myquery << " and FROM_TIME <= " << time;    myquery << " and FROM_TIME <= " << time;
1345    myquery << " ORDER BY TO_TIME DESC LIMIT 1;";      myquery << " ORDER BY TO_TIME DESC LIMIT 1;";  
1346    //    //
1347      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1348      this->GetGLTABLES()->AddQ();
1349    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1350    if(!pResult->GetRowCount())return (-52);    if(!pResult->GetRowCount())return (-52);
1351    for( r=0; r < 1000; r++){    for( r=0; r < 1000; r++){
# Line 1267  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1399  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1399    TSQLRow *Row;    TSQLRow *Row;
1400    stringstream myquery;    stringstream myquery;
1401    stringstream rname;    stringstream rname;
1402      //  pcksList packetsNames;
1403      //  pcksList::iterator Iter;
1404      //  getPacketsNames(packetsNames);
1405    rname.str("");    rname.str("");
1406    // ----------------    // ----------------
1407    myquery.str("");    myquery.str("");
# Line 1277  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1412  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1412    myquery << type.Data();    myquery << type.Data();
1413    myquery << "=" << id << ";";        myquery << "=" << id << ";";    
1414    //    //
1415      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1416      this->GetGLTABLES()->AddQ();
1417    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1418    if( pResult->GetRowCount() ){    if( pResult->GetRowCount() ){
1419      Row = pResult->Next();            Row = pResult->Next();      
# Line 1300  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1437  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1437      ph = eh->GetPscuHeader();      ph = eh->GetPscuHeader();
1438      pktfirst = ph->GetCounter();      pktfirst = ph->GetCounter();
1439      obtfirst = ph->GetOrbitalTime();        obtfirst = ph->GetOrbitalTime();  
1440        //
1441    //     code = eh->GetCounter();
1442    //     UInt_t en = 0;
1443    //     for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){
1444    //       en = code->Get(GetPacketType(*Iter));
1445    //       if ( !strcmp("CalibCalPed",*Iter) || !strcmp("CalibTrk1",*Iter) || !strcmp("CalibTrk2",*Iter) || !strcmp("CalibS4",*Iter) ){
1446    //      //
1447    //      TTree *TC = 0;
1448    //      TC = (TTree*)file->Get("CalibCalPed");
1449    //      if ( !TC || TC->IsZombie() ) return;
1450    //      EventHeader *ehc = 0;
1451    //      PscuHeader *phc = 0;
1452    //      TC->SetBranchAddress("Header", &ehc);
1453    //      TC->GetEntry(0);
1454    //      phc = ehc->GetPscuHeader();
1455    //      pktfirst = phc->GetCounter();
1456    //      obtfirst = phc->GetOrbitalTime();  
1457    //       //
1458    //       };
1459    //     };  
1460        //
1461    };    };
1462    //    //
1463    // look for Resurs offset    // look for Resurs offset
# Line 1309  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1467  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1467    //    //
1468    stringstream oss;    stringstream oss;
1469    oss.str("");    oss.str("");
1470    oss << "SELECT OFFSET_DATE FROM GL_RESURS_OFFSET WHERE SPECIAL_FILE='"    oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE) FROM GL_RESURS_OFFSET WHERE SPECIAL_FILE='"
1471        << rname.str().c_str() << "';";        << rname.str().c_str() << "';";
1472    //  if ( IsDebug() ) printf(" %s \n",oss.str().c_str());    if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1473      this->GetGLTABLES()->AddQ();
1474    pResult = dbc->Query(oss.str().c_str());    pResult = dbc->Query(oss.str().c_str());
1475    Row = pResult->Next();    Row = pResult->Next();
1476    //    //
# Line 1330  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1489  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1489      for (Int_t i = 8; i<13; i++){      for (Int_t i = 8; i<13; i++){
1490        dwo.Append(name[i],1);        dwo.Append(name[i],1);
1491      };          };    
1492      if ( dwo.IsDigit() ) dworbit = (UInt_t)dwo.Atoi();      if ( dwo.IsDigit() ){
1493          dworbit = (UInt_t)dwo.Atoi();
1494        } else {
1495          dworbit = 1;
1496        };
1497    };    };
1498    // if ( IsDebug() ) printf(" Downlink orbit is %i (dwo = %s) \n",dworbit,dwo.Data());      //
1499    //    //
1500    if ( !Row ){    if ( !Row ){
1501      oss.str("");      oss.str("");
1502      oss << "SELECT OFFSET_DATE FROM GL_RESURS_OFFSET WHERE FROM_ORBIT< "      oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE) FROM GL_RESURS_OFFSET WHERE FROM_ORBIT< "
1503          << dworbit << " order by FROM_ORBIT desc limit 1;";          << dworbit << " order by FROM_ORBIT desc limit 1;";
1504      //    if ( IsDebug() ) printf(" %s \n",oss.str().c_str());      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1505        this->GetGLTABLES()->AddQ();
1506      pResult = dbc->Query(oss.str().c_str());      pResult = dbc->Query(oss.str().c_str());
1507      Row = pResult->Next();      Row = pResult->Next();
1508      if ( !Row ){      if ( !Row ){
# Line 1347  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1511  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1511      };      };
1512    };    };
1513    //    //
1514    //      TTimeStamp tu = TTimeStamp((UInt_t)atoi(Row->GetField(0)),(UInt_t)atoi(Row->GetField(1)),(UInt_t)atoi(Row->GetField(2)),(UInt_t)atoi(Row->GetField(3)),(UInt_t)atoi(Row->GetField(4)),(UInt_t)atoi(Row->GetField(5)),0,true,0);
   TDatime ti = TDatime(Row->GetField(0));  
   TTimeStamp tu = TTimeStamp((UInt_t)ti.GetYear(),(UInt_t)ti.GetMonth(),(UInt_t)ti.GetDay(),(UInt_t)ti.GetHour(),(UInt_t)ti.GetMinute(),(UInt_t)ti.GetSecond(),0,true,0);  
1515    T0 = (UInt_t)tu.GetSec();    T0 = (UInt_t)tu.GetSec();
1516    //    //
1517    // look for the correct timesync entry    // look for the correct timesync entry
# Line 1358  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr Line 1520  GL_TIMESYNC::GL_TIMESYNC(UInt_t id, TStr
1520    myquery << " SELECT OBT0,TIMESYNC,TYPE FROM GL_TIMESYNC "    myquery << " SELECT OBT0,TIMESYNC,TYPE FROM GL_TIMESYNC "
1521        << " WHERE ID_RAW = " << idraw        << " WHERE ID_RAW = " << idraw
1522        << ";";        << ";";
1523      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return;  
1524      this->GetGLTABLES()->AddQ();
1525    pResult = dbc->Query(myquery.str().c_str());    pResult = dbc->Query(myquery.str().c_str());
1526    if ( pResult ){    if ( pResult ){
1527      Row = pResult->Next();      Row = pResult->Next();
# Line 1391  UInt_t GL_TIMESYNC::DBabsTime(UInt_t OBT Line 1555  UInt_t GL_TIMESYNC::DBabsTime(UInt_t OBT
1555   */   */
1556  UInt_t GL_TIMESYNC::ResursTime(UInt_t OBT){    UInt_t GL_TIMESYNC::ResursTime(UInt_t OBT){  
1557    //    //
1558    return(((UInt_t)((this->DBobt(OBT)-this->DBobt(OBT0))/1000)+TIMESYNC));    return(((UInt_t)((Int_t)(this->DBobt(OBT)-this->DBobt(OBT0))/1000)+TIMESYNC));
1559    //    //
1560  };  };
1561    
1562    
1563  ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){    /**
1564     * Return the correct packet number if we went back to zero
1565     */
1566    Long64_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){  
1567    //    //
1568    if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((ULong64_t)(obt+numeric_limits<UInt_t>::max()));    if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2)  ){
1569        return((Long64_t)pkt_num+16777215LL);
1570      };
1571    //    //
1572    if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){    if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){
1573      if ( (obt-numeric_limits<UInt_t>::max()) < 0  ){      return((Long64_t)pkt_num-16777215LL);
       return((ULong64_t)(numeric_limits<UInt_t>::max()-obt));  
     } else {  
       return((ULong64_t)(obt-numeric_limits<UInt_t>::max()));  
     };  
1574    };    };
1575    //    //
1576    return((ULong64_t)obt);    return((Long64_t)pkt_num);
1577    //    //
1578  };  };
1579    
1580  UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){    /**
1581     * Return the correct On Board Time if we went back to zero
1582     */
1583    Long64_t GL_TIMESYNC::DBobt(UInt_t obt){  
1584    //    //
1585    if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2)  ) return((pkt_num+16777215));    if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((Long64_t)(obt+numeric_limits<UInt_t>::max()));
1586    //    //
1587    if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){    if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){
1588      if ( (pkt_num-16777215) < 0 ){      return((Long64_t)obt-(Long64_t)numeric_limits<UInt_t>::max());
       return((16777215-pkt_num));  
     } else {  
       return((pkt_num-16777215));  
     };  
1589    };    };
1590    //    //
1591    return(pkt_num);    return((Long64_t)obt);
   //  
1592  };  };
1593    
1594    
1595    
1596    // ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){  
1597    //   //
1598    //   if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((ULong64_t)(obt+numeric_limits<UInt_t>::max()));
1599    //   //
1600    //   if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){
1601    //     if ( (obt-numeric_limits<UInt_t>::max()) < 0  ){
1602    //       return((ULong64_t)(numeric_limits<UInt_t>::max()-obt));
1603    //     } else {
1604    //       return((ULong64_t)(obt-numeric_limits<UInt_t>::max()));
1605    //     };
1606    //   };
1607    //   //
1608    //   return((ULong64_t)obt);
1609    //   //
1610    // };
1611    
1612    // UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){  
1613    //   //
1614    //   if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2)  ) return((pkt_num+16777215));
1615    //   //
1616    //   if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){
1617    //     if ( (pkt_num-16777215) < 0 ){
1618    //       return((16777215-pkt_num));
1619    //     } else {
1620    //       return((pkt_num-16777215));
1621    //     };
1622    //   };
1623    //   //
1624    //   return(pkt_num);
1625    //   //
1626    // };
1627    
1628  /*  /*
1629   *   *
1630   * Convert the time in the DB from UInt_t to a string   * Convert the time in the DB from UInt_t to a string
# Line 1545  TString GL_TIMESYNC::UnConvertTime(TStri Line 1742  TString GL_TIMESYNC::UnConvertTime(TStri
1742  }  }
1743    
1744    
1745  // ****************************************************  //
1746  /**  // Build a query and call DoQuery.
1747   * Function to query the GL_TLE table of the DB.  //
1748   *  // date it's an SQL datetime date and dbc is the connection to be
1749   * time is the unix time for which a good tle is requested.  // used.  It will query for the tle with the nearest but previous date
1750   *  // and the immediatly next one.
1751   * Return the pointer to a cTle object that has the closest and  //
1752   * previous date compared with time.  Int_t GL_TLE::Query(TString date, TSQLServer *dbc){
  *  
  * If errors occurs it returns NULL.  
  */  
 cTle* GL_TLE::Query_GL_TLE(UInt_t time, TSQLServer *dbc){  
1753    stringstream myquery;    stringstream myquery;
1754    myquery.str("");    myquery.str("");
1755    
1756    myquery << "SELECT TLE1, TLE2, TLE3 FROM GL_TLE "    myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1757            << "WHERE FROM_TIME < FROM_UNIXTIME(" << time << ") ORDER BY FROM_TIME DESC LIMIT 1;";              << "WHERE FROM_TIME <= '" << date.Data()
1758              << "' ORDER BY FROM_TIME DESC LIMIT 1) "
1759              << "UNION "
1760              << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1761              << "WHERE FROM_TIME > '" << date.Data()
1762              << "' ORDER BY FROM_TIME ASC LIMIT 1)";
1763    
1764    return Query_GL_TLE_go(myquery.str(), dbc);    return DoQuery(myquery.str().c_str(), dbc);
1765  }  }
1766    
1767    
1768  // ****************************************************  //
1769  /**  // Build a query and call DoQuery.
1770   * Function to query the GL_TLE table of the DB.  //
1771   *  // time is the UTC date in unix time (UTC) and dbc is the connection
1772   * date is a datetime format YYYY-MM-DD hh:mm:ss for which a good tle  // to be used.  It will query for the tle with the nearest but
1773   * is requested.  // previous date and the immediatly next one.
1774   *  //
1775   * Return the pointer to a cTle object that has the closest and  // Returns the value returned by DoQuery().
1776   * previous date compared with time.  //
1777   *  Int_t GL_TLE::Query(UInt_t time, TSQLServer *dbc){
  * If errors occurs it returns NULL.  
  */  
 cTle* GL_TLE::Query_GL_TLE(TString date, TSQLServer *dbc){  
1778    stringstream myquery;    stringstream myquery;
1779    myquery.str("");    myquery.str("");
1780    
1781    myquery << "SELECT TLE1, TLE2, TLE3 FROM GL_TLE "    myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1782            << "WHERE FROM_TIME < '" << date.Data() << "' ORDER BY FROM_TIME DESC LIMIT 1;";              << "WHERE FROM_TIME <= FROM_UNIXTIME('" << time
1783              << "') ORDER BY FROM_TIME DESC LIMIT 1) "
1784              << "UNION "
1785              << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE "
1786              << "WHERE FROM_TIME > FROM_UNIXTIME('" << time
1787              << "') ORDER BY FROM_TIME ASC LIMIT 1)";
1788    
1789    return Query_GL_TLE_go(myquery.str(), dbc);    return DoQuery(myquery.str().c_str(), dbc);
1790  }  }
1791    
1792    
1793  // ****************************************************  //
1794  /**  // Do the query myquery on the connectio dbc.  Initialize tle,
1795   * Private function used by Query_GL_TLE methods.  // tleFromTime and tleToTime.
1796   *  //
1797   * myquery is the query string.  // We should have two rows (unless the table is old).  From the last
1798   *  // one we only take tleToTime.
1799   * Return the pointer to a cTle object that has the closest and  //
1800   * previous date compared with time.  // Returns 0 for success, 1 for failure.
1801   *  //
1802   * If errors occurs it returns NULL.  Int_t GL_TLE::DoQuery(TString myquery, TSQLServer *dbc){
  */  
 cTle* GL_TLE::Query_GL_TLE_go(TString myquery, TSQLServer *dbc){  
   cTle *tle;  
   string tle1, tle2, tle3;  
   
   // MySQL variables  
1803    TSQLResult *result;    TSQLResult *result;
1804    TSQLRow *row;    TSQLRow *row;
1805    
1806      // Set the right time_zone (otherwise horrible things will occur! :)
1807      dbc->Query("SET time_zone = '+0:00'");
1808    
1809      // Do the query
1810      if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57;  
1811      this->GetGLTABLES()->AddQ();
1812    result = dbc->Query(myquery.Data());    result = dbc->Query(myquery.Data());
1813    if(! result->GetRowCount() ) return NULL;    if(! result->GetRowCount() ) {
1814        cerr << "GL_TLE: query failed: " << myquery.Data() << endl;
1815        return 1;
1816      }
1817    
1818      // Get results
1819      row = result->Next(); // first tle row
1820      tle = GiveTle(row);
1821    
1822      tleFromTime = strtol(row->GetField(4), NULL, 10);
1823    
1824      row = result->Next(); // second tle row
1825      if(row)
1826        tleToTime = strtol(row->GetField(4), NULL, 10);
1827      else {
1828        cerr << "GL_TLE: Warning: using last avaible TLE. Please update GL_TLE table!\n";
1829        tleToTime = UINT_MAX;
1830      }
1831    
1832    row = result->Next();    delete row;
1833    tle1 = row->GetField(0);    delete result;
   tle2 = row->GetField(1);  
   tle3 = row->GetField(2);  
1834    
1835    tle = new cTle(tle1, tle2, tle3);    return 0;
1836    }
1837    
   delete result;  
   delete row;  
1838    
1839    return tle;  //
1840    // Build a cTle object from the GL_TLE row.
1841    //
1842    cTle* GL_TLE::GiveTle(TSQLRow *row) {
1843      cTle *thistle = NULL;
1844      string tle1, tle2, tle3;
1845    
1846      // Build cTle object
1847      tle1 = row->GetField(1);
1848      tle2 = row->GetField(2);
1849      tle3 = row->GetField(3);
1850    
1851      thistle = new cTle(tle1, tle2, tle3);
1852    
1853      return thistle;
1854  }  }

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.23

  ViewVC Help
Powered by ViewVC 1.1.23