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); |
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 |
|
mh = host.Data(); |
42 |
|
mu = user.Data(); |
43 |
|
mp = psw.Data(); |
44 |
|
}; |
45 |
|
|
46 |
|
|
47 |
|
void GL_TABLES::Set(TString host, TString user, TString psw){ |
48 |
|
fHost = new TString(host.Data()); |
49 |
|
fUser = new TString(user.Data()); |
50 |
|
fPsw = new TString(psw.Data()); |
51 |
|
fSet = true; |
52 |
|
fNquery = 0; |
53 |
|
mh = host.Data(); |
54 |
|
mu = user.Data(); |
55 |
|
mp = psw.Data(); |
56 |
|
}; |
57 |
|
|
58 |
|
Bool_t GL_TABLES::IsConnected(TSQLServer *&dbc){ |
59 |
|
// |
60 |
|
// |
61 |
|
// |
62 |
|
if ( !fSet ){ |
63 |
|
return true; |
64 |
|
}; |
65 |
|
// |
66 |
|
// |
67 |
|
// |
68 |
|
// printf(" host is %s \n",fHost->Data()); |
69 |
|
// |
70 |
|
stringstream myquery; |
71 |
|
myquery.str(""); |
72 |
|
myquery << "show databases;"; |
73 |
|
if ( dbc ){ |
74 |
|
if ( dbc->IsConnected() ){ |
75 |
|
dbc->Query(myquery.str().c_str()); |
76 |
|
fNquery++; |
77 |
|
if ( !(dbc->GetErrorCode()) ){ |
78 |
|
// printf("ok\n"); |
79 |
|
// |
80 |
|
// if ( (dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006) ){ |
81 |
|
// if ( !(dbc->GetErrorCode()) ){ |
82 |
|
// is connected |
83 |
|
return true; |
84 |
|
// }; |
85 |
|
}; |
86 |
|
}; |
87 |
|
}; |
88 |
|
// printf("porca di quella \n"); |
89 |
|
if ( true ) { |
90 |
|
// |
91 |
|
printf(" WARNING: Lost connection to DB! try to recover... \n"); |
92 |
|
// |
93 |
|
TString host = fHost->Data(); |
94 |
|
TString user = fUser->Data(); |
95 |
|
TString psw = fPsw->Data(); |
96 |
|
delete dbc; |
97 |
|
dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
98 |
|
// |
99 |
|
myquery.str(""); |
100 |
|
myquery << "show databases;"; |
101 |
|
dbc->Query(myquery.str().c_str()); |
102 |
|
fNquery++; |
103 |
|
// printf(" e riporca di quella \n"); |
104 |
|
// |
105 |
|
// if ( dbc->GetErrorCode() != 2013 && dbc->GetErrorCode() != 2006 ){ |
106 |
|
if ( !(dbc->GetErrorCode()) ){ |
107 |
|
// |
108 |
|
printf(" ...connection recovered, I can continue! \n"); |
109 |
|
// |
110 |
|
myquery.str(""); |
111 |
|
myquery << "SET time_zone='+0:00'"; |
112 |
|
dbc->Query(myquery.str().c_str()); |
113 |
|
fNquery++; |
114 |
|
myquery.str(""); |
115 |
|
myquery << "SET wait_timeout=173000;"; |
116 |
|
dbc->Query(myquery.str().c_str()); |
117 |
|
fNquery++; |
118 |
|
return true; |
119 |
|
}; |
120 |
|
}; |
121 |
|
// |
122 |
|
printf(" GLTABLES: connection is gone away, query will fail\n"); |
123 |
|
// |
124 |
|
return false; |
125 |
|
// |
126 |
|
}; |
127 |
|
|
128 |
|
void GL_TABLES::ResetCounters(){ |
129 |
|
fNquery = 0; |
130 |
|
}; |
131 |
|
|
132 |
|
void GL_TABLES::AddQ(){ |
133 |
|
if ( fSet ) fNquery++; |
134 |
|
}; |
135 |
|
|
136 |
|
UInt_t GL_TABLES::GetNqueries(){ |
137 |
|
UInt_t rn = 0; |
138 |
|
rn += (UInt_t&)fNquery; |
139 |
|
return(rn); |
140 |
|
}; |
141 |
|
|
142 |
GL_RUN::GL_RUN() { |
GL_RUN::GL_RUN() { |
143 |
ID = 0; |
ID = 0; |
144 |
ID_RUN_FRAG = 0; |
ID_RUN_FRAG = 0; |
264 |
GL_TIMESYNC::GL_TIMESYNC(){ |
GL_TIMESYNC::GL_TIMESYNC(){ |
265 |
obtfirst = 0; |
obtfirst = 0; |
266 |
pktfirst = 0; |
pktfirst = 0; |
267 |
toffset = 0; |
ID_RESURS_OFFSET = 0; |
268 |
ID = 0; |
ID = 0; |
269 |
ID_RAW = 0; |
ID_RAW = 0; |
270 |
OBT0 = 0; |
OBT0 = 0; |
272 |
TYPE = 0; |
TYPE = 0; |
273 |
} |
} |
274 |
|
|
|
GL_TLE::GL_TLE(){ |
|
|
} |
|
|
|
|
275 |
// **************************************************** |
// **************************************************** |
276 |
|
|
277 |
void GL_RUN::SetEV_FROM(UInt_t evfrom){ |
void GL_RUN::SetEV_FROM(UInt_t evfrom){ |
536 |
// |
// |
537 |
// printf("1myquery is %s \n",myquery.str().c_str()); |
// printf("1myquery is %s \n",myquery.str().c_str()); |
538 |
// |
// |
539 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
540 |
|
this->GetGLTABLES()->AddQ(); |
541 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
542 |
// |
// |
543 |
// retrieve this ID_TRASH |
// retrieve this ID_TRASH |
544 |
// |
// |
545 |
myquery.str(""); |
myquery.str(""); |
546 |
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"; |
547 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
548 |
|
this->GetGLTABLES()->AddQ(); |
549 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
550 |
// |
// |
551 |
UInt_t idtrash = 0; |
UInt_t idtrash = 0; |
567 |
// |
// |
568 |
// printf("2myquery is %s \n",myquery.str().c_str()); |
// printf("2myquery is %s \n",myquery.str().c_str()); |
569 |
// |
// |
570 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
571 |
|
this->GetGLTABLES()->AddQ(); |
572 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
573 |
// |
// |
574 |
Row = pResult->Next(); |
Row = pResult->Next(); |
584 |
// |
// |
585 |
// printf("3myquery is %s \n",myquery.str().c_str()); |
// printf("3myquery is %s \n",myquery.str().c_str()); |
586 |
// |
// |
587 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
588 |
|
this->GetGLTABLES()->AddQ(); |
589 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
590 |
// |
// |
591 |
Row = pResult->Next(); |
Row = pResult->Next(); |
602 |
// |
// |
603 |
// printf("4myquery is %s \n",myquery.str().c_str()); |
// printf("4myquery is %s \n",myquery.str().c_str()); |
604 |
// |
// |
605 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
606 |
|
this->GetGLTABLES()->AddQ(); |
607 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
608 |
// |
// |
609 |
myquery.str(""); |
myquery.str(""); |
613 |
// |
// |
614 |
// printf("4myquery is %s \n",myquery.str().c_str()); |
// printf("4myquery is %s \n",myquery.str().c_str()); |
615 |
// |
// |
616 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
617 |
|
this->GetGLTABLES()->AddQ(); |
618 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
619 |
// |
// |
620 |
myquery.str(""); |
myquery.str(""); |
625 |
// printf("4myquery is %s \n",myquery.str().c_str()); |
// printf("4myquery is %s \n",myquery.str().c_str()); |
626 |
// |
// |
627 |
// |
// |
628 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
629 |
|
this->GetGLTABLES()->AddQ(); |
630 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
631 |
// |
// |
632 |
myquery.str(""); |
myquery.str(""); |
637 |
// printf("5myquery is %s \n",myquery.str().c_str()); |
// printf("5myquery is %s \n",myquery.str().c_str()); |
638 |
// |
// |
639 |
// |
// |
640 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
641 |
|
this->GetGLTABLES()->AddQ(); |
642 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
643 |
// |
// |
644 |
return 0; |
return 0; |
670 |
// |
// |
671 |
printf(" qui? myquery is %s \n",myquery.str().c_str()); |
printf(" qui? myquery is %s \n",myquery.str().c_str()); |
672 |
// |
// |
673 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
674 |
|
this->GetGLTABLES()->AddQ(); |
675 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
676 |
// |
// |
677 |
Row = pResult->Next(); |
Row = pResult->Next(); |
755 |
// |
// |
756 |
// printf("5myquery is %s \n",myquery.str().c_str()); |
// printf("5myquery is %s \n",myquery.str().c_str()); |
757 |
// |
// |
758 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
759 |
|
this->GetGLTABLES()->AddQ(); |
760 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
761 |
// |
// |
762 |
// |
// |
764 |
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="; |
765 |
myquery << IDRUN << ";"; |
myquery << IDRUN << ";"; |
766 |
// |
// |
767 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
768 |
|
this->GetGLTABLES()->AddQ(); |
769 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
770 |
// |
// |
771 |
return 0; |
return 0; |
848 |
// |
// |
849 |
// printf("myquery is %s \n",myquery.str().c_str()); |
// printf("myquery is %s \n",myquery.str().c_str()); |
850 |
// |
// |
851 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
852 |
|
this->GetGLTABLES()->AddQ(); |
853 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
854 |
// |
// |
855 |
return 0; |
return 0; |
926 |
// |
// |
927 |
// printf("myquery is %s \n",myquery.str().c_str()); |
// printf("myquery is %s \n",myquery.str().c_str()); |
928 |
// |
// |
929 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
930 |
|
this->GetGLTABLES()->AddQ(); |
931 |
dbc->Query(myquery.str().c_str()); |
dbc->Query(myquery.str().c_str()); |
932 |
// |
// |
933 |
return 0; |
return 0; |
985 |
myquery << " from GL_RUN where ID=" << run << ";"; |
myquery << " from GL_RUN where ID=" << run << ";"; |
986 |
// |
// |
987 |
// printf(" myquery is %s \n",myquery.str().c_str()); |
// printf(" myquery is %s \n",myquery.str().c_str()); |
988 |
|
if ( !this->IsConnected(dbc) ) return -57; |
989 |
|
this->AddQ(); |
990 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
991 |
// |
// |
992 |
// printf(" getrowcount %i \n",pResult->GetRowCount()); |
// printf(" getrowcount %i \n",pResult->GetRowCount()); |
1085 |
// |
// |
1086 |
// printf(" query is %s \n",myquery.str().c_str()); |
// printf(" query is %s \n",myquery.str().c_str()); |
1087 |
// |
// |
1088 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1089 |
|
this->GetGLTABLES()->AddQ(); |
1090 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1091 |
if(!pResult->GetRowCount())return(-50); |
if(!pResult->GetRowCount())return(-50); |
1092 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1152 |
myquery << ",NAME"; |
myquery << ",NAME"; |
1153 |
myquery << " from GL_ROOT where ID=" << id << ";"; |
myquery << " from GL_ROOT where ID=" << id << ";"; |
1154 |
// |
// |
1155 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1156 |
|
this->GetGLTABLES()->AddQ(); |
1157 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1158 |
if(!pResult->GetRowCount())return (-51); |
if(!pResult->GetRowCount())return (-51); |
1159 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1163 |
if(t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
if(t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
1164 |
if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t)); |
if(t==1) ID_RAW = (UInt_t)atoll(Row->GetField(t)); |
1165 |
if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
if(t==2) ID_TIMESYNC = (UInt_t)atoll(Row->GetField(t)); |
1166 |
if(t==3) PATH = Row->GetField(t); |
if(t==3) PATH = (TString)gSystem->ExpandPathName(Row->GetField(t))+'/'; |
1167 |
if(t==4) NAME = Row->GetField(t); |
if(t==4) NAME = Row->GetField(t); |
1168 |
}; |
}; |
1169 |
}; |
}; |
1188 |
// ---------------- |
// ---------------- |
1189 |
myquery.str(""); |
myquery.str(""); |
1190 |
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; |
1191 |
myquery << " AND VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;"; |
// myquery << " AND VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;"; // RIVEDERE LA VALIDAZIONE!!! |
1192 |
|
myquery << " and EV_ROOT_CALIBTRK1>=0 and EV_ROOT_CALIBTRK2>=0 "; // EM! SE MANCA UN PACCHETTO DEI DUE IL PROCESSAMENTO CRASHA... DA RIVEDERE LA VALIDAZIONE |
1193 |
|
myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
1194 |
// myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
// myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
1195 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1196 |
|
this->GetGLTABLES()->AddQ(); |
1197 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1198 |
if(!pResult->GetRowCount())return (-53); |
if(!pResult->GetRowCount())return (-53); |
1199 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1251 |
myquery << " ;"; |
myquery << " ;"; |
1252 |
//myquery << " and VALIDATION=1;"; |
//myquery << " and VALIDATION=1;"; |
1253 |
// |
// |
1254 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1255 |
|
this->GetGLTABLES()->AddQ(); |
1256 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1257 |
// printf(" mysquery is %s\n",myquery.str().c_str()); |
// printf(" mysquery is %s\n",myquery.str().c_str()); |
1258 |
// |
// |
1272 |
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; |
1273 |
myquery << " and FROM_TIME <= " << time; |
myquery << " and FROM_TIME <= " << time; |
1274 |
myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;"; |
myquery << " and VALIDATION=1 ORDER BY FROM_TIME DESC LIMIT 1;"; |
1275 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1276 |
|
this->GetGLTABLES()->AddQ(); |
1277 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1278 |
// printf(" mysquery is %s\n",myquery.str().c_str()); |
// printf(" mysquery is %s\n",myquery.str().c_str()); |
1279 |
// |
// |
1316 |
myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time; |
myquery << "select * from GL_S4_CALIB where FROM_TIME <= "<< time; |
1317 |
myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
1318 |
// myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
// myquery << " ORDER BY FROM_TIME DESC LIMIT 1;"; |
1319 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1320 |
|
this->GetGLTABLES()->AddQ(); |
1321 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1322 |
if(!pResult->GetRowCount())return (-55);//throw -55; |
if(!pResult->GetRowCount())return (-55);//throw -55; |
1323 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1358 |
// ---------------- |
// ---------------- |
1359 |
myquery.str(""); |
myquery.str(""); |
1360 |
myquery << " select "; |
myquery << " select "; |
1361 |
myquery << " ID, PATH, NAME, DESCR, TYPE, FROM_TIME,TO_TIME "; |
myquery << " ID, PATH, NAME, DESCR, FROM_TIME,TO_TIME, TYPE "; |
1362 |
myquery << " from GL_PARAM "; |
myquery << " from GL_PARAM "; |
1363 |
myquery << " where TYPE = '"<<type<<"' "; |
myquery << " where TYPE = '"<<type<<"' "; |
1364 |
myquery << " and FROM_TIME <= " << time; |
myquery << " and FROM_TIME <= " << time; |
1365 |
myquery << " ORDER BY TO_TIME DESC LIMIT 1;"; |
myquery << " ORDER BY TO_TIME DESC LIMIT 1;"; |
1366 |
// |
// |
1367 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1368 |
|
this->GetGLTABLES()->AddQ(); |
1369 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1370 |
if(!pResult->GetRowCount())return (-52); |
if(!pResult->GetRowCount())return (-52); |
1371 |
for( r=0; r < 1000; r++){ |
for( r=0; r < 1000; r++){ |
1373 |
if( Row == NULL ) break; |
if( Row == NULL ) break; |
1374 |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
for( t = 0; t < pResult->GetFieldCount(); t++){ |
1375 |
if (t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
if (t==0) ID = (UInt_t)atoll(Row->GetField(t)); |
1376 |
if (t==1) PATH = Row->GetField(t);// put in fpath the path to that file |
if (t==1) PATH = (TString)gSystem->ExpandPathName(Row->GetField(t))+'/';// put in fpath the path to that file |
1377 |
if (t==2) NAME = Row->GetField(t); |
if (t==2) NAME = Row->GetField(t); |
1378 |
if (t==3) DESCR = Row->GetField(t); |
if (t==3) DESCR = Row->GetField(t); |
1379 |
if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t)); |
if (t==4) FROM_TIME = (UInt_t)atoll(Row->GetField(t)); |
1419 |
TSQLRow *Row; |
TSQLRow *Row; |
1420 |
stringstream myquery; |
stringstream myquery; |
1421 |
stringstream rname; |
stringstream rname; |
1422 |
|
// pcksList packetsNames; |
1423 |
|
// pcksList::iterator Iter; |
1424 |
|
// getPacketsNames(packetsNames); |
1425 |
rname.str(""); |
rname.str(""); |
1426 |
// ---------------- |
// ---------------- |
1427 |
myquery.str(""); |
myquery.str(""); |
1432 |
myquery << type.Data(); |
myquery << type.Data(); |
1433 |
myquery << "=" << id << ";"; |
myquery << "=" << id << ";"; |
1434 |
// |
// |
1435 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1436 |
|
this->GetGLTABLES()->AddQ(); |
1437 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1438 |
if( pResult->GetRowCount() ){ |
if( pResult->GetRowCount() ){ |
1439 |
Row = pResult->Next(); |
Row = pResult->Next(); |
1440 |
if( Row ){ |
if( Row ){ |
1441 |
stringstream fname; |
stringstream fname; |
1442 |
fname.str(""); |
fname.str(""); |
1443 |
fname << Row->GetField(0) << "/" << Row->GetField(1); |
fname << gSystem->ExpandPathName(Row->GetField(0)) << "/" << Row->GetField(1); |
1444 |
rname << Row->GetField(1); |
rname << Row->GetField(1); |
1445 |
file = new TFile(fname.str().c_str(),"READ"); |
file = new TFile(fname.str().c_str(),"READ"); |
1446 |
idraw = (UInt_t)atoll(Row->GetField(2)); |
idraw = (UInt_t)atoll(Row->GetField(2)); |
1457 |
ph = eh->GetPscuHeader(); |
ph = eh->GetPscuHeader(); |
1458 |
pktfirst = ph->GetCounter(); |
pktfirst = ph->GetCounter(); |
1459 |
obtfirst = ph->GetOrbitalTime(); |
obtfirst = ph->GetOrbitalTime(); |
1460 |
|
// |
1461 |
|
// code = eh->GetCounter(); |
1462 |
|
// UInt_t en = 0; |
1463 |
|
// for(Iter = packetsNames.begin(); Iter != packetsNames.end(); Iter++){ |
1464 |
|
// en = code->Get(GetPacketType(*Iter)); |
1465 |
|
// if ( !strcmp("CalibCalPed",*Iter) || !strcmp("CalibTrk1",*Iter) || !strcmp("CalibTrk2",*Iter) || !strcmp("CalibS4",*Iter) ){ |
1466 |
|
// // |
1467 |
|
// TTree *TC = 0; |
1468 |
|
// TC = (TTree*)file->Get("CalibCalPed"); |
1469 |
|
// if ( !TC || TC->IsZombie() ) return; |
1470 |
|
// EventHeader *ehc = 0; |
1471 |
|
// PscuHeader *phc = 0; |
1472 |
|
// TC->SetBranchAddress("Header", &ehc); |
1473 |
|
// TC->GetEntry(0); |
1474 |
|
// phc = ehc->GetPscuHeader(); |
1475 |
|
// pktfirst = phc->GetCounter(); |
1476 |
|
// obtfirst = phc->GetOrbitalTime(); |
1477 |
|
// // |
1478 |
|
// }; |
1479 |
|
// }; |
1480 |
|
// |
1481 |
}; |
}; |
1482 |
// |
// |
1483 |
// look for Resurs offset |
// look for Resurs offset |
1484 |
// |
// |
1485 |
UInt_t t0 = 0; |
T0 = 0; |
1486 |
// |
// |
1487 |
// |
// |
1488 |
stringstream oss; |
stringstream oss; |
1489 |
|
TString frn = rname.str().c_str(); |
1490 |
|
frn = frn.ReplaceAll(".root",5,".pam",4); |
1491 |
oss.str(""); |
oss.str(""); |
1492 |
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='" |
1493 |
<< rname.str().c_str() << "';"; |
<< frn.Data() << "';"; |
1494 |
// if ( IsDebug() ) printf(" %s \n",oss.str().c_str()); |
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1495 |
|
this->GetGLTABLES()->AddQ(); |
1496 |
pResult = dbc->Query(oss.str().c_str()); |
pResult = dbc->Query(oss.str().c_str()); |
1497 |
Row = pResult->Next(); |
Row = pResult->Next(); |
1498 |
// |
// |
1499 |
TString name=rname.str().c_str(); |
TString name=rname.str().c_str(); |
1500 |
UInt_t dworbit = 0; |
UInt_t dworbit = 0; |
1501 |
Int_t nlength = name.Length(); |
Int_t nlength = name.Length(); |
1502 |
if ( nlength < 5 ) return; |
// |
1503 |
TString dwo = 0; |
// Is not a special file |
|
for (Int_t i = 0; i<5; i++){ |
|
|
dwo.Append(name[i],1); |
|
|
}; |
|
|
if ( dwo.IsDigit() ){ |
|
|
dworbit = (UInt_t)dwo.Atoi(); |
|
|
} else { |
|
|
dwo=""; |
|
|
for (Int_t i = 8; i<13; i++){ |
|
|
dwo.Append(name[i],1); |
|
|
}; |
|
|
if ( dwo.IsDigit() ) dworbit = (UInt_t)dwo.Atoi(); |
|
|
}; |
|
|
// if ( IsDebug() ) printf(" Downlink orbit is %i (dwo = %s) \n",dworbit,dwo.Data()); |
|
1504 |
// |
// |
1505 |
if ( !Row ){ |
if ( !Row ){ |
1506 |
|
delete pResult; |
1507 |
|
// |
1508 |
|
// New code, we have one more column on GL_TIMESYNC so we can trust that one for the Resurs offset |
1509 |
|
// |
1510 |
oss.str(""); |
oss.str(""); |
1511 |
oss << "SELECT OFFSET_DATE FROM GL_RESURS_OFFSET WHERE FROM_ORBIT< " |
oss << "SELECT ID_RESURS_OFFSET from GL_TIMESYNC where ID_RAW=" << idraw <<";"; |
1512 |
<< dworbit << " order by FROM_ORBIT desc limit 1;"; |
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1513 |
// if ( IsDebug() ) printf(" %s \n",oss.str().c_str()); |
this->GetGLTABLES()->AddQ(); |
1514 |
pResult = dbc->Query(oss.str().c_str()); |
pResult = dbc->Query(oss.str().c_str()); |
1515 |
Row = pResult->Next(); |
Bool_t fndit = false; |
1516 |
if ( !Row ){ |
if ( pResult ){ |
1517 |
printf(" ERROR FROM GLTables! cannot determine Resurs offset \n"); |
Row = pResult->Next(); |
1518 |
return; |
if ( Row ){ |
1519 |
|
oss.str(""); |
1520 |
|
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 ID=" |
1521 |
|
<< Row->GetField(0) << ";"; |
1522 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1523 |
|
this->GetGLTABLES()->AddQ(); |
1524 |
|
pResult = dbc->Query(oss.str().c_str()); |
1525 |
|
if ( pResult ){ |
1526 |
|
Row = pResult->Next(); |
1527 |
|
if ( Row ){ |
1528 |
|
printf(" GREAT! the DB structure is the new one! \n"); |
1529 |
|
fndit = true; |
1530 |
|
dworbit = 1; |
1531 |
|
}; |
1532 |
|
}; |
1533 |
|
}; |
1534 |
|
}; |
1535 |
|
if ( !fndit ){ |
1536 |
|
delete pResult; |
1537 |
|
// |
1538 |
|
printf(" OK, you got an error because this is the old database\n Using backward compability code, hence you can continue safetly \n"); |
1539 |
|
// |
1540 |
|
// Old code, we must trust the filename |
1541 |
|
// |
1542 |
|
if ( nlength < 5 ) return; |
1543 |
|
TString dwo = 0; |
1544 |
|
for (Int_t i = 0; i<5; i++){ |
1545 |
|
dwo.Append(name[i],1); |
1546 |
|
}; |
1547 |
|
if ( dwo.IsDigit() ){ |
1548 |
|
dworbit = (UInt_t)dwo.Atoi(); |
1549 |
|
} else { |
1550 |
|
dwo=""; |
1551 |
|
for (Int_t i = 8; i<13; i++){ |
1552 |
|
dwo.Append(name[i],1); |
1553 |
|
}; |
1554 |
|
if ( dwo.IsDigit() ){ |
1555 |
|
dworbit = (UInt_t)dwo.Atoi(); |
1556 |
|
} else { |
1557 |
|
dworbit = 1; |
1558 |
|
}; |
1559 |
|
}; |
1560 |
|
// |
1561 |
|
oss.str(""); |
1562 |
|
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< " |
1563 |
|
<< dworbit << " order by FROM_ORBIT desc limit 1;"; |
1564 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1565 |
|
this->GetGLTABLES()->AddQ(); |
1566 |
|
pResult = dbc->Query(oss.str().c_str()); |
1567 |
|
Row = pResult->Next(); |
1568 |
|
if ( !Row ){ |
1569 |
|
printf(" ERROR FROM GLTables! cannot determine Resurs offset \n"); |
1570 |
|
return; |
1571 |
|
}; |
1572 |
}; |
}; |
1573 |
}; |
}; |
1574 |
// |
// |
1575 |
// |
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); |
1576 |
TDatime ti = TDatime(Row->GetField(0)); |
T0 = (UInt_t)tu.GetSec(); |
|
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); |
|
|
t0 = (UInt_t)tu.GetSec(); |
|
1577 |
// |
// |
1578 |
// look for the correct timesync entry |
// look for the correct timesync entry |
1579 |
// |
// |
1580 |
myquery.str(""); |
myquery.str(""); |
1581 |
myquery << " SELECT OBT0,TIMESYNC FROM GL_TIMESYNC " |
myquery << " SELECT OBT0,TIMESYNC,TYPE FROM GL_TIMESYNC " |
1582 |
<< " WHERE ID_RAW = " << idraw |
<< " WHERE ID_RAW = " << idraw |
1583 |
<< ";"; |
<< ";"; |
1584 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return; |
1585 |
|
this->GetGLTABLES()->AddQ(); |
1586 |
pResult = dbc->Query(myquery.str().c_str()); |
pResult = dbc->Query(myquery.str().c_str()); |
1587 |
if ( pResult ){ |
if ( pResult ){ |
1588 |
Row = pResult->Next(); |
Row = pResult->Next(); |
1589 |
if ( (Row != NULL) && ((UInt_t)atoll(Row->GetField(0)) > 0 ) ){ |
if ( (Row != NULL) && ((UInt_t)atoll(Row->GetField(0)) > 0 ) ){ |
1590 |
toffset = (UInt_t)atoll(Row->GetField(1)) - (UInt_t)(this->DBobt((UInt_t)atoll(Row->GetField(0)))/1000) + t0; |
OBT0 = (UInt_t)atoll(Row->GetField(0)); |
1591 |
|
TIMESYNC = (UInt_t)atoll(Row->GetField(1)); |
1592 |
|
TYPE = (UInt_t)atoll(Row->GetField(2)); |
1593 |
|
toffset = (UInt_t)atoll(Row->GetField(1)) - (UInt_t)(this->DBobt((UInt_t)atoll(Row->GetField(0)))/1000) + T0; |
1594 |
}; |
}; |
1595 |
}; |
}; |
1596 |
// |
// |
1609 |
// |
// |
1610 |
}; |
}; |
1611 |
|
|
1612 |
|
/** |
1613 |
|
* |
1614 |
|
* Returns the Resurs time given the OBT needed to process inclination and orbital infos |
1615 |
|
* |
1616 |
|
*/ |
1617 |
|
UInt_t GL_TIMESYNC::ResursTime(UInt_t OBT){ |
1618 |
|
// |
1619 |
|
return(((UInt_t)((Int_t)(this->DBobt(OBT)-this->DBobt(OBT0))/1000)+TIMESYNC)); |
1620 |
|
// |
1621 |
|
}; |
1622 |
|
|
1623 |
ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){ |
|
1624 |
|
/** |
1625 |
|
* Return the correct packet number if we went back to zero |
1626 |
|
*/ |
1627 |
|
Long64_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){ |
1628 |
// |
// |
1629 |
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) ){ |
1630 |
|
return((Long64_t)pkt_num+16777215LL); |
1631 |
|
}; |
1632 |
// |
// |
1633 |
if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){ |
if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){ |
1634 |
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())); |
|
|
}; |
|
1635 |
}; |
}; |
1636 |
// |
// |
1637 |
return((ULong64_t)obt); |
return((Long64_t)pkt_num); |
1638 |
// |
// |
1639 |
}; |
}; |
1640 |
|
|
1641 |
UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){ |
/** |
1642 |
|
* Return the correct On Board Time if we went back to zero |
1643 |
|
*/ |
1644 |
|
Long64_t GL_TIMESYNC::DBobt(UInt_t obt){ |
1645 |
// |
// |
1646 |
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())); |
1647 |
// |
// |
1648 |
if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){ |
if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){ |
1649 |
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)); |
|
|
}; |
|
1650 |
}; |
}; |
1651 |
// |
// |
1652 |
return(pkt_num); |
return((Long64_t)obt); |
|
// |
|
1653 |
}; |
}; |
1654 |
|
|
1655 |
|
|
1656 |
|
|
1657 |
|
// ULong64_t GL_TIMESYNC::DBobt(UInt_t obt){ |
1658 |
|
// // |
1659 |
|
// if ( obt < (obtfirst/2) && obtfirst > (numeric_limits<UInt_t>::max()/2) ) return((ULong64_t)(obt+numeric_limits<UInt_t>::max())); |
1660 |
|
// // |
1661 |
|
// if ( obt > (obtfirst*2) && obt > (numeric_limits<UInt_t>::max()/2) ){ |
1662 |
|
// if ( (obt-numeric_limits<UInt_t>::max()) < 0 ){ |
1663 |
|
// return((ULong64_t)(numeric_limits<UInt_t>::max()-obt)); |
1664 |
|
// } else { |
1665 |
|
// return((ULong64_t)(obt-numeric_limits<UInt_t>::max())); |
1666 |
|
// }; |
1667 |
|
// }; |
1668 |
|
// // |
1669 |
|
// return((ULong64_t)obt); |
1670 |
|
// // |
1671 |
|
// }; |
1672 |
|
|
1673 |
|
// UInt_t GL_TIMESYNC::DBpkt(UInt_t pkt_num){ |
1674 |
|
// // |
1675 |
|
// if ( pkt_num < (pktfirst/2) && pktfirst > (16777214/2) ) return((pkt_num+16777215)); |
1676 |
|
// // |
1677 |
|
// if ( pkt_num > pktfirst*2 && pkt_num > (16777214/2) ){ |
1678 |
|
// if ( (pkt_num-16777215) < 0 ){ |
1679 |
|
// return((16777215-pkt_num)); |
1680 |
|
// } else { |
1681 |
|
// return((pkt_num-16777215)); |
1682 |
|
// }; |
1683 |
|
// }; |
1684 |
|
// // |
1685 |
|
// return(pkt_num); |
1686 |
|
// // |
1687 |
|
// }; |
1688 |
|
|
1689 |
/* |
/* |
1690 |
* |
* |
1691 |
* Convert the time in the DB from UInt_t to a string |
* Convert the time in the DB from UInt_t to a string |
1803 |
} |
} |
1804 |
|
|
1805 |
|
|
1806 |
// **************************************************** |
// |
1807 |
/** |
// Build a query and call DoQuery. |
1808 |
* Function to query the GL_TLE table of the DB. |
// |
1809 |
* |
// date it's an SQL datetime date and dbc is the connection to be |
1810 |
* 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 |
1811 |
* |
// and the immediatly next one. |
1812 |
* Return the pointer to a cTle object that has the closest and |
// |
1813 |
* 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){ |
|
1814 |
stringstream myquery; |
stringstream myquery; |
1815 |
myquery.str(""); |
myquery.str(""); |
1816 |
|
|
1817 |
myquery << "SELECT TLE1, TLE2, TLE3 FROM GL_TLE " |
myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE " |
1818 |
<< "WHERE FROM_TIME < FROM_UNIXTIME(" << time << ") ORDER BY FROM_TIME DESC LIMIT 1;"; |
<< "WHERE FROM_TIME <= '" << date.Data() |
1819 |
|
<< "' ORDER BY FROM_TIME DESC LIMIT 1) " |
1820 |
|
<< "UNION " |
1821 |
|
<< "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE " |
1822 |
|
<< "WHERE FROM_TIME > '" << date.Data() |
1823 |
|
<< "' ORDER BY FROM_TIME ASC LIMIT 1)"; |
1824 |
|
|
1825 |
|
return DoQuery(myquery.str().c_str(), dbc); |
|
return Query_GL_TLE_go(myquery.str(), dbc); |
|
1826 |
} |
} |
1827 |
|
|
1828 |
|
|
1829 |
// **************************************************** |
// |
1830 |
/** |
// Build a query and call DoQuery. |
1831 |
* Function to query the GL_TLE table of the DB. |
// |
1832 |
* |
// time is the UTC date in unix time (UTC) and dbc is the connection |
1833 |
* 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 |
1834 |
* is requested. |
// previous date and the immediatly next one. |
1835 |
* |
// |
1836 |
* Return the pointer to a cTle object that has the closest and |
// Returns the value returned by DoQuery(). |
1837 |
* previous date compared with time. |
// |
1838 |
* |
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){ |
|
1839 |
stringstream myquery; |
stringstream myquery; |
1840 |
myquery.str(""); |
myquery.str(""); |
1841 |
|
|
1842 |
myquery << "SELECT TLE1, TLE2, TLE3 FROM GL_TLE " |
myquery << "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE " |
1843 |
<< "WHERE FROM_TIME < '" << date.Data() << "' ORDER BY FROM_TIME DESC LIMIT 1;"; |
<< "WHERE FROM_TIME <= FROM_UNIXTIME('" << time |
1844 |
|
<< "') ORDER BY FROM_TIME DESC LIMIT 1) " |
1845 |
|
<< "UNION " |
1846 |
|
<< "(SELECT ID, TLE1, TLE2, TLE3, UNIX_TIMESTAMP(FROM_TIME) FROM GL_TLE " |
1847 |
|
<< "WHERE FROM_TIME > FROM_UNIXTIME('" << time |
1848 |
|
<< "') ORDER BY FROM_TIME ASC LIMIT 1)"; |
1849 |
|
|
1850 |
|
return DoQuery(myquery.str().c_str(), dbc); |
|
return Query_GL_TLE_go(myquery.str(), dbc); |
|
1851 |
} |
} |
1852 |
|
|
1853 |
|
|
1854 |
// **************************************************** |
// |
1855 |
/** |
// Do the query myquery on the connectio dbc. Initialize tle, |
1856 |
* Private function used by Query_GL_TLE methods. |
// tleFromTime and tleToTime. |
1857 |
* |
// |
1858 |
* myquery is the query string. |
// We should have two rows (unless the table is old). From the last |
1859 |
* |
// one we only take tleToTime. |
1860 |
* Return the pointer to a cTle object that has the closest and |
// |
1861 |
* previous date compared with time. |
// Returns 0 for success, 1 for failure. |
1862 |
* |
// |
1863 |
* 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 |
|
1864 |
TSQLResult *result; |
TSQLResult *result; |
1865 |
TSQLRow *row; |
TSQLRow *row; |
1866 |
|
|
1867 |
|
// Set the right time_zone (otherwise horrible things will occur! :) |
1868 |
|
if ( !this->GetGLTABLES()->IsConnected(dbc) ) return -57; |
1869 |
|
dbc->Query("SET time_zone = '+0:00'"); |
1870 |
|
|
1871 |
|
// Do the query |
1872 |
|
this->GetGLTABLES()->AddQ(); |
1873 |
result = dbc->Query(myquery.Data()); |
result = dbc->Query(myquery.Data()); |
1874 |
if(! result->GetRowCount() ) return NULL; |
if(! result->GetRowCount() ) { |
1875 |
|
cerr << "GL_TLE: query failed: " << myquery.Data() << endl; |
1876 |
|
return 1; |
1877 |
|
} |
1878 |
|
|
1879 |
|
// Get results |
1880 |
|
row = result->Next(); // first tle row |
1881 |
|
tle = GiveTle(row); |
1882 |
|
|
1883 |
|
tleFromTime = strtol(row->GetField(4), NULL, 10); |
1884 |
|
|
1885 |
|
row = result->Next(); // second tle row |
1886 |
|
if(row) |
1887 |
|
tleToTime = strtol(row->GetField(4), NULL, 10); |
1888 |
|
else { |
1889 |
|
cerr << "GL_TLE: Warning: using last avaible TLE. Please update GL_TLE table!\n"; |
1890 |
|
tleToTime = UINT_MAX; |
1891 |
|
} |
1892 |
|
|
1893 |
row = result->Next(); |
delete row; |
1894 |
tle1 = row->GetField(0); |
delete result; |
|
tle2 = row->GetField(1); |
|
|
tle3 = row->GetField(2); |
|
1895 |
|
|
1896 |
tle = new cTle(tle1, tle2, tle3); |
return 0; |
1897 |
|
} |
1898 |
|
|
|
delete result; |
|
|
delete row; |
|
1899 |
|
|
1900 |
return tle; |
// |
1901 |
|
// Build a cTle object from the GL_TLE row. |
1902 |
|
// |
1903 |
|
cTle* GL_TLE::GiveTle(TSQLRow *row) { |
1904 |
|
cTle *thistle = NULL; |
1905 |
|
string tle1, tle2, tle3; |
1906 |
|
|
1907 |
|
// Build cTle object |
1908 |
|
tle1 = row->GetField(1); |
1909 |
|
tle2 = row->GetField(2); |
1910 |
|
tle3 = row->GetField(3); |
1911 |
|
|
1912 |
|
thistle = new cTle(tle1, tle2, tle3); |
1913 |
|
|
1914 |
|
return thistle; |
1915 |
} |
} |