/[PAMELA software]/chewbacca/PamOffLineSW/PacketUser.cpp
ViewVC logotype

Annotation of /chewbacca/PamOffLineSW/PacketUser.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (hide annotations) (download)
Thu Dec 18 14:46:56 2008 UTC (15 years, 11 months ago) by mocchiut
Branch: MAIN
Changes since 1.3: +13 -12 lines
Default values changed, symbolic path handling implemented, cleanup of backup files, do not delete files from ROOT_TABLE_MERGING

1 mocchiut 1.1 //============================================================================
2 mocchiut 1.4 // $Id: PacketUser.cpp,v 1.3 2008/12/18 12:58:37 mocchiut Exp $
3 mocchiut 1.1 // Description :
4     //============================================================================
5     #include "PacketUser.h"
6     #include <sys/time.h>
7    
8     namespace PamOffLineSW
9     {
10     extern LogUtil* mainLogUtil;
11     extern short compression ;
12     extern char *outDir;
13     extern TSQLServer *sqlServer;
14     extern bool multiFile;
15     extern char* fni;
16     extern char * nome_output;
17     extern bool is_new_route;
18     extern unsigned int download;
19    
20     extern unsigned int mmm_number;
21     extern unsigned int orbit_number;
22     extern unsigned long int time_Offset;
23     extern bool tryMerge;
24     //marco_new_01
25     extern bool single_connection;
26    
27     //don't perform check about continuity: it means don't use DB.
28     extern bool do_cont_check;
29    
30     //marco_new_31:
31     extern char* db_user;
32     extern char* db_pwd;
33     extern char* connection;
34    
35 mocchiut 1.2 //per tenere conto reset obt
36     extern unsigned long int max_pkt_obt;
37    
38 mocchiut 1.3 #define TAGVALUELEN 4
39     extern char tag_value[TAGVALUELEN];
40 mocchiut 1.2
41 mocchiut 1.1 PacketUser PacketUser::instance;
42    
43     int PacketUser::numDiscontinity=1;
44     int PacketUser::numPKT=0;
45     int PacketUser::numPKTSaved=0;
46    
47     PacketUser& PacketUser::getInstance()
48     {
49     return instance;
50     }
51    
52     PacketUser::PacketUser()
53     {
54     gROOT->SetBatch(kTRUE);
55     numDiscontinity=1;
56     numPKTSaved=0;
57     numPKT=0;
58     pkt_number_init=0;
59     obt_init=0;
60     pkt_number_last=0;
61     obt_last=0;
62     obt_time_sync=0;
63     last_time_sync_info=0;
64 mocchiut 1.3
65     //(tassa)
66     obt_time_sync_prevvalue=0;
67     last_time_sync_info_prevvalue=0;
68     time_is_estimated=false;
69    
70    
71 mocchiut 1.1 real_time_init=0;
72     real_time_last=0;
73     bad_pkt=0;
74     bad_pkt_EventReader=0;
75     bad_pkt_CalibReader=0;
76     reader= NULL;
77     pRun=NULL;
78     reader=new pamela::techmodel::EventReader();
79     Table_ROOT_Good="ROOT_TABLE";
80     Table_ROOT_Bad="ROOT_TABLE_BAD";
81     Table_GL_RESURS_OFFSET="GL_RESURS_OFFSET";
82     Table_ROOT_Merging="ROOT_TABLE_MERGING";
83     // good_pkt_Calib=0;
84     my_id=0;
85     boot_number=0;
86 mocchiut 1.3 //(tassa)
87     boot_number_prevvalue=0;
88    
89     //(tassa)
90     id_to_recover[1000];
91     id_to_recover_index=0;
92 mocchiut 1.1 }
93    
94     PacketUser::~PacketUser()
95     {
96     if(reader){delete reader; reader = NULL;}
97     numDiscontinity=1;
98     numPKTSaved=0;
99     numPKT=0;
100     pkt_number_init=0;
101     obt_init=0;
102     pkt_number_last=0;
103     obt_last=0;
104     obt_time_sync = 0;
105     last_time_sync_info = 0;
106 mocchiut 1.3 obt_time_sync_prevvalue=0;
107     last_time_sync_info_prevvalue=0;
108     time_is_estimated=false;
109    
110 mocchiut 1.1 real_time_init=0;
111     real_time_last=0;
112     bad_pkt=0;
113     bad_pkt_EventReader=0;
114     bad_pkt_CalibReader=0;
115     // good_pkt_Calib=0;
116     my_id=0;
117     boot_number=0;
118 mocchiut 1.3 boot_number_prevvalue=0;
119 mocchiut 1.1 }
120    
121 mocchiut 1.2
122 mocchiut 1.1 //Put the packet in a root file. Create a new ROOT file for each group of packets
123     void PacketUser::usePKT(char*& headerPkt, char*& pamPkt, long int length, bool isCons, bool isPKTGood, const PacketType* type,
124     unsigned long int counter, unsigned long int obt)
125     {
126     //If the packet type was not recognised before
127     if(!type){return;}
128 mocchiut 1.2
129 mocchiut 1.1 //in order to start ...
130     if(numPKT==0)
131     {
132     if(single_connection){
133     OpenDBConnection(NULL);
134     }
135    
136     setInit(counter,obt);
137     StartGroup();
138     }
139    
140     //here we know if the incoming packet can be considered consecutive to the previuos one
141     if((!isCons)&&(numPKT!=0))
142     {
143     setReal_Time();
144 mocchiut 1.2 //closing the group in file rootfilename
145 mocchiut 1.1 FinishGroup(rootfilename);
146    
147 mocchiut 1.2 //se gia' e' cambiato download non cambio numdisco
148     if(!is_new_route){numDiscontinity++;}
149    
150 mocchiut 1.1 //the current pkt will be placed in a new group: rootfilename
151     setInit(counter,obt);
152     StartGroup();
153     }
154    
155     //add current packet to the group and calculate bad_pkt_EventReader and bad_pkt_CalibReader
156     int ret=
157     reader->PKT_RunEvent(headerPkt, pamPkt, length, type);
158     /*
159     ret
160     0 packet good
161     1 exception but used //never happen
162     2 CRC exception but used
163     3 CALIBRATION PACKET with error but used
164     -1 CRC exception packet DISCARDED
165     -2 FATAL exception packet DISCARDED //never happen
166     -3 No way to read events of this type. packet DISCARDED( es OLD CalibCal)
167     ret = 10 if the packet is good but comes from a cadre with VRL problems
168     */
169    
170 mocchiut 1.2 //here we also know if the packet comes from one or more corrupted cadres
171 mocchiut 1.1 if((!isPKTGood)&&(!ret)){ret=10;}
172     switch (ret)
173     {
174     case 0: {numPKTSaved++; break;}
175     case 1: {bad_pkt_EventReader++; numPKTSaved++; break;}
176     case 2: {bad_pkt_EventReader++;numPKTSaved++; break;}
177     case 3: {bad_pkt_CalibReader++; numPKTSaved++; break;}
178     case 10: {bad_pkt++; numPKTSaved++; break;}
179     default:{
180     stringstream oss;
181     oss.str()="";
182     oss<<"Packet DISCARDED, reason = "<<ret;
183     string msg = oss.str();
184     mainLogUtil->logAll(msg);
185     break;
186     }
187     }
188    
189     /*
190     if ((ret==0)&&((type==PacketType::CalibTrk1)||(type==PacketType::CalibTrk2)|| (type==PacketType::CalibCalPed)))
191     {
192     good_pkt_Calib++;//maybe I will remove this in future
193     }
194     */
195    
196     if(ret>=0)// only the packet not discarded of course
197     setLast(counter,obt);
198    
199     //TODO: decide what kind of packet I can use here
200     // if((ret==0)||(ret==10))//I want to use only good packet
201     if(ret>=0)//I want to use only accepted packet
202     {
203 mocchiut 1.2 setTimeSync(pamPkt, length, type);//here I retrieve also the boot_number if packet type is vardump
204 mocchiut 1.1 }
205    
206     //just to be sure ...
207     if(pamPkt){delete[] pamPkt; pamPkt = NULL;}
208     if(headerPkt){delete[] headerPkt; headerPkt = NULL;}
209    
210     numPKT++;
211     }
212    
213     //set the value of the counter and obt of the first packet of the group
214     void PacketUser::setInit(unsigned long int counter, unsigned long int obt)
215     {
216     sprintf(nnnn_mmm_ppp,"%05d_%03d_%03d", orbit_number, mmm_number, download);
217     sprintf(rootfilename,"%s_%s_%d", nome_output, nnnn_mmm_ppp, numDiscontinity);
218     pkt_number_init=counter;
219     obt_init=obt;
220     pkt_number_last=0;
221     obt_last=0;
222     real_time_init=0;
223     real_time_last=0;
224     bad_pkt=0;
225     numPKTSaved=0;
226     bad_pkt_EventReader=0; bad_pkt_CalibReader=0;
227     //good_pkt_Calib=0;
228    
229     //marco_NB:
230     //ogni volta che trovo una discontinuit� resetto come se mi trovassi in un nuovo download oppure uso i vecchi valori se esistono?
231 mocchiut 1.3
232     obt_time_sync_prevvalue=obt_time_sync;
233     last_time_sync_info_prevvalue=last_time_sync_info;
234     time_is_estimated=false;
235     obt_time_sync=0; last_time_sync_info=0;
236     boot_number_prevvalue=boot_number;
237     boot_number=0;
238    
239 mocchiut 1.1 // NB: se ho discontinuita in genere non so a che download appartiene potrebbe proprio essere sbagliato tenere i vecchi valori
240    
241     }
242    
243     //starts a new root file
244     void PacketUser::StartGroup()
245     {
246 mocchiut 1.4 pRun = new PamelaRun(rootfilename, gSystem->ExpandPathName(outDir), multiFile, compression); // EMI
247 mocchiut 1.1 strcat(rootfilename,".root");
248     reader->Init(pRun);
249     stringstream oss;
250     oss.str()="";
251     oss<<"######################### Start a new group in file: "<< rootfilename <<" ############################";
252     string msg = oss.str();
253     mainLogUtil->logInfo(msg);
254     }
255    
256     //set the value of the counter and obt of the last packet of the group
257     void PacketUser::setLast(unsigned long int counter, unsigned long int obt)
258     {
259     pkt_number_last=counter;
260     obt_last=obt;
261     }
262    
263    
264    
265 mocchiut 1.2 //retrieve obt_time_sync and last_time_sync_info from packet if type has special values and BOOT_NUMBER
266 mocchiut 1.1 void PacketUser::setTimeSync(char* packet, long int pktLength, const PacketType* type)
267     {
268     //do nothing
269     if(!do_cont_check) {
270     if(is_new_route)
271     is_new_route=false;
272     return;
273     }
274    
275     //TODO: usare anche MCMD ... NOTA: questo da sempre errore ret != 0
276 mocchiut 1.2 //In RunHeader e RunTrailer sono in secondi(?), controllare se aggiungo altri tipi di paccheti se invece sono in secondi
277     // devo ricalcolare tutto non per ogni gruppetto (ROOT file) ma solo se cambia download
278     //When I found a new download I need to reset all values
279 mocchiut 1.1 if(is_new_route)
280 mocchiut 1.2 {
281     //reset
282 mocchiut 1.1 is_new_route=false;
283 mocchiut 1.3 //(tassa) ci ho ripensato se stiamo in un secondo download non prendiamo i bootnumber e timesync del precedente!
284     obt_time_sync_prevvalue=0;//obt_time_sync;
285     last_time_sync_info_prevvalue=0;//last_time_sync_info;
286    
287 mocchiut 1.1 obt_time_sync=0; last_time_sync_info=0;
288 mocchiut 1.3 boot_number_prevvalue=0;//boot_number;
289 mocchiut 1.1 boot_number=0;
290 mocchiut 1.3 time_is_estimated=false;
291 mocchiut 1.1 if(time_Offset)
292     timeOffset=time_Offset;
293     else
294     timeOffset=retrieveTimeOffset(Table_GL_RESURS_OFFSET);
295     }
296    
297     //retrieve boot number if possible
298     setBootNumber(packet,pktLength,type);
299    
300     //Retrieve if possible obt_time_sync and last_time_sync_info
301     int offset=0;
302     if(type==PacketType::RunHeader)
303     {
304     offset=0;
305     }
306     else if(type==PacketType::RunTrailer)
307     {
308     offset=3;
309     }
310     else if(type==PacketType::Mcmd)
311     {
312     // mainLogUtil->logAll("TODO: Packet Mcmd now is not used to retrieve Absolute time. This may cause problems somewhere.");
313     return;
314     }
315     else
316     {
317     return;
318     }
319    
320     //I don't need to retrieve them again if they are good
321     if((obt_time_sync)||(last_time_sync_info)) return;
322    
323     obt_time_sync = (((UINT32)packet[5+offset]<<24)&0xFF000000) + (((UINT32)packet[6+offset]<<16)&0x00FF0000) + (((UINT32)packet[7+offset]<<8)&0x0000FF00) + (((UINT32)packet[8+offset])&0x000000FF);
324     last_time_sync_info = (((UINT32)packet[9+offset]<<24)&0xFF000000) + (((UINT32)packet[10+offset]<<16)&0x00FF0000) + (((UINT32)packet[11+offset]<<8)&0x0000FF00) + (((UINT32)packet[12+offset])&0x000000FF);
325    
326     stringstream oss;
327     oss.str()="";
328     oss<<"In download: "<<download<<" timeOffset: "<<timeOffset<<" obt_time_sync: "<<obt_time_sync<<" last_time_sync_info: "<<last_time_sync_info<<" using Packet Type: "<<type->GetName().c_str();
329     string msg = oss.str();
330     mainLogUtil->logAll(msg);
331     }
332    
333     //Boot Number
334     void PacketUser::setBootNumber(char* packet, long int pktLength, const PacketType* type)
335     {
336 mocchiut 1.2 //se gia calcolato esco: lo calcolo una volta per download e per continuita'
337 mocchiut 1.1 if(boot_number) return;
338 mocchiut 1.2
339 mocchiut 1.1 if(type==PacketType::VarDump)
340 mocchiut 1.2 {
341     int b_offset = 34;//4+5*6
342     boot_number = (((UINT32)packet[1+b_offset]<<24)&0xFF000000) + (((UINT32)packet[2+b_offset]<<16)&0x00FF0000) + (((UINT32)packet[3+b_offset]<<8)&0x0000FF00) + (((UINT32)packet[4+b_offset])&0x000000FF);
343    
344     /*
345 mocchiut 1.1 long int dataLength = pktLength - 2; //the block of data
346 mocchiut 1.2 int b_offset = 4;
347 mocchiut 1.1 while (b_offset < dataLength){
348     boot_number = (((UINT32)packet[1+b_offset]<<24)&0xFF000000) + (((UINT32)packet[2+b_offset]<<16)&0x00FF0000) + (((UINT32)packet[3+b_offset]<<8)&0x0000FF00) + (((UINT32)packet[4+b_offset])&0x000000FF);
349     b_offset = b_offset + 5;
350     }
351 mocchiut 1.2 */
352 mocchiut 1.1 stringstream oss;
353     oss.str()="";
354     oss<<"In download: "<<download<<" boot_number: "<<boot_number<<" using Packet Type: "<<type->GetName().c_str();
355     string msg = oss.str();
356     mainLogUtil->logAll(msg);
357     return;
358     }
359     else
360     {
361     return;
362     }
363    
364     }
365     //set the real time of the first packet and the last packet oif a group of packet if possible
366     void PacketUser::setReal_Time()
367     {
368 mocchiut 1.3
369     if(!obt_time_sync && !last_time_sync_info && numPKTSaved > 1000 )
370 mocchiut 1.2 {
371 mocchiut 1.3 time_is_estimated=true;
372     obt_time_sync=obt_time_sync_prevvalue;
373     last_time_sync_info=last_time_sync_info_prevvalue;
374     }
375     if(obt_time_sync || last_time_sync_info)
376     {
377     real_time_init=(obt_init/1000-obt_time_sync)+last_time_sync_info;
378 mocchiut 1.2 //se obt si e' resettato
379     if(obt_last<obt_init)
380     {
381     real_time_last=(max_pkt_obt/1000+ obt_last/1000-obt_time_sync)+last_time_sync_info;
382     stringstream oss;
383     oss.str()="";
384     oss<<"obt_last("<<obt_last<<") < obt_init("<<obt_init<<"). It is due to Pamela Reset. Adding max_pkt_obt("<<max_pkt_obt<<") to obt_last in order to compute real_time_last";
385     string msg = oss.str();
386     mainLogUtil->logWarning(msg);
387     }
388     else
389     real_time_last=(obt_last/1000-obt_time_sync)+last_time_sync_info;
390 mocchiut 1.1 real_time_init+=timeOffset;
391 mocchiut 1.2 real_time_last+=timeOffset;
392     }
393 mocchiut 1.1 }
394    
395     //timeOffset
396     //retrieve from table Table_GL_RESURS_OFFSET timeOffset
397     unsigned long int PacketUser::retrieveTimeOffset(char * table)
398     {
399     if(!do_cont_check) return 0;
400    
401     //if(!table){table=Table_GL_RESURS_OFFSET}
402    
403     if(!single_connection){
404     OpenDBConnection(table);//Nota qui ho deciso di lockare solo questa tabella e non tutte
405     }
406    
407 mocchiut 1.2 UInt_t t0 = 0;//toffset
408 mocchiut 1.1 stringstream oss;
409     oss.str("");
410     oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE),ID FROM "<< table <<" WHERE SPECIAL_FILE='"
411     << nnnn_mmm_ppp << "';";
412    
413     string msg = oss.str();
414     mainLogUtil->logAll(msg);
415    
416     TSQLResult* res=NULL;
417     TSQLRow* row=NULL;
418     res= sqlServer->Query(oss.str().c_str());
419     if(!res)
420     {
421     mainLogUtil->logError("DBError retrieveTimeOffset 1");
422     return 0;
423     }
424    
425     row=res->Next();
426     if (!row )
427     {
428     if(res){delete res; res = NULL;}
429    
430     oss.str("");
431     oss << "SELECT YEAR(OFFSET_DATE),MONTH(OFFSET_DATE),DAY(OFFSET_DATE),HOUR(OFFSET_DATE),MINUTE(OFFSET_DATE),SECOND(OFFSET_DATE),ID FROM "<< table <<" WHERE FROM_ORBIT < "
432     << orbit_number << " order by FROM_ORBIT desc limit 1;";
433    
434     string msg2 = oss.str();
435     mainLogUtil->logAll(msg2);
436    
437     res= sqlServer->Query(oss.str().c_str());
438     if(!res)
439     {
440     mainLogUtil->logError("DBError retrieveTimeOffset 2");
441     return 0;
442     }
443     row=res->Next();
444     if (!row)
445     {
446     mainLogUtil->logError("DBError retrieveTimeOffset 3");
447     return 0;
448     }
449    
450     }
451    
452     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);
453     t0 = (UInt_t)tu.GetSec();
454    
455     if(res){delete res; res = NULL;}
456     if(row){delete row; row = NULL;}
457    
458     if(!single_connection){
459     CloseDBConnection();
460     }
461     return t0;
462     }
463    
464     //this is public and can be called from the main at the end of the game
465     void PacketUser::FinishLastGroup()
466     {
467     mainLogUtil->logAll("######################### Closing the last group ############################");
468     setReal_Time();
469     FinishGroup(rootfilename);
470     mainLogUtil->logAll("######################### Closed the last group ############################");
471     if(single_connection){
472     CloseDBConnection();
473     }
474     }
475    
476     //Finish the old root file
477     void PacketUser::FinishGroup(char * filename)
478     {
479     if(pRun)
480     {
481     pRun->WriteFiles();
482     delete pRun; pRun = NULL;
483     stringstream close;
484     close.str()="";
485     string msg;
486    
487     close<<"######################### Close group in file: "<< rootfilename <<" ############################";
488     msg = close.str();
489     mainLogUtil->logInfo(msg);
490    
491     // se non faccio proprio controlli su continuita' neanche salvo su DB
492     if(!do_cont_check) return;
493    
494     stringstream oss;
495     oss.str()="";
496    
497     //TODO: check when I don't want to log in DB informations
498     // se non ho salvato nessun pacchetto
499     if(numPKTSaved==0){
500     stringstream err;
501     err.str()="";
502     err<<"NO PACKET SAVED in file: "<< rootfilename <<" The group is empty: you can remove this file.";
503     msg = err.str();
504     mainLogUtil->logError(msg);
505     return;
506     }
507    
508     //se non ho salvato nessun pacchetto buono
509     if((numPKTSaved-bad_pkt_EventReader-bad_pkt_CalibReader-bad_pkt)==0){
510     stringstream err;
511     err.str()="";
512     err<<"NO GOOD PACKET SAVED in file: "<< rootfilename <<" The group is BAD: you may want to remove this file.";
513     msg = err.str();
514     mainLogUtil->logInfo(msg);
515     // mainLogUtil->logError(msg);
516     // return; //TODO: decidi se nn vuoi affatto usarlo o addirittura salvarlo tra i BAD???
517     }
518    
519     if(!single_connection){
520     OpenDBConnection(NULL);//Nota qui ho deciso di lockare tutte le tabelle
521     }
522    
523     //don't save in Table_ROOT_Good and don't search for ROOT files in the same temporal range
524     if((!real_time_init)&&(!real_time_last))
525     {
526     //saved in another table for future study
527 mocchiut 1.4 if(saveROOT_DB(Table_ROOT_Bad, outDir,// here outDir is good, no expand EMI
528 mocchiut 1.1 filename,
529     pkt_number_init, pkt_number_last,
530     obt_init, obt_last,
531     obt_time_sync, last_time_sync_info,
532     real_time_init, real_time_last,
533     boot_number,
534     timeOffset,
535     bad_pkt, bad_pkt_EventReader, bad_pkt_CalibReader, numPKTSaved,
536 mocchiut 1.3 fni,time_is_estimated)==true)
537 mocchiut 1.1 {
538     oss.str()="";
539     oss<<"Saved information regarding file: "<<filename<<" in table "<<Table_ROOT_Bad;
540     msg = oss.str();
541     mainLogUtil->logInfo(msg);
542     }
543     else
544     {
545     oss.str()="";
546     oss<<"Problem storing information in DB regarding file: "<<filename;
547     msg = oss.str();
548     mainLogUtil->logError(msg);
549     }
550 mocchiut 1.2
551 mocchiut 1.1 if(!single_connection){
552     CloseDBConnection();
553     }
554    
555     return;
556     }
557    
558     //saves info in DB in table Table_ROOT_Good
559 mocchiut 1.3 if(boot_number==0)
560     boot_number=boot_number_prevvalue;
561    
562 mocchiut 1.4 if(saveROOT_DB(Table_ROOT_Good, outDir, // here outDir is good, no expand EMI
563 mocchiut 1.1 filename,
564     pkt_number_init, pkt_number_last,
565     obt_init, obt_last,
566     obt_time_sync, last_time_sync_info,
567     real_time_init, real_time_last,
568     boot_number,
569     timeOffset,
570     bad_pkt, bad_pkt_EventReader, bad_pkt_CalibReader, numPKTSaved,
571 mocchiut 1.3 fni,time_is_estimated)==true)
572 mocchiut 1.1 {
573     oss<<"Saved information regarding file: "<<filename<<" in table "<<Table_ROOT_Good<< " id= "<<my_id;
574     msg = oss.str();
575     mainLogUtil->logInfo(msg);
576    
577     if(tryMerge){
578     merge_ROOTfiles();
579     }
580     }
581     else
582     {
583     oss<<"Problem storing information in DB regarding file: "<<filename;
584     msg = oss.str();
585     mainLogUtil->logError(msg);
586     }
587    
588     if(!single_connection){
589     CloseDBConnection();
590     }
591    
592     }//pRun
593     }
594    
595     //save in Table_ROOT_Good or in Table_ROOT_Bad
596     bool PacketUser::saveROOT_DB(char* table_name, char* folder_name, char* file_name,
597     unsigned long int pkt_number_in, unsigned long int pkt_number_fin,
598     unsigned long int obt_in, unsigned long int obt_fin,
599     unsigned long int oT_sync, unsigned long int lT_sync_info,
600     unsigned long int mtime_init, unsigned long int mtime_last,
601     unsigned long int mboot_num,
602     unsigned long int time_offset,
603     int bad_pkt, int bad_pkt_read, int bad_pkt_CalRead, int num_PKT_Saved,
604 mocchiut 1.3 char* nome_input, bool _time_is_estimated){
605 mocchiut 1.1 //TODO: forse far ritornare ID della cosa appena inserita se e' andatato tutto ok invece che true false?
606     stringstream oss;
607     oss.str("");
608 mocchiut 1.3 oss << "INSERT INTO "<< table_name <<" (ID_N, FOLDER_NAME, FILE_NAME, PKT_NUMBER_INIT, PKT_NUMBER_FINAL, PKT_OBT_INIT, PKT_OBT_FINAL, OBT_TIME_SYNC, LAST_TIME_SYNC_INFO, REAL_TIME_INIT, REAL_TIME_LAST, BOOT_NUMBER, TIME_OFFSET,BAD_PKT,BAD_PKT_READ,BAD_PKT_CALREAD,NUM_PKT_SAVED,INPUT_NAME,INSERT_TIME,TIME_IS_ESTIMATED)"
609 mocchiut 1.1 << " VALUES ('"<<0<< "','" <<folder_name<<"','" <<file_name<< "','" << pkt_number_in <<"','"<< pkt_number_fin << "','"<< obt_in <<"','"<< obt_fin<< "','"
610     << oT_sync << "','" << lT_sync_info << "','"
611     << mtime_init << "','" << mtime_last << "','"
612     << mboot_num << "','"
613     << time_offset << "','"
614 mocchiut 1.2 << bad_pkt <<"','" << bad_pkt_read <<"','"<< bad_pkt_CalRead <<"','"<< num_PKT_Saved<<"','"
615 mocchiut 1.1 << nome_input <<"',"
616 mocchiut 1.3 <<"NULL,"<<_time_is_estimated<<
617 mocchiut 1.1 ")";
618     string msg = oss.str();
619     mainLogUtil->logAll(msg);
620    
621     stringstream oss1;
622     oss1.str()="";
623     string msg1;
624 mocchiut 1.3 string query;
625 mocchiut 1.1
626 mocchiut 1.3 TSQLResult* res=NULL;
627    
628     query=oss.str();
629     msg1="SaveROOT_DB query: ";
630     msg1 += query;
631     mainLogUtil->logInfo(msg1);
632    
633     res= sqlServer->Query(query.c_str());
634 mocchiut 1.1 if(!res)
635     {
636     oss1<<"DBError UNABLE to: "<<oss.str().c_str()<<endl;
637     msg1=oss1.str();
638     mainLogUtil->logError(msg1);
639     return false;
640     }
641    
642     //the ID of the current ROOT file in table Table_ROOT_Good
643     my_id = select_maxIDN_DB(table_name);
644 mocchiut 1.3 if(!boot_number){
645     if(id_to_recover_index<1000)
646     id_to_recover[id_to_recover_index++]=my_id;
647     }else if (boot_number && id_to_recover_index && !is_new_route){
648     recover_boot_number();
649     }
650 mocchiut 1.1 // cout<<"DBG: my_id = "<<my_id<<endl;
651     if(res){delete res; res = NULL;}
652     return true;
653     }
654    
655 mocchiut 1.3
656     void PacketUser::recover_boot_number(){
657     string msg1;
658     stringstream oss1;
659     stringstream oss;
660     oss.str("");
661     string query="";
662     TSQLResult* res=NULL;
663     if(!boot_number || !id_to_recover_index)
664     return;
665    
666     for (int i = 0; i<id_to_recover_index;i++){
667     oss << "UPDATE "<< Table_ROOT_Good << " SET BOOT_NUMBER=" << boot_number << " WHERE ID_N=" << id_to_recover[i];
668     query = oss.str();
669     res= sqlServer->Query(query.c_str());
670     if(!res)
671     {
672     oss1<<"DBError UNABLE to: "<<query.c_str()<<endl;
673     msg1=oss1.str();
674     mainLogUtil->logError(msg1);
675     return ;
676     }
677     }
678    
679     for (int i = 0; i<id_to_recover_index;i++){
680     oss << "UPDATE " << Table_ROOT_Merging << " SET BOOT_NUMBER=" << boot_number << " WHERE ROOT_ID_N=" << id_to_recover[i];
681     query=oss.str();
682     res= sqlServer->Query(query.c_str());
683     if(!res)
684     {
685     oss1<<"DBError UNABLE to: "<<query.c_str()<<endl;
686     msg1=oss1.str();
687     mainLogUtil->logError(msg1);
688     return ;
689     }
690     }
691    
692     id_to_recover_index=0;
693     }
694    
695    
696    
697 mocchiut 1.1 /**********************************************************************************************/
698     /*###########################################################################################################*/
699     /********************************** MERGING *************************************************/
700     /*###########################################################################################################*/
701 mocchiut 1.3 // Merge ROT files: find other ROOT files in the same temporal ranges
702 mocchiut 1.1 // it finds ROOT files that covers particular temporal range of interest and save this info in DB
703     /**********************************************************************************************/
704     //try to merge current ROOT file with files in DB
705     bool PacketUser::merge_ROOTfiles()
706     {
707 mocchiut 1.2 stringstream log;
708     log.str("");
709     string slog;
710 mocchiut 1.1
711 mocchiut 1.2 mainLogUtil->logInfo("Trying merging ROOT files");
712 mocchiut 1.1 double percentage=(double)(bad_pkt+bad_pkt_EventReader+bad_pkt_CalibReader)/numPKTSaved;
713    
714     TSQLResult* res=NULL;
715     TSQLRow* row =NULL;
716 mocchiut 1.2 //numero di ROOT files trovati sul DB che hanno relaz di tipo dato
717     unsigned int num_rows=0;
718    
719     //Record su DB:
720     unsigned int idN = 0;
721     unsigned int root_id_db=0;
722     unsigned long int pkt_num_in_db=0;
723     unsigned long int pkt_num_fin_db=0;
724     unsigned long int pkt_obt_in_db=0;
725     unsigned long int pkt_obt_fin_db=0;
726     unsigned long int time_in_db=0;
727     unsigned long int time_fin_db=0;
728     unsigned int boot_num_db=0;
729     double perc=0;
730 mocchiut 1.1
731 mocchiut 1.2
732     //marco_new: non considero mai caso di continuita'(mio finale=DB iniz o viceversa), non mi interessa
733 mocchiut 1.1 //marco_new: after e before contengono anche smaller ma con un bordo comune
734     for(int relaz=AFTER; relaz<=BIGGER; relaz++)
735 mocchiut 1.2 {
736 mocchiut 1.1 //marco_new: esci se sono arrivato a zero
737 mocchiut 1.2 if(real_time_last==real_time_init)
738     {
739     log.str("");
740     log<<"Current File Lenght=0; real_time_last=real_time_init= "<<real_time_last;
741     slog=log.str();
742     mainLogUtil->logAll(slog);
743 mocchiut 1.1 mainLogUtil->logInfo("Finish merging ROOT files");
744     if(res){delete res; res = NULL;}
745     if(row){delete row; row = NULL;}
746     return true;
747     }
748    
749 mocchiut 1.2 num_rows=0;
750     res = Select_merging(Table_ROOT_Merging, real_time_init, real_time_last, (type_Rel_ROOT)relaz);
751 mocchiut 1.1
752     if (!res)
753     {
754     mainLogUtil->logError("DB_ERROR: Unable to find ROOT files to be merged RES=null");
755     return false;
756     }
757    
758     num_rows=res->GetRowCount();
759 mocchiut 1.2 log.str("");
760     log<<"Found "<<num_rows<<" ROOT file in DB with relation of kind = "<<relaz;
761     slog=log.str();
762     mainLogUtil->logAll(slog);
763 mocchiut 1.1
764     if(num_rows>0)
765 mocchiut 1.2 {
766     for(unsigned int i=0; i<num_rows; i++)
767 mocchiut 1.1 {
768     row=res->Next();
769     if (!row)
770     {
771 mocchiut 1.2 mainLogUtil->logError("DB_ERROR: Unable to find ROOT files to be merged. ROW=null");
772 mocchiut 1.1 if(res){delete res; res = NULL;}
773     return false;
774     }
775    
776 mocchiut 1.2 //Leggi Record dal DB:
777     idN=atoll(row->GetField(0));
778     root_id_db=atoll(row->GetField(1));
779     pkt_num_in_db=atoll(row->GetField(2));
780     pkt_num_fin_db=atoll(row->GetField(3));
781     pkt_obt_in_db=atoll(row->GetField(4));
782     pkt_obt_fin_db=atoll(row->GetField(5));
783     time_in_db=atoll(row->GetField(6));
784     time_fin_db=atoll(row->GetField(7));
785     boot_num_db=atoll(row->GetField(8));
786 mocchiut 1.1 perc=atof(row->GetField(9));
787 mocchiut 1.2
788     log.str("");
789     log<<"*** ROOT file found in DB has idN= "<<idN<<" root_id_db= "<<root_id_db;
790     log<<" pkt_num_in_db= "<<pkt_num_in_db<<" pkt_num_fin_db= "<<pkt_num_fin_db<<" pkt_obt_in_db= "<<pkt_obt_in_db<<" pkt_obt_fin_db= "<<pkt_obt_fin_db;
791     log<<" time_in_db= "<<time_in_db<<" time_fin_db= "<<time_fin_db<<" boot_num_db= "<<boot_num_db<<" perc= "<<perc<<" ***";
792     log<<"\n*** Current ROOT file has pkt_number_init= "<<pkt_number_init<<" obt_init= "<<obt_init<<" real_time_init= "<<real_time_init;
793     log<<" pkt_number_last= "<<pkt_number_last<<" obt_last= "<<obt_last<<" real_time_last= "<<real_time_last<<" ***";
794     slog=log.str();
795     mainLogUtil->logAll(slog);
796     if(perc>percentage)
797     {
798 mocchiut 1.1 mainLogUtil->logInfo("Current ROOT file is better than the one in DB");
799     //modifica DB
800     updateMergeROOT_DB(Table_ROOT_Merging,
801 mocchiut 1.2 root_id_db,
802     pkt_num_in_db, pkt_num_fin_db,
803     pkt_obt_in_db, pkt_obt_fin_db,
804     time_in_db, time_fin_db,
805     boot_num_db,
806     perc,
807     idN,(type_Rel_ROOT)relaz);
808 mocchiut 1.1 }
809 mocchiut 1.2 else
810     {
811     mainLogUtil->logInfo("Found ROOT file in DB is better than current ROOT file");
812     if(relaz == AFTER)
813     {
814 mocchiut 1.1 mainLogUtil->logInfo("Relaz:AFTER = Changing Init values of the Current ROOT file");
815 mocchiut 1.3 pkt_number_init = (pkt_num_fin_db+1);
816 mocchiut 1.2 obt_init = pkt_obt_fin_db;
817     real_time_init = time_fin_db;
818     log.str("");
819     log<<"\n*** Current ROOT file becomes: pkt_number_init= "<<pkt_number_init<<" obt_init= "<<obt_init<<" real_time_init= "<<real_time_init;
820     log<<" pkt_number_last= "<<pkt_number_last<<" obt_last= "<<obt_last<<" real_time_last= "<<real_time_last<<" ***";
821     slog=log.str();
822     mainLogUtil->logAll(slog);
823 mocchiut 1.1 }
824 mocchiut 1.2 else if(relaz == BEFORE)
825     {
826     mainLogUtil->logInfo("Relaz:BEFORE = Changing Last values of the Current ROOT file");
827 mocchiut 1.3 pkt_number_last = (pkt_num_in_db-1);
828 mocchiut 1.2 obt_last = pkt_obt_in_db;
829     real_time_last = time_in_db;
830    
831     log.str("");
832     log<<"\n*** Current ROOT file becomes: pkt_number_init= "<<pkt_number_init<<" obt_init= "<<obt_init<<" real_time_init= "<<real_time_init;
833     log<<" pkt_number_last= "<<pkt_number_last<<" obt_last= "<<obt_last<<" real_time_last= "<<real_time_last<<" ***";
834     slog=log.str();
835     mainLogUtil->logAll(slog);
836 mocchiut 1.1 }
837     else if(relaz == SMALLER)
838     {
839     //non devo proprio salvarlo ed esco ...
840     mainLogUtil->logInfo("Relaz:SMALLER = Nothing to save");
841 mocchiut 1.2 mainLogUtil->logInfo("\nFinish merging ROOT files");
842 mocchiut 1.1 if(res){delete res; res = NULL;}
843 mocchiut 1.2 if(row){delete row; row = NULL;}
844 mocchiut 1.1 return true;
845     }
846     else if(relaz == BIGGER)//spezzettamento
847     {
848     mainLogUtil->logInfo("Relaz:BIGGER = (1st part) Saving the first part of the Current ROOT file");
849     saveMergeROOT_DB(Table_ROOT_Merging, my_id,
850 mocchiut 1.3 pkt_number_init, (pkt_num_in_db-1),
851 mocchiut 1.2 obt_init, pkt_obt_in_db,
852     real_time_init, time_in_db,
853 mocchiut 1.1 boot_number,
854     percentage);
855 mocchiut 1.2
856 mocchiut 1.1 mainLogUtil->logInfo("Relaz:BIGGER = (2nd part)Changing Init values of the Current ROOT file");
857 mocchiut 1.3 pkt_number_init = (pkt_num_fin_db+1);
858 mocchiut 1.2 obt_init= pkt_obt_fin_db;
859     real_time_init= time_fin_db;
860    
861     log.str("");
862     log<<"\n*** Current ROOT file becomes: pkt_number_init= "<<pkt_number_init<<" obt_init= "<<obt_init<<" real_time_init= "<<real_time_init;
863     log<<" pkt_number_last= "<<pkt_number_last<<" obt_last= "<<obt_last<<" real_time_last= "<<real_time_last<<" ***";
864     slog=log.str();
865     mainLogUtil->logAll(slog);
866     }//if relaz
867     }//if perc
868 mocchiut 1.1 }//for num_rows
869 mocchiut 1.2 }//if num_rows
870 mocchiut 1.1
871     if(res){delete res; res = NULL;}
872     if(row){delete row; row = NULL;}
873 mocchiut 1.2
874     }//for relaz
875 mocchiut 1.1
876     mainLogUtil->logInfo("Saving Current ROOT file");
877     saveMergeROOT_DB(Table_ROOT_Merging, my_id,
878     pkt_number_init, pkt_number_last,
879     obt_init, obt_last,
880     real_time_init, real_time_last,
881     boot_number,
882     percentage);
883    
884     mainLogUtil->logInfo("Finish merging ROOT files");
885     return true;
886 mocchiut 1.2
887 mocchiut 1.1 }
888    
889     //unsigned int root_id, percentage non le devo modificare
890     bool PacketUser::updateMergeROOT_DB(char* table_name,
891     unsigned int root_id,
892     unsigned long int pkt_number_in, unsigned long int pkt_number_fin,
893     unsigned long int obt_in, unsigned long int obt_fin,
894     unsigned long int mtime_init, unsigned long int mtime_last,
895     unsigned long int mboot_num,
896     double bad_perc,
897     unsigned int ID_record, type_Rel_ROOT type_rel){
898    
899 mocchiut 1.2 stringstream oss;
900     oss.str("");
901    
902 mocchiut 1.1 if(type_rel == AFTER){
903     mainLogUtil->logInfo("Relaz:AFTER = Updating Last values of the DB ROOT file");
904     //marco_new:tolti tutti gli apici che qui non devono essere
905     oss << "UPDATE "<< table_name
906 mocchiut 1.3 << " SET PKT_NUMBER_FINAL ="<< (pkt_number_init - 1)
907 mocchiut 1.1 <<", PKT_OBT_FINAL ="<< obt_init
908     <<", REAL_TIME_LAST ="<< real_time_init<<" WHERE ID_N ="<< ID_record <<";";
909 mocchiut 1.2
910 mocchiut 1.1 }
911     else if(type_rel == BEFORE){
912 mocchiut 1.2 mainLogUtil->logInfo("Relaz:BEFORE = Updating Init values of the DB ROOT file");
913 mocchiut 1.1 oss << "UPDATE "<< table_name
914 mocchiut 1.3 << " SET PKT_NUMBER_INIT ="<< (pkt_number_last+1)
915 mocchiut 1.1 <<", PKT_OBT_INIT ="<< obt_last
916     <<", REAL_TIME_INIT ="<< real_time_last<<" WHERE ID_N ="<< ID_record<<";";
917     }
918     else if(type_rel == SMALLER){
919     //spezzettamentento
920     mainLogUtil->logInfo("Relaz:SMALLER = (1st part) Updating Last values of the DB ROOT file");
921    
922     oss << "UPDATE "<< table_name
923 mocchiut 1.3 << " SET PKT_NUMBER_FINAL="<< (pkt_number_init-1)
924 mocchiut 1.1 <<", PKT_OBT_FINAL ="<< obt_init
925     <<", REAL_TIME_LAST ="<< real_time_init<<" WHERE ID_N ="<< ID_record<<";";
926    
927 mocchiut 1.2 mainLogUtil->logInfo("Relaz:SMALLER = (2nd part) Saving the second part of the DB ROOT file");
928    
929     saveMergeROOT_DB(table_name, root_id,
930 mocchiut 1.3 (pkt_number_last+1), pkt_number_fin,
931 mocchiut 1.2 obt_last, obt_fin,
932     real_time_last, mtime_last,
933     mboot_num,
934     bad_perc);
935 mocchiut 1.1 }
936     else if(type_rel == BIGGER){
937     //marco_new: ok anche se coincidenti etc
938 mocchiut 1.4 // oss << "DELETE FROM "<< table_name <<" WHERE ID_N ="<< ID_record<<";"; // EMILIANO
939     oss << "UPDATE "<< table_name <<" SET GOOD=0 WHERE ID_N ="<< ID_record<<";"; // EMILIANO DO NOT DELETE FROM ROOT_TABLE_MERGING JUST SET GOOD FLAG TO ZERO
940 mocchiut 1.2 mainLogUtil->logInfo("Record deleted from merging table");
941 mocchiut 1.1 }
942     else
943     return false;
944    
945     string msg = oss.str();
946     mainLogUtil->logInfo(msg);
947    
948     stringstream oss1;
949     oss1.str()="";
950     string msg1;
951    
952     TSQLResult* res=NULL;
953     res= sqlServer->Query(oss.str().c_str());
954     if(!res)
955     {
956     oss1<<"DBError UNABLE to: "<<oss.str().c_str()<<endl;
957     msg1=oss1.str();
958     mainLogUtil->logError(msg1);
959     return false;
960     }
961     if(res){delete res; res = NULL;}
962     return true;
963     }
964    
965 mocchiut 1.2 //cerca eventuali ROOT files in DB che possono venire mergiati
966     //marco_new bordi: messo in after a before casi in cui smaller con un bordo in comune
967     //marco_new bordi: messo in bigger casi con bordi in comune; tra questi anche caso particolare di coincidente
968     //marco_new bordi: smaller resta solo caso in cui DB e' piu largo sia a dx che a sx
969 mocchiut 1.1 TSQLResult* PacketUser::Select_merging(char* table_name, unsigned long int mtime_init, unsigned long int mtime_last, type_Rel_ROOT type_rel)
970     {
971     TSQLResult* res=NULL;
972     stringstream query;
973     query.str("");
974    
975     if(type_rel == AFTER)
976 mocchiut 1.4 query<<"select * from "<<table_name<<" where GOOD=1 and REAL_TIME_LAST > "<< mtime_init <<" and REAL_TIME_LAST <= "<< mtime_last <<" and REAL_TIME_INIT < "<< mtime_init; // EMI
977 mocchiut 1.1 else if(type_rel == BEFORE)
978 mocchiut 1.4 query<<"select * from "<<table_name<<" where GOOD=1 and REAL_TIME_INIT >= "<< mtime_init <<" and REAL_TIME_INIT < "<< mtime_last <<" and REAL_TIME_LAST > "<< mtime_last; // EMI
979 mocchiut 1.1 else if(type_rel == SMALLER)
980 mocchiut 1.4 query<<"select * from "<<table_name<<" where GOOD=1 and REAL_TIME_INIT < "<< mtime_init <<" and REAL_TIME_LAST > "<< mtime_last; // EMI
981 mocchiut 1.1 else if(type_rel == BIGGER)
982 mocchiut 1.4 query<<"select * from "<<table_name<<" where GOOD=1 and REAL_TIME_INIT >= "<< mtime_init <<" and REAL_TIME_LAST <= "<< mtime_last; // EMI
983 mocchiut 1.1 else
984     return 0;
985    
986     query<< " order by REAL_TIME_INIT ASC";//marco_new: inutile
987 mocchiut 1.2 //se volessi mettere un filtro sulla qualita'
988 mocchiut 1.1 // query<<" and NUM_PKT_SAVED - BAD_PKT_CALREAD - BAD_PKT_READ - BAD_PKT >= 2" ;
989     string msg = query.str();
990     mainLogUtil->logAll(msg);
991 mocchiut 1.2 res= sqlServer->Query(query.str().c_str());
992 mocchiut 1.1 stringstream oss1;
993 mocchiut 1.2 oss1.str()="";
994     string msg1;
995 mocchiut 1.1
996     if (!res)
997     {
998     oss1<<"DBError UNABLE to: "<<query.str().c_str()<<endl;
999     msg1=oss1.str();
1000     mainLogUtil->logError(msg1);
1001     }
1002    
1003     return res;
1004     }
1005    
1006     bool PacketUser::saveMergeROOT_DB(char* table_name, unsigned int root_id,
1007     unsigned long int pkt_number_in, unsigned long int pkt_number_fin,
1008     unsigned long int obt_in, unsigned long int obt_fin,
1009     unsigned long int mtime_init, unsigned long int mtime_last,
1010     unsigned long int mboot_num,
1011     double percentage)
1012     {
1013    
1014     stringstream oss;
1015     oss.str("");
1016 mocchiut 1.3 oss << "INSERT INTO "<< table_name <<" (ID_N, ROOT_ID_N, PKT_NUMBER_INIT, PKT_NUMBER_FINAL, PKT_OBT_INIT, PKT_OBT_FINAL, REAL_TIME_INIT, REAL_TIME_LAST, BOOT_NUMBER, BAD_PKT_PERCENTAGE, INSERT_TIME, INSERTED_BY)"
1017 mocchiut 1.1 << " VALUES ('"<<0<< "','" <<root_id<<"','"<< pkt_number_in <<"','"<< pkt_number_fin << "','"<< obt_in <<"','"<< obt_fin<< "','"
1018     << mtime_init << "','" << mtime_last << "','"
1019     << mboot_num <<"','"
1020     << percentage <<"',"
1021 mocchiut 1.3 <<"NULL"<<",'"
1022     << tag_value<<"'"
1023     << ")";
1024 mocchiut 1.1
1025     string msg = oss.str();
1026     mainLogUtil->logAll(msg);
1027 mocchiut 1.2
1028 mocchiut 1.1 //marco_new: controlla
1029     //marco_new: esci se sono arrivato a zero
1030     // if(real_time_last==real_time_init){
1031     if(mtime_init==mtime_last){
1032     mainLogUtil->logAll("Nothing to be saved");
1033    
1034     // if(res){delete res; res = NULL;}
1035     // if(row){delete row; row = NULL;}
1036     return true;
1037     }
1038    
1039     stringstream oss1;
1040     oss1.str()="";
1041     string msg1;
1042    
1043     TSQLResult* res=NULL;
1044     res= sqlServer->Query(oss.str().c_str());
1045     if(!res)
1046     {
1047     oss1<<"DBError UNABLE to: "<<oss.str().c_str()<<endl;
1048     msg1=oss1.str();
1049     mainLogUtil->logError(msg1);
1050     return false;
1051     }
1052     if(res){delete res; res = NULL;}
1053     return true;
1054     }
1055    
1056     //Utility: return max(IDN)
1057     unsigned int PacketUser::select_maxIDN_DB(char* table_name)
1058     {
1059    
1060     if (!strcmp(table_name,Table_ROOT_Bad))
1061     {
1062     return 0;
1063     }
1064     unsigned int idN=0;
1065     TSQLResult* res=NULL;
1066     stringstream oss;
1067     oss.str("");
1068     oss<<"select max(ID_N) from "<<table_name;
1069 mocchiut 1.2 // string msg = oss.str();
1070     // mainLogUtil->logAll(msg);
1071 mocchiut 1.1 res= sqlServer->Query(oss.str().c_str());
1072    
1073     stringstream oss1;
1074     oss1.str()="";
1075     string msg1;
1076    
1077     if(!res)
1078     {
1079     oss1<<"DBError UNABLE to: "<<oss.str().c_str()<<endl;
1080     msg1=oss1.str();
1081     mainLogUtil->logError(msg1);
1082     return 0;
1083     }
1084    
1085     TSQLRow* row=NULL;
1086     row=res->Next();
1087     if (!row )
1088     {
1089     oss1<<"DBError UNABLE to: "<<oss.str().c_str()<<endl;
1090     msg1=oss1.str();
1091     mainLogUtil->logError(msg1);
1092     return 0;
1093     }
1094    
1095     idN=atoi(row->GetField(0));
1096     if(row){delete row; row = NULL;}
1097     if(res){delete res; res = NULL;}
1098 mocchiut 1.2
1099     oss<<". idN = "<<idN;
1100     string msg = oss.str();
1101     mainLogUtil->logAll(msg);
1102    
1103 mocchiut 1.1 return idN;
1104     }
1105    
1106     /**
1107     * Lock par=table, if par=null lock all tables
1108     */
1109     int PacketUser::LockTables(char* tableTobeLocked)
1110     {
1111     //se non ho il DB :)
1112     if(!do_cont_check) return 999;
1113    
1114     TSQLResult* res=NULL;
1115     stringstream oss;
1116     oss.str("");
1117     if(!tableTobeLocked)
1118     oss << "lock table "<<Table_ROOT_Good<<" write, "<<Table_ROOT_Bad<<" write, "<<Table_GL_RESURS_OFFSET<<" write, "<<Table_ROOT_Merging<<" write;";
1119     else
1120     oss << "lock table "<<tableTobeLocked<<" write; ";
1121    
1122     string msg = oss.str();
1123     mainLogUtil->logAll(msg);
1124    
1125     res= sqlServer->Query(oss.str().c_str());
1126    
1127     stringstream oss1;
1128     oss1.str()="";
1129     string msg1;
1130    
1131     if(!res)
1132     {
1133     oss1<<"DBError UNABLE to: "<<oss.str().c_str()<<endl;
1134     msg1=oss1.str();
1135     mainLogUtil->logError(msg1);
1136     return 1;
1137     }
1138    
1139     if(res){delete res; res = NULL;}
1140 mocchiut 1.2 mainLogUtil->logAll("TABLES LOCKED");
1141 mocchiut 1.1 return 0;
1142     }
1143    
1144     /**
1145     * UNLock tables
1146     */
1147     int PacketUser::UnLockTables(){
1148     //se non ho il DB :)
1149     if(!do_cont_check) return 999;
1150    
1151     TSQLResult* res=NULL;
1152     stringstream oss;
1153     oss.str("");
1154     oss << "unlock tables;";
1155    
1156     string msg = oss.str();
1157     mainLogUtil->logAll(msg);
1158    
1159     res= sqlServer->Query(oss.str().c_str());
1160    
1161     stringstream oss1;
1162     oss1.str()="";
1163     string msg1;
1164    
1165     if(!res)
1166     {
1167     oss1<<"DBError UNABLE to: "<<oss.str().c_str()<<endl;
1168     msg1=oss1.str();
1169     mainLogUtil->logError(msg1);
1170     return 1;
1171     }
1172    
1173     if(res){delete res; res = NULL;}
1174 mocchiut 1.2 mainLogUtil->logAll("TABLES UNLOCKED");
1175 mocchiut 1.1
1176     return 0;
1177     }
1178    
1179     /*********************************************************/
1180     //marco_new_31
1181     void PacketUser::OpenDBConnection(char* tableTobeLocked){
1182     if(do_cont_check){
1183 mocchiut 1.2 //controllo che non sia gia' aperta
1184 mocchiut 1.1 if(!sqlServer){
1185     sqlServer = TSQLServer::Connect(connection,db_user,db_pwd);
1186     if ((!sqlServer)||(!(sqlServer->IsConnected()))){cout<<"Can not connect with MYSQL sever"<<endl;}
1187 mocchiut 1.2 mainLogUtil->logAll("Connected to DB");
1188     //blocca le tabelle
1189     LockTables(tableTobeLocked);
1190 mocchiut 1.1 }
1191     }
1192    
1193     }
1194    
1195     //marco_new_31
1196     void PacketUser::CloseDBConnection(){
1197     if(do_cont_check){
1198     //controllo che ce ne sia una aperta
1199     if(sqlServer && sqlServer->IsConnected()){
1200     //marco_new: sblocca tutte le tabelle
1201     UnLockTables();
1202     sqlServer->Close();
1203 mocchiut 1.2 delete sqlServer;
1204 mocchiut 1.1 sqlServer=NULL;
1205 mocchiut 1.2 mainLogUtil->logAll("Closed Connection to DB");
1206 mocchiut 1.1 }
1207     }
1208     }
1209    
1210    
1211    
1212     /***********************************************************************************************************************/
1213     /*#################################################### HIC SUNT LEONES ################################################*/
1214     /***********************************************************************************************************************/
1215     //UNUSED: dbg functions...
1216    
1217     //Return the system time in ms
1218     unsigned long long PacketUser::Record_Time(){
1219     timeval tv;
1220     gettimeofday(&tv,NULL);
1221     unsigned long long timems = (unsigned long long)tv.tv_sec * (unsigned long long)1000 + tv.tv_usec / 1000;
1222     return timems;
1223     }
1224    
1225     //dbg_functions:
1226    
1227     //UNUSED. save a packet in a file
1228     void PacketUser::savePKT_file(char* headerPkt,
1229     char* pamPkt,
1230     long int length,
1231     bool append,
1232     char* nomefile)
1233     {
1234     char fno[80]="";
1235     ofstream fout;
1236 mocchiut 1.4 sprintf(fno,"%s/pkt%d_of_%s.pkt", gSystem->ExpandPathName(outDir), numPKTSaved, nomefile); // EMI
1237 mocchiut 1.1
1238     if(append==true)
1239     fout.open(fno, ios::binary | ios::app);
1240     else
1241     fout.open(fno, ios::binary);
1242    
1243     if (!fout) {cout<<"can not open output file "<<fno<<endl; return;}
1244     fout.write(headerPkt,LENGTH_HEADER_PKT);
1245     fout.write(pamPkt,length);
1246     fout.close();
1247     }
1248    
1249     //UNUSED
1250     void PacketUser::saveALL_PKT(char* headerPkt, char* pamPkt, long int length, bool append)
1251     {
1252     char fno[80]="";
1253     ofstream fout;
1254     if(append==true)
1255     {
1256 mocchiut 1.4 sprintf(fno,"%s/packets.pkt", gSystem->ExpandPathName(outDir)); // EMI
1257 mocchiut 1.1 fout.open(fno, ios::binary | ios::app);
1258     }
1259     else{
1260 mocchiut 1.4 sprintf(fno,"%s/packet%d.pkt", gSystem->ExpandPathName(outDir), numPKT ); // EMI
1261 mocchiut 1.1 fout.open(fno, ios::binary);
1262     }
1263    
1264     if (!fout) {cout<<"can not open output file "<<fno<<endl; return;}
1265     fout.write(headerPkt,LENGTH_HEADER_PKT);
1266     fout.write(pamPkt,length);
1267     fout.close();
1268     }
1269    
1270    
1271     }

  ViewVC Help
Powered by ViewVC 1.1.23