/[H9]/trunk/FlisServer/FlisServerDlg.cpp
ViewVC logotype

Diff of /trunk/FlisServer/FlisServerDlg.cpp

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

revision 121 by kevin, Sun Dec 2 12:03:03 2007 UTC revision 297 by torben, Mon Dec 17 15:05:06 2007 UTC
# Line 6  Line 6 
6  #include "FlisServerDlg.h"  #include "FlisServerDlg.h"
7  #include <vector>  #include <vector>
8  #include ".\flisserverdlg.h"  #include ".\flisserverdlg.h"
9    #include <atlrx.h>
10    
11  #ifdef _DEBUG  #ifdef _DEBUG
12  #define new DEBUG_NEW  #define new DEBUG_NEW
# Line 63  BEGIN_MESSAGE_MAP(CFlisServerDlg, CDialo Line 64  BEGIN_MESSAGE_MAP(CFlisServerDlg, CDialo
64          ON_WM_SYSCOMMAND()          ON_WM_SYSCOMMAND()
65          ON_WM_PAINT()          ON_WM_PAINT()
66          ON_WM_QUERYDRAGICON()          ON_WM_QUERYDRAGICON()
         ON_MESSAGE(UWM_MYMESSAGE, OnShowString)  
67          //}}AFX_MSG_MAP          //}}AFX_MSG_MAP
68          ON_BN_CLICKED(IDCLOSE, OnBnClickedClose)          ON_BN_CLICKED(IDCLOSE, OnBnClickedClose)
         ON_BN_CLICKED(IDC_GSMPIN, OnBnClickedGsmpin)  
69          ON_BN_CLICKED(IDC_Start, OnBnClickedStart)          ON_BN_CLICKED(IDC_Start, OnBnClickedStart)
70  END_MESSAGE_MAP()  END_MESSAGE_MAP()
71    
# Line 158  HCURSOR CFlisServerDlg::OnQueryDragIcon( Line 157  HCURSOR CFlisServerDlg::OnQueryDragIcon(
157  }  }
158  int CFlisServerDlg::StartSerial(void)  int CFlisServerDlg::StartSerial(void)
159  {  {
160            
161          int Baud;          int Baud;
         CString SerialPort = "COM3";  
162    
163            ConfigFile config;
164            try {
165                    config.ReadSettings();
166            } catch(...) {
167                    MessageBox("Could not open config file");
168                    OnOK();
169                    return true;
170            }
171            
172          Baud = 1200;          Baud = 1200;
173          if( Serial.isOpen() ){          if( Serial.isOpen() )
174                  Serial.close();          {
175                  Serial.open( SerialPort, Baud );                  try
176                    {
177                            Serial.close();
178                            Serial.open( config.comport, Baud );
179                    }
180                    catch (...)
181                    {
182                            MessageBox( "Serial.open() exception" );
183                            return 0;
184                    }
185          }          }
186          else {          else
187                  Serial.open( SerialPort, Baud );          {
188                    try
189                    {
190                            Serial.open( config.comport, Baud );
191                    }
192                    catch (...)
193                    {
194                            MessageBox( "Serial.open() exception 2" );
195                            return 0;
196                    }
197          }          }
198            
199                                    
200  return 0;  return 0;
201  }  }
# Line 178  std::vector<unsigned char> CFlisServerDl Line 204  std::vector<unsigned char> CFlisServerDl
204          std::vector<unsigned char> buf;          std::vector<unsigned char> buf;
205          while(Serial.getComstat().cbInQue > 0)          while(Serial.getComstat().cbInQue > 0)
206          {          {
207          unsigned char data = Serial.readByte();                  unsigned char data = Serial.readByte();
208    
209          buf.push_back(data);                  buf.push_back(data);
210          }          }
211          return buf;          return buf;
212  }  }
# Line 198  void CFlisServerDlg::writeFrame(std::vec Line 224  void CFlisServerDlg::writeFrame(std::vec
224  }  }
225  void CFlisServerDlg::SetPin()  void CFlisServerDlg::SetPin()
226  {  {
227            bool ready = true;
228          CString tekst;          CString tekst;
229          std::vector<unsigned char> data;          std::vector<unsigned char> data;
230    
231          data.push_back('a');          data.push_back('a');
232          data.push_back('t');          data.push_back('t');
233          data.push_back('+');          data.push_back('+');
# Line 207  void CFlisServerDlg::SetPin() Line 235  void CFlisServerDlg::SetPin()
235          data.push_back('p');          data.push_back('p');
236          data.push_back('i');          data.push_back('i');
237          data.push_back('n');          data.push_back('n');
238          data.push_back('=');          data.push_back('?');
         data.push_back('2');  
         data.push_back('5');  
         data.push_back('9');  
         data.push_back('5');  
239    
240          writeFrame(data);          writeFrame(data);
241  /*      Sleep(750);          Sleep(100);
242          if(Serial.getComstat().cbInQue > 0)          if(Serial.getComstat().cbInQue > 0)
243          {          {
244                  std::vector<unsigned char> answer = readFrame();                  std::vector<unsigned char> answer = readFrame();
245                  Sleep(50);                  Sleep(50);
246                          char array1[25];  
247                          int i;                  for (int i=0; i<answer.size(); i++)
                         for (int i=0; i<answer.size(); i++)  
248                          {                          {
249                                  array1[i] = answer[i];                                  if ((answer[i] != 0x0A) && (answer[i] != 0x0D))
250                                    {
251                                            tekst.AppendChar(answer[i]);
252                                    }
253                          }                          }
254                                            AppendText(tekst);
255                          for (int i=0; i<answer.size(); i++)          }
256            Sleep(5);
257            tekst.MakeLower();
258            int pos = tekst.Find("+cpin: ",0);
259            if (pos != -1)
260            {
261                    tekst = tekst.Right( tekst.GetLength() - pos -1);
262            }
263    
264            if (tekst == "cpin: sim pin")
265            {
266                    CString pin;
267                    ConfigFile config;
268                    try {
269                            config.ReadSettings();
270                    } catch(...) {
271                            MessageBox("Could not open config file");
272                    }
273                    Sleep(50);
274    
275                    data.clear();
276                    data.push_back('a');
277                    data.push_back('t');
278                    data.push_back('+');
279                    data.push_back('c');
280                    data.push_back('p');
281                    data.push_back('i');
282                    data.push_back('n');
283                    data.push_back('=');
284                    for (int i = 0; i<config.pincode.GetLength(); i++)
285                    {
286                    data.push_back(config.pincode[i]);
287                    }
288    
289                    writeFrame(data);
290    
291                    Sleep(500);
292    
293                    while (ready == true)
294                    {
295                            if (Serial.getComstat().cbInQue > 120)
296                          {                          {
297                                  if ((array1[i] != 0x0A) && (array1[i] != 0x0D))                                  std::vector<unsigned char> answer = readFrame();
298                                    CString tekst;
299                            
300                                    for (int i=0; i<answer.size(); i++)
301                                    {
302                                            if ((answer[i] != 0x0A) && (answer[i] != 0x0D))
303                                            {
304                                                    tekst.AppendChar(answer[i]);
305                                            }
306                                    }
307                                    int n = tekst.Find("WIND: 11",0);
308                                    if (n > -1)
309                                  {                                  {
310                                          tekst.AppendChar(array1[i]);                                          ready = false;
311                                    }
312                                    else
313                                    {
314                                            AppendText(tekst);
315                                  }                                  }
316                          }                          }
317                          m_Textwindow.SetWindowText(tekst);                          Sleep(10); //Small delay to avoid busy wait
318                    }
319            }
320            else if (tekst == "cpin: ready")
321            {
322                    AppendText("No pincode needed");
323            }
324            else
325            {
326                    AppendText("Error in set pin part of the code");
327          }          }
 */  
328  }  }
329  void CFlisServerDlg::SendSmsData(std::vector<unsigned char> data)  void CFlisServerDlg::SendSmsData(std::vector<unsigned char> data)
330  {        {      
# Line 252  void CFlisServerDlg::SendSmsData(std::ve Line 341  void CFlisServerDlg::SendSmsData(std::ve
341                  CString tekst;                  CString tekst;
342                  std::vector<unsigned char> answer = readFrame();                  std::vector<unsigned char> answer = readFrame();
343                  Sleep(50);                  Sleep(50);
344                          char array1[25];  
345                          int i;                  for (int i=0; i<answer.size(); i++)
                         for (int i=0; i<answer.size(); i++)  
                         {  
                                 array1[i] = answer[i];  
                         }  
                   
                         for (int i=0; i<answer.size(); i++)  
346                          {                          {
347                                  if ((array1[i] != 0x0A) && (array1[i] != 0x0D))                                  if ((answer[i] != 0x0A) && (answer[i] != 0x0D))
348                                  {                                  {
349                                          tekst.AppendChar(array1[i]);                                          tekst.AppendChar(answer[i]);
350                                  }                                  }
351                          }                          }
352                          m_Textwindow.SetWindowText(tekst);                          AppendText(tekst);
353          }          }
354    
355  }  }
356  void CFlisServerDlg::SendSmsHead(std::vector<unsigned char> data)  void CFlisServerDlg::SendSmsHead(std::vector<unsigned char> tlfnr)
357  {  {
358          vector<unsigned char> atcommand;          vector<unsigned char> atcommand;
359          atcommand.push_back('a');          atcommand.push_back('a');
# Line 290  void CFlisServerDlg::SendSmsHead(std::ve Line 373  void CFlisServerDlg::SendSmsHead(std::ve
373                  Sleep(5);                  Sleep(5);
374          }          }
375                    
376          for (int i=0; i<data.size(); i++)          for (int i=0; i<tlfnr.size(); i++)
377          {          {
378                  Serial.writeByte( data[i] );                  Serial.writeByte( tlfnr[i] );
379                  Sleep(5);                  Sleep(5);
380          }          }
381          Serial.writeByte(atcommand[s]);          Serial.writeByte(atcommand[s]);
# Line 302  void CFlisServerDlg::SendSmsHead(std::ve Line 385  void CFlisServerDlg::SendSmsHead(std::ve
385  void CFlisServerDlg::DBConnect()  void CFlisServerDlg::DBConnect()
386  {  {
387          CString dsn;          CString dsn;
388          dsn.Format("ODBC;Description=asd;DRIVER=PostgreSQL ANSI;SERVER=t-hoerup.dk; uid=serrenab;password=furnacemonitor;database=flisfyr;sslmode=prefer");          ConfigFile config;
389          //dsn.Format("ODBC;Description=asd;DRIVER=PostgreSQL ANSI;SERVER=192.168.134.132; uid=serrenab;password=furnacemonitor;database=flisfyr;sslmode=prefer");   //skole server          try {
390                    config.ReadSettings();
391            } catch(...) {
392                    MessageBox("Could not open config file");
393            }
394            
395            dsn.Format("ODBC;Description=asd;DRIVER=PostgreSQL ANSI;SERVER=%s; uid=%s;password=%s;database=%s;sslmode=prefer",config.host,config.username, config.password, config.database);
396          db.OpenEx(dsn, CDatabase::noOdbcDialog);          db.OpenEx(dsn, CDatabase::noOdbcDialog);
397  }  }
398  vector<Commands> CFlisServerDlg::DBRead(void)  vector<Commands> CFlisServerDlg::DBReadCommands(void)
399  {  {
400          vector<Commands> buffer;          vector<Commands> buffer;
401    
402          CString SQL, IDnr, CommandID, InstallationsID;          CString SQL, IDnr, CommandID, InstallationsID;
403          SQL = "select id,date_trunc('second', created) as created,executed,commandid,installationid from command WHERE executed IS NULL;";          SQL = "select id,date_trunc('second', created) as created,executed,commandid,installationid from command WHERE executed IS NULL ORDER BY created ASC LIMIT 1;";
404          CRecordset rs(&db);          CRecordset rs(&db);
405          rs.Open(AFX_DB_USE_DEFAULT_TYPE, SQL);          rs.Open(AFX_DB_USE_DEFAULT_TYPE, SQL);
406          if (rs.GetRecordCount()>0)          if (rs.GetRecordCount()>0)
407          {          {
408                  rs.MoveFirst();                  rs.MoveFirst();
409                  while(!rs.IsEOF())                          
                 {  
410                  Commands Mycom;                  Commands Mycom;
411                  rs.GetFieldValue((short)0, IDnr);                  rs.GetFieldValue((short)0, IDnr);
412                  rs.GetFieldValue(3, CommandID);                  rs.GetFieldValue(3, CommandID);
# Line 330  vector<Commands> CFlisServerDlg::DBRead( Line 418  vector<Commands> CFlisServerDlg::DBRead(
418    
419                  buffer.push_back(Mycom);                  buffer.push_back(Mycom);
420                  rs.MoveNext();                  rs.MoveNext();
421                  }  
422          }          }
423          rs.Close();          rs.Close();
424          return buffer;          return buffer;
425  }  }
426  void CFlisServerDlg::ReadSms()  void CFlisServerDlg::ReadSms()
427  {  {
428          CString tekst, oldtekst;          CString tekst;
429          Sleep(950);          Sleep(950);             //Holder en pause for at lade hele sms'en komme ind i serial køen.
430          if(Serial.getComstat().cbInQue > 0)          if(Serial.getComstat().cbInQue > 0)
431          {          {
432                  std::vector<unsigned char> answer = readFrame();                  std::vector<unsigned char> answer = readFrame();
433                  Sleep(50);                  Sleep(50);
434                          char array1[250];  
                         int i;  
                         for (int i=0; i<answer.size(); i++)  
                         {  
                                 array1[i] = answer[i];  
                         }  
                   
435                          for (int i=0; i<answer.size(); i++)                          for (int i=0; i<answer.size(); i++)
436                          {                          {
437                                  if ((array1[i] != 0x0A) && (array1[i] != 0x0D))                                  if ((answer[i] != 0x0A) && (answer[i] != 0x0D))
438                                  {                                  {
439                                          tekst.AppendChar(array1[i]);                                          tekst.AppendChar(answer[i]);
440                                  }                                  }
441                          }                          }
442    
443                          m_Textwindow.GetWindowText(oldtekst);                          AppendText(tekst);
                         oldtekst.Append("\r\n");  
                         oldtekst.Append(tekst);  
                         m_Textwindow.SetWindowText(oldtekst);  
444                          SmsSplit(tekst);                          SmsSplit(tekst);
445          }          }
446  }  }
447  void CFlisServerDlg::SmsSplit(CString data)  void CFlisServerDlg::SmsSplit(CString data)
448  {  {
449          CString FyrData, TlfNr, SmsCount, Temper, Flamme, Flis, FremFejl, PowerFail, oldtekst;          CString FyrData, TlfNr, SmsCount, Temper, Flamme, Flis, FremFejl, PowerFail;
450          char CharData[150];          TlfNr = data.Mid(24,8);
451          strcpy(CharData,data);          FyrData = data.Mid(57,data.GetLength()-59);
452            FyrData.Append(":");
453    
454          int s=24;          if (FyrData.MakeLower() == "conf ok:")
         for (int i=0; i<=7; i++)  
455          {          {
456                  TlfNr.AppendChar(CharData[s]);                  HandleAcknowledge(TlfNr);
457                  s++;                  return;
458          }          }
459            CAtlRegExp<> regex;
460            if (regex.Parse("^{[0-9]+}:{[0-9]+}:[0-1]:[0-1]:[0-1]:[0-1]:$") == REPARSE_ERROR_OK)
461            {
462    
463                    CAtlREMatchContext<> pContext;
464    
465          for (int s=57; s<=(data.GetLength()-3); s++)                  if (!regex.Match(FyrData, &pContext))
466                    {
467                            AppendText("Invalid SMS recieved");
468                            return;
469                    }
470            }
471            else
472          {          {
473                  FyrData.AppendChar(CharData[s]);                  AppendText("Regex PARSE error!!!"); //Burde aldrig kunne ske !
474          }          }
475          FyrData.Append(":");  
           
476          SmsCount = Splitter(FyrData);          SmsCount = Splitter(FyrData);
477          Temper = Splitter(FyrData);          Temper = Splitter(FyrData);
478          Flamme = Splitter(FyrData);          Flamme = Splitter(FyrData);
479          Flis = Splitter(FyrData);          Flis = Splitter(FyrData);
480          FremFejl = Splitter(FyrData);          FremFejl = Splitter(FyrData);
481          PowerFail = Splitter(FyrData);          PowerFail = Splitter(FyrData);
482  ///////////////////////////////////////////////////////////////////////////////////////////////////////                  
483  ///////////////////// Her skal sendes data til databasen ////NÅR HEDIN KAN SENDE SMS///////////////////                  CString SQL, Textwindow, InstallNR;
484                  m_Textwindow.GetWindowText(oldtekst);                  SQL.Format("select ID from installation where installationphonenr=%s",TlfNr);
485                  oldtekst.Append("\r\n");          
486                  oldtekst.Append("På næste linie kommer SmsCount. \r\n");                  CRecordset rs(&db);
487                  oldtekst.Append(SmsCount);                  rs.Open(AFX_DB_USE_DEFAULT_TYPE, SQL);
488                  oldtekst.Append("\r\n");                  if (rs.GetRecordCount()>0)
489                  oldtekst.Append("På næste linie kommer Temper. \r\n");                  {
490                  oldtekst.Append(Temper);                          rs.MoveFirst();        
491                  oldtekst.Append("\r\n");                          rs.GetFieldValue((short)0,InstallNR);
492                  oldtekst.Append("På næste linie kommer Flamme. \r\n");                  }
493                  oldtekst.Append(Flamme);                  rs.Close();
494                  oldtekst.Append("\r\n");  
495                  oldtekst.Append("På næste linie kommer Flis. \r\n");                  SQL.Format("insert into logtable (logtime,temperature,flamedetector,solidfuelempty,conveyorerror,powerfailure,messagenr,installationnr) Values (now(),%s,'%s','%s','%s','%s',%s,%s)",Temper, Flamme, Flis, FremFejl, PowerFail, SmsCount,InstallNR);
496                  oldtekst.Append(Flis);                  try
497                  oldtekst.Append("\r\n");                  {
498                  oldtekst.Append("På næste linie kommer FremFejl. \r\n");                  db.ExecuteSQL(SQL);
499                  oldtekst.Append(FremFejl);                  }
500                  oldtekst.Append("\r\n");                  catch(CDBException* e)
501                  oldtekst.Append("På næste linie kommer PowerFail. \r\n");                  {
502                  oldtekst.Append(PowerFail);                          MessageBox(e->m_strError);
503                  oldtekst.Append("\r\n");                  }
504                  oldtekst.Append("På næste linie kommer TlfNR. \r\n");                  AppendText("Sms added to Log");
505                  oldtekst.Append(TlfNr);                  Sleep(150);
                 m_Textwindow.SetWindowText(oldtekst);  
 ///////////////////////////////////////////////////////////////////////////////////////////////////////  
 ///////////////////// Her skal sendes data til databasen //////////////////////////////////////////////  
506  }  }
507  CString CFlisServerDlg::Splitter(CString& fyrdata)  CString CFlisServerDlg::Splitter(CString& fyrdata)
508  {  {
# Line 434  void CFlisServerDlg::OnBnClickedClose() Line 520  void CFlisServerDlg::OnBnClickedClose()
520  {  {
521          // TODO: Add your control notification handler code here          // TODO: Add your control notification handler code here
522          continueThread = 0;          continueThread = 0;
523          DeleteSms();   //<--- crasher, men gider ikke bruge flere af mine penge på at teste det med sms'er, hele close laver crash, bare ikke når jeg stepper. :S          Sleep(250);
524            DeleteSms();
525    
526          Sleep(500);          Sleep(500);
527          if( Serial.isOpen() )          if( Serial.isOpen() )
# Line 444  void CFlisServerDlg::OnBnClickedClose() Line 531  void CFlisServerDlg::OnBnClickedClose()
531                    
532          if(db.IsOpen())          if(db.IsOpen())
533          {          {
534          db.Close();                  db.Close();
535          }          }
536                    
537          OnOK();          OnOK();
538    
539  }  }
   
 void CFlisServerDlg::OnBnClickedGsmpin()  
 {  
         // TODO: Add your control notification handler code here  
         SetPin();  
         Sleep(35000);  
         OnBnClickedStart();  
 }  
540  void CFlisServerDlg::DeleteSms()  void CFlisServerDlg::DeleteSms()
541  {  {
542          vector<unsigned char> atcommand;          vector<unsigned char> atcommand;
# Line 476  void CFlisServerDlg::DeleteSms() Line 555  void CFlisServerDlg::DeleteSms()
555          writeFrame(atcommand);          writeFrame(atcommand);
556          Sleep(500);          Sleep(500);
557  }  }
558  LRESULT CFlisServerDlg::OnShowString(WPARAM wParam, LPARAM lParam)  UINT threadWrapper(LPVOID thread)
 {  
         CString *s = (CString*) lParam;  
         GetDlgItem(IDC_Textwindow)->SetWindowText(*s);  
   
         delete s;  
         return 0;  
   
 }UINT threadWrapper(LPVOID thread)  
559  {  {
560          CFlisServerDlg *t = (CFlisServerDlg*) thread;          CFlisServerDlg *t = (CFlisServerDlg*) thread;
561          t->runthread();          t->runthread();
# Line 500  void CFlisServerDlg::runthread() Line 571  void CFlisServerDlg::runthread()
571  {  {
572          while (continueThread != 0)          while (continueThread != 0)
573          {          {
574                  Reader();                  MyMainThread();
575          }          }
576  }  }
577  void CFlisServerDlg::Reader()  void CFlisServerDlg::MyMainThread()
578  {  {
579          if(Serial.getComstat().cbInQue > 0)          if(Serial.getComstat().cbInQue > 0)
580                  {                  {
581                          Sleep(250);                          Sleep(250);
582                          std::vector<unsigned char> answer = readFrame();                          std::vector<unsigned char> answer = readFrame();
583                          Sleep(500);                          Sleep(500);
584                          CString tekst, oldtekst;                          CString tekst;
                         int lol;  
                         char array1[250];  
                         int i;  
                         for (int i=0; i<answer.size(); i++)  
                         {  
                                 array1[i] = answer[i];  
                         }  
585                                    
586                          for (int i=0; i<answer.size(); i++)                          for (int i=0; i<answer.size(); i++)
587                          {                          {
588                                  if ((array1[i] != 0x0A) && (array1[i] != 0x0D))                                  if ((answer[i] != 0x0A) && (answer[i] != 0x0D))
589                                  {                                  {
590                                          tekst.AppendChar(array1[i]);                                          tekst.AppendChar(answer[i]);
591                                  }                                  }
592                          }                          }
593                          tekst.Append(":");                          tekst.Append(":");
594    
595                          CString command;                          CString command;
596                          bool plus;                          bool plus = false;
597                                  int pos = tekst.Find('+',0);                                  int pos = tekst.Find('+',0);
598                                  if (pos != -1)                                  if (pos != -1)
599                                  {                                  {
# Line 541  void CFlisServerDlg::Reader() Line 605  void CFlisServerDlg::Reader()
605                                  }                                  }
606                                                    
607                                                    
608                          if(tekst == "OK")                          if(tekst.MakeLower() == "ok")
609                          {                                {      
610                                  m_Textwindow.GetWindowText(oldtekst);                                  AppendText("OK tekst modtaget");
                                 oldtekst.Append("\r\n");  
                                 oldtekst.Append("OK tekst modtaget");  
                                 m_Textwindow.SetWindowText(oldtekst);  
611                          }                          }
612                          else if (tekst == "error")                          else if (tekst.MakeLower() == "error")
613                          {                          {
614                                  m_Textwindow.GetWindowText(oldtekst);                                  CString send;
615                                  oldtekst.Append("\r\n");                                  send.Append("error tekst");
616                                  oldtekst.Append("error tekst");                                  send.Append("\r\n");
617                                  oldtekst.Append(tekst);                                  send.Append(tekst);
618                                  m_Textwindow.SetWindowText(oldtekst);                                  AppendText(send);
619                          }                          }
620                          else if (plus = true)                          else if (plus == true)
621                          {                          {
622                                  if (command = "cmti")                                  if (command.MakeLower() == "cmti")
623                                  {                                  {
624                                          CString smscount, oldteskst;                                          CString smscount;
625                                          int pos = tekst.Find(',',0);                                          int pos = tekst.Find(',',0);
626                                          if (pos != -1)                                          if (pos != -1)
627                                          {                                          {
# Line 568  void CFlisServerDlg::Reader() Line 629  void CFlisServerDlg::Reader()
629                                                  smscount.Remove(':');                                                  smscount.Remove(':');
630                                                  ResetSms++;                                                  ResetSms++;
631                                          }                                          }
632                                                  ////////////////Read sms ting//////////////////  
633                                                  std::vector<unsigned char> data;                                          std::vector<unsigned char> data;
634                                                  data.push_back('a');                                          data.push_back('a');
635                                                  data.push_back('t');                                          data.push_back('t');
636                                                  data.push_back('+');                                          data.push_back('+');
637                                                  data.push_back('c');                                          data.push_back('c');
638                                                  data.push_back('m');                                          data.push_back('m');
639                                                  data.push_back('g');                                          data.push_back('g');
640                                                  data.push_back('r');                                          data.push_back('r');
641                                                  data.push_back('=');                                          data.push_back('=');
642                                                                                            
643                                                  for (int i=0; i< smscount.GetLength(); i++)                                          for (int i=0; i< smscount.GetLength(); i++)
644                                                  {                                          {
645                                                          data.push_back(smscount[i]);                                                  data.push_back(smscount[i]);
646                                                  }                                          }
647                                                  for (int i=0; i<data.size();i++)                                          writeFrame(data);
648                                                  {  
649                                                  oldteskst.AppendChar(data[i]);                                          data.push_back(0); //Zero terminate the string befor pasting it to logwindows
650                                                  }                                          AppendText(CString(&data[0]));
651                                                  m_Textwindow.SetWindowText(oldteskst);                                          Sleep(200);
652                                                  writeFrame(data);                                          ReadSms();
                                                 Sleep(200);  
                                                 ReadSms();  
                                                 ResetSms++;  
653    
654                                  }                                  }
655                                  else if(command = "wind")                                  else if(command.MakeLower() == "wind")
656                                  {                                  {
657                                          m_Textwindow.GetWindowText(oldtekst);  
658                                          oldtekst.Append("\r\n");                                          CString send;
659                                          oldtekst.Append("Først lidt tekst på næste linie\r\n");                                          send.Append("Wind modtaget");
660                                          oldtekst.Append(tekst);                                          send.Append("\r\n");
661                                          m_Textwindow.SetWindowText(oldtekst);                                          send.Append(tekst);
662                                            AppendText(send);
663                                  }                                  }
664                          }                          }
665                          if(ResetSms == 50)                          else
666                          {                          {
667                                  DeleteSms();                                  AppendText(tekst);
668                          }                          }
   
669                  }                  }
670                  if (continueThread = 1)                  if(ResetSms == 20)
671                    {
672                            DeleteSms();
673                            AppendText("Sms'er slettet da vi nåede grænsen");
674                    }
675    
676                    if (continueThread == 1)
677                  {                  {
678                                                    
                         ////////////////DBRead stuff//////////////////  
679                          CString testdata, dataframe,testprint, sIDnr, sCommandID, sInstallationsID, sImei;                          CString testdata, dataframe,testprint, sIDnr, sCommandID, sInstallationsID, sImei;
680                            int commandtest = 0;
681                            int iAll = 1;
682                          std::vector<Commands> data;                          std::vector<Commands> data;
683                          data = DBRead();                          data = DBReadCommands();
684                          for (int i=0; i<data.size(); i++)                          for (int i=0; i<data.size(); i++)
685                          {                          {
686                                  testdata.Append(data[i].IDnr);                                  sIDnr = data[i].IDnr;
687                                  testdata.Append(":");                                  sCommandID = data[i].CommandID;
688                                  testdata.Append(data[i].CommandID);                                  commandtest = atoi(data[i].CommandID);
689                                  testdata.Append(":");                                  sInstallationsID = "0";
690                                  testdata.Append(data[i].InstallationsID);  
691                                  testdata.Append(":");                                  if(commandtest > 1)
692                          }                                  {
693                          sIDnr = Splitter(testdata);                                          sInstallationsID = data[i].InstallationsID;
694                          sCommandID = Splitter(testdata);                                  }
695                          sInstallationsID = Splitter(testdata);                          }
696                            
697                            if (commandtest > 1)
698                            {
699                                    iAll = 0;
700                            }
701    
702                          if (sIDnr.GetLength() > 0)                          if (sIDnr.GetLength() > 0)
703                          {                          {
704                                  DBReadData(sIDnr,sCommandID,sInstallationsID);                                  SendConfig(sIDnr,sCommandID,sInstallationsID);
705                          }                          }
706                            Sleep(300);
707    
708                            CheckAcknowledges();
709                          Sleep(500);                          Sleep(500);
                         ////////////////DBRead stuff//////////////////    
710                  }                  }
711  }                  CTime now = CTime::GetCurrentTime();
 void CFlisServerDlg::DBReadData(CString IDnr,CString CommandID,CString InstallationsID)  
 {  
         CString TlfNr, Imei, ServerTlfNr, updaterate;  
712    
713          ServerTlfNr = "29860132";                  CTimeSpan elapsed = now-Alive.tid;
714                    
715          //kald dbreadphone som du kalder dbread                  if (elapsed.GetTotalSeconds() >= 900)
716                    {
717                            keepaliveandread();
718                    }
719    }
720    void CFlisServerDlg::SendConfig(CString IDnr,CString CommandID,CString InstallationsID)
721    {      
722            
723          std::vector<Installation> inst;          std::vector<Installation> inst;
724          inst = DBReadPhone(InstallationsID);  
725          for (int i=0; i<inst.size(); i++)          if (CommandID == "1")
726                    inst = DBReadPhone("0");
727            else
728                    inst = DBReadPhone(InstallationsID);
729    
730            for ( int j=0; j < inst.size(); j++)
731          {          {
732                  CString dataen = inst[i].InstPhoneNr;                  CString TlfNr, Imei, updaterate;
733                    TlfNr.Empty();
734                    Imei.Empty();
735                    updaterate.Empty();
736    
737                    CString dataen = inst[j].InstPhoneNr;
738                  TlfNr.Append(dataen);                  TlfNr.Append(dataen);
739                  CString Imeidata = inst[i].Imei;                  CString Imeidata = inst[j].Imei;
740                  Imei.Append(Imeidata);                  Imei.Append(Imeidata);
741                  CString updaterat = inst[i].Updaterate;                  CString updaterat = inst[j].Updaterate;
742                  updaterate.Append(updaterat);                  updaterate.Append(updaterat);
         }  
         vector<unsigned char> tlfnr;  
         for (int i=0; i<TlfNr.GetLength(); i++)  
         {  
                 tlfnr.push_back(TlfNr[i]);  
         }  
743                    
744          int calcimei;                  vector<unsigned char> tlfnr;
745          double buf;                  for (int i=0; i<TlfNr.GetLength(); i++)
746          Imei.Remove('0');                  {
747                            tlfnr.push_back(TlfNr[i]);
748                    }
749                    
750                    int calcimei;
751                    __int64 buf;
752    
753                    buf = atof(Imei);
754                    
755                    calcimei = tversum(buf);
756                    
757                    Imei.Format("%d",calcimei);
758                    
759                    SendSmsHead(tlfnr);
760                    Sleep(250);
761                    
762                    vector<unsigned char> smsdata;
763                    
764                    for (int i=0; i<Imei.GetLength(); i++)
765                    {
766                            smsdata.push_back(Imei[i]);
767                    }
768                    smsdata.push_back(':');
769                    for (int i=0; i<Alive.Phonenr.GetLength(); i++)
770                    {
771                            smsdata.push_back(Alive.Phonenr[i]);
772                    }
773                    smsdata.push_back(':');
774                    for (int i=0; i<updaterate.GetLength(); i++)
775                    {
776                            smsdata.push_back(updaterate[i]);
777                    }
778    
779                    SendSmsData(smsdata);
780                    Sleep(500);
781    
782                    if (IDnr != "0")
783                    {
784                            Acks.push_back( Acknowledge(inst[j].instID,TlfNr) );
785                    }
786    
         buf = atof(Imei);  
           
         calcimei = tversum(buf);  
           
         Imei.Format("%d",calcimei);  
           
         SendSmsHead(tlfnr);  
         Sleep(500);  
         //35:29860132:75 <--- demo pakke;  
         vector<unsigned char> smsdata;  
           
         for (int i=0; i<Imei.GetLength(); i++)  
         {  
                 smsdata.push_back(Imei[i]);  
         }  
         smsdata.push_back(':');  
         for (int i=0; i<ServerTlfNr.GetLength(); i++)  
         {  
                 smsdata.push_back(ServerTlfNr[i]);  
787          }          }
788          smsdata.push_back(':');  
789          for (int i=0; i<updaterate.GetLength(); i++)          if (IDnr != "0")
790          {          {
791                  smsdata.push_back(updaterate[i]);                  CString SQL, Textwindow;
792                    SQL.Format("update command set executed=now() where id=%s",IDnr);
793                    db.ExecuteSQL(SQL);
794                    Sleep(100);
795                    AppendText("Command executed");
796          }          }
797            Sleep(150);
798    
         SendSmsData(smsdata);  
         Sleep(250);  
799    
         CString SQL;  
800    
         SQL.Format("update command set executed=now() where id=%s",IDnr);  
         db.ExecuteSQL(SQL);  
         Sleep(150);  
801    
802  }  }
803  vector<Installation> CFlisServerDlg::DBReadPhone(CString sInstallationsID)  vector<Installation> CFlisServerDlg::DBReadPhone(CString sInstallationsID)
804  {  {
805          vector<Installation> buffer;          vector<Installation> buffer;
806    
807          CString SQL, phonenr, imei, updaterate;          CString SQL, phonenr, imei, updaterate, id;
808          SQL.Format("select installationphonenr, imei, updaterate from installation WHERE id = %s",sInstallationsID);          Installation Myinst;
809    
810            if (sInstallationsID != "0")
811            {
812                    SQL.Format("select installationphonenr, imei, updaterate, id from installation WHERE id = %s", sInstallationsID);
813            }
814            else
815            {
816                    SQL.Format("select installationphonenr, imei, updaterate, id from installation");
817            }
818    
819          CRecordset rs(&db);          CRecordset rs(&db);
820          rs.Open(AFX_DB_USE_DEFAULT_TYPE, SQL);          rs.Open(AFX_DB_USE_DEFAULT_TYPE, SQL);
821          if (rs.GetRecordCount()>0)          if (rs.GetRecordCount()>0)
# Line 714  vector<Installation> CFlisServerDlg::DBR Line 823  vector<Installation> CFlisServerDlg::DBR
823                  rs.MoveFirst();                  rs.MoveFirst();
824                  while(!rs.IsEOF())                  while(!rs.IsEOF())
825                  {                  {
826                  Installation Myinst;                  
827                  rs.GetFieldValue((short)0,phonenr);                          rs.GetFieldValue((short)0,phonenr);
828                  rs.GetFieldValue(1,imei);                          rs.GetFieldValue(1,imei);
829                  rs.GetFieldValue(2,updaterate);                          rs.GetFieldValue(2,updaterate);
830                            rs.GetFieldValue(3,id);
831                  Myinst.InstPhoneNr.Append(phonenr);  
832                  Myinst.Imei.Append(imei);                          Myinst.InstPhoneNr = phonenr;
833                  Myinst.Updaterate.Append(updaterate);                          Myinst.Imei = imei;
834                            Myinst.Updaterate = updaterate;
835                            Myinst.instID = id;
836    
837                  buffer.push_back(Myinst);                          buffer.push_back(Myinst);
838                  rs.MoveNext();                          rs.MoveNext();
839                  }                  }
840          }          }
841          rs.Close();          rs.Close();
842          return buffer;          return buffer;
843  }  }
844  int CFlisServerDlg::tversum(unsigned input)  int CFlisServerDlg::tversum(__int64 input)
845  {  {
846          int sum = 0;          int sum = 0;
847          while (input > 0)          while (input > 0)
# Line 744  void CFlisServerDlg::OnBnClickedStart() Line 855  void CFlisServerDlg::OnBnClickedStart()
855  {  {
856  // TODO: Add your control notification handler code here  // TODO: Add your control notification handler code here
857    
858          continueThread = 1;          AppendText("Indsætter Pinkode, og venter på modem bliver klar, hvis pinkode er nødvendig");
859            UpdateWindow();
860            SetPin();
861            
862            Sleep(100); //Give the modem a chance to send the last data
863            while(Serial.getComstat().cbInQue > 0)
864            {
865                    Serial.readByte(); //Flush the incoming queue
866                    Sleep(1);
867            }
868        Sleep(5);
869    
870            continueThread = 1;
871            keepaliveandread();
872            Sleep(150);
873            AppendText(CString("Server phonenr read from db: ") + Alive.Phonenr );
874            AppendText("Started");
875          AfxBeginThread(threadWrapper,AfxGetMainWnd());          AfxBeginThread(threadWrapper,AfxGetMainWnd());
876  }  }
877    void CFlisServerDlg::AppendText(CString s)
878    {
879            CTime now = CTime::GetCurrentTime();
880            CString Tekst;
881            m_Textwindow.GetWindowText(Tekst);
882            Tekst.AppendFormat("%02d:%02d:%02d : ", now.GetHour(), now.GetMinute(), now.GetSecond());
883            Tekst.Append(s);
884            Tekst.Append("\r\n");
885    
886            m_Textwindow.SetWindowText(Tekst);
887            Sleep(5);
888            int g = m_Textwindow.GetScrollLimit(SB_VERT);
889            if (g > 0)
890            {
891            m_Textwindow.SetSel(m_Textwindow.GetWindowTextLength() -1,m_Textwindow.GetWindowTextLength(),false);
892            }
893    
894    }
895    void ConfigFile::ReadSettings()
896    {
897            ifstream file("Server-Settings.ini");
898            if (!file.is_open())
899                    throw("Could not open file");
900    
901            char buf[200];
902            while (!file.eof() ) {
903                    file.getline(buf,200);
904                    CString tmp(buf);
905    
906                    if (tmp.GetAt(0) == '#')
907                            continue;
908    
909                    int pos = tmp.Find('=');
910                    if (pos>0) {
911                            CString key = tmp.Left(pos).Trim().MakeLower();;
912                            CString value = tmp.Right(tmp.GetLength()-pos-1).Trim();
913    
914                            if (key == "host")
915                                    host = value;
916                            else if (key == "username")
917                                    username = value;
918                            else if (key == "password")
919                                    password = value;
920                            else if (key == "database")
921                                    database = value;
922                            else if (key == "comport")
923                                    comport = value;
924                            else if (key == "pincode")
925                                    pincode = value;
926                    }
927    
928            }
929    
930            file.close();
931    }
932    void CFlisServerDlg::HandleAcknowledge(CString tlfnr)
933    {
934            for (std::list<Acknowledge>::iterator it = Acks.begin(); it != Acks.end(); ++it)
935            {
936                    Acknowledge& current = (*it);
937                    if (current.sTlfNr == tlfnr)
938                    {
939                            CString SQL;
940                            SQL.Format("UPDATE installation SET commerror = false WHERE id = %s", current.sInstallationID);
941                            db.ExecuteSQL(SQL);
942    
943                            Acks.erase(it);
944    
945                            return;
946                    }
947            }
948    }
949    
950    void CFlisServerDlg::CheckAcknowledges()
951    {
952            CTime now = CTime::GetCurrentTime();
953            for (std::list<Acknowledge>::iterator it = Acks.begin(); it != Acks.end(); ++it)
954            {
955                    Acknowledge& current = (*it);
956    
957                    CTimeSpan elapsed = now-current.cTime;
958    
959                    if (elapsed.GetTotalSeconds() >= 300)
960                    {
961                            DumpAckList();
962                            if (current.iRetry >= 1)
963                            {
964                                    CString SQL;
965                                    SQL.Format("UPDATE installation SET commerror = true WHERE id = %s", current.sInstallationID);
966                                    db.ExecuteSQL(SQL);
967                                    Acks.erase(it);
968                                    return; // the iterator is now invalidated, but the thread loop will make sure we are here soon again
969                            }
970                            else
971                            {
972                                    SendConfig("0","2",current.sInstallationID);
973                                    current.iRetry++;
974                                    current.cTime = CTime::GetCurrentTime();
975                                    AppendText( CString("Retry send config to ") + current.sTlfNr );
976                            }
977                    }
978            }
979    }
980    
981    void CFlisServerDlg::DumpAckList()      /* Debug tool */
982    {
983            
984            CTime now = CTime::GetCurrentTime();
985            OutputDebugString("-------------------------------\n");
986            int count = 0;
987            for (std::list<Acknowledge>::iterator it = Acks.begin(); it != Acks.end(); ++it)
988            {
989                    CString msg;
990                    msg.Format("%d:%d:%d> %4d : %s\n", now.GetHour(), now.GetMinute(), now.GetSecond(), count, (*it).sTlfNr);
991                    OutputDebugString(msg);
992                    count++;
993            }
994    }
995    vector<keepalive> CFlisServerDlg::keepaliveandread(void)
996    {
997            vector<keepalive> buffer;
998    
999            CString SQL, name, value;
1000            SQL = "select name, value from config;";
1001            CRecordset rs(&db);
1002            try
1003            {
1004                    rs.Open(AFX_DB_USE_DEFAULT_TYPE, SQL);
1005                    if (rs.GetRecordCount()>0)
1006                    {
1007                            rs.MoveFirst();
1008                            
1009                            rs.GetFieldValue((short)0, name);
1010                            rs.GetFieldValue(1,value);
1011                    
1012                            Alive.name = name;
1013                            Alive.value = value;
1014                            Alive.tid = CTime::GetCurrentTime();
1015                            if(Alive.name == "phonenr")
1016                            {
1017                                    Alive.Phonenr = value;
1018                            }
1019    
1020                            buffer.push_back(Alive);
1021                            rs.MoveNext();
1022    
1023                    }
1024                    rs.Close();
1025                    return buffer;
1026            }
1027            catch (char * str)
1028            {
1029                    AppendText("Keepalive failed, closing and opening the db connection again");
1030                    if(db.IsOpen())
1031                    {
1032                            db.Close();
1033                            AppendText("DB connection closed");
1034                    }
1035                    if(!db.IsOpen())
1036                    {
1037                            DBConnect();
1038                            AppendText("DB connection started again");
1039                    }
1040                    return buffer;
1041            }
1042    
1043            
1044    }

Legend:
Removed from v.121  
changed lines
  Added in v.297

  ViewVC Help
Powered by ViewVC 1.1.20