Blame view

app/gui/oven_control/fileprocessdlg.cpp 34.2 KB
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
1
  #include <QTimer>
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
2
  #include <unistd.h>
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
3
4
5
6
  #include "fileprocessdlg.h"
  #include "ui_fileprocessdlg.h"
  #include "fileprocessor.h"
  #include "ovenstatics.h"
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
7
  #include "stringer.h"
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
8
  #include "config.h"
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
9
  #include <QDebug>
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
10
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
11
12
13
14
15
  #define ERROR_LOG_FILE_TOP  "/GasErrorHistoryTop.csv"
  #define ERROR_LOG_FILE_STEAM  "/GasErrorHistorySteam.csv"
  #define ERROR_LOG_FILE_BOTTOM  "/GasErrorHistoryBottom.csv"
  #define ERROR_LOG_FILE_TOTAL    "/TotalError.csv"
  #define SERVICE_DATA_FILE   "/ServiceData.csv"
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
16
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  
  ProgramCopyWorker::ProgramCopyWorker(){
      m_bStop = false;
  }
  
  
  ProgramCopyWorker::ProgramCopyWorker(QString strDest){
      m_strDestDir = strDest;
  }
  
  void ProgramCopyWorker::setDestPath(QString strDest){
      m_strDestDir = strDest;
  }
  
  void ProgramCopyWorker::workerMain(){
      quint64 nTotalFileSize=0;
      quint64 nCpyFileSize=0;
      uint16_t nCurProgress=0;
      int nRemainSec = 0;
      QStringList strdirlist;
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
37
38
      QString srcFilepath;
      QString destFilePath;
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
39
40
41
42
43
44
      //make destination folder
      QDir destdir(m_strDestDir);
      if(!destdir.isRoot() && destdir.exists()==false){
          destdir.mkpath(m_strDestDir);
      }
      qDebug() << "Target Path is " << m_strDestDir;
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
45
46
      foreach(QString strinfo, m_arrSrcFileList){
          QString filepath = strinfo.left(strinfo.indexOf(',',0));
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
47
          QFileInfo finfo(filepath);
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
48
          nTotalFileSize+= finfo.size();        
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
49
      }
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
50
      qDebug() << "File List info : count = " << m_arrSrcFileList.size() << ", File Total Size = " << nTotalFileSize;
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
51
52
53
54
  
      foreach(QString srcpath, m_arrSrcDirList){
          nTotalFileSize += FileProcessor::getDirSize(srcpath);
      }
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
55
56
57
58
59
60
      qDebug() << " Dir List info : count = " << m_arrSrcFileList.size() << ", File Total Size = " << nTotalFileSize;
      if(nTotalFileSize <=0 ){
          emit finished();
          progressed(0,0);
          return;
      }
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
61
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
62
63
64
65
66
      foreach(QString strinfo, m_arrSrcFileList){
          QString filepath = strinfo.left(strinfo.indexOf(',',0));
          QString destfiledir = strinfo.right(strinfo.size() - (strinfo.indexOf(',',0)+1));
          QDir destdir(destfiledir);
          if(destdir.exists() == false) destdir.mkpath(destfiledir);
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
67
68
          QFileInfo finfo(filepath);
          srcFilepath = filepath;
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
69
          destFilePath = QString("%1/%2").arg(destfiledir).arg(finfo.fileName());
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
70
71
72
73
74
75
76
77
78
79
          if(QFile::exists(destFilePath)){
              QFile::rename(destFilePath, QString("%1.bak").arg(destFilePath));
          }
          QFile::copy(srcFilepath,destFilePath);
          nCpyFileSize += finfo.size();
          nCurProgress = (nCpyFileSize *100) / nTotalFileSize;
          nRemainSec = (nTotalFileSize-nCpyFileSize)/200000;
          emit progressed(nCurProgress,nRemainSec);
          if(QThread::currentThread()->isInterruptionRequested()){
              sync();
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
80
81
82
83
84
              QThread::currentThread()->quit();
              break;
          }
          QThread::currentThread()->msleep(10);
      }
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
85
      qDebug() << "File List Copy Finished";
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  
      if(QThread::currentThread()->isInterruptionRequested() == false){
          foreach(QString srcpath, m_arrSrcDirList){
              qDebug() << "src dir : " << srcpath;
  
              QDir srcdir(srcpath);
              strdirlist.append(srcpath);
              FileProcessor::getAllDirList(srcdir, strdirlist);
              qDebug() << "dir size  : " <<strdirlist.size();
  
              QString targetpath =QString("%1%2").arg(m_strDestDir).arg(srcpath.mid(srcpath.lastIndexOf('/')));
              qDebug() << "target dir : " << targetpath;
  
              QDir destDir(targetpath);
              if(destDir.exists()) {
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
101
                  qDebug() << "rename target path";
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
102
103
104
105
106
107
                  QDir().rename(targetpath, QString("%1_").arg(targetpath));
              }
  
              foreach(QString strDir, strdirlist){
                  QDir srcItem(strDir);
                  srcItem.mkpath( QString(strDir).replace(srcpath,targetpath));
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
108
109
110
111
                  QFileInfoList strFileInfolist = srcItem.entryInfoList(QDir::Files |  QDir::NoSymLinks | QDir::NoDotAndDotDot);
                  foreach(QFileInfo finfo, strFileInfolist){
                      srcFilepath = finfo.absoluteFilePath();
                      destFilePath = QString("%1/%2").arg(QString(strDir).replace(srcpath,targetpath)).arg(finfo.fileName());
cc63fa9f8   고영탁   데모모드 삭제 및 파일 복사 기...
112
113
114
                      if(QFile::copy(srcFilepath, destFilePath)==false){
                          qDebug() << srcFilepath << " file copy fail! dest file path info is " << destFilePath;
                      }
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
115
116
117
                      nCpyFileSize += finfo.size();
                      nCurProgress = (nCpyFileSize *100) / nTotalFileSize;
                      nRemainSec = (nTotalFileSize-nCpyFileSize)/200000;
cc63fa9f8   고영탁   데모모드 삭제 및 파일 복사 기...
118
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
119
                      //qDebug() << srcFilepath << destFilePath << "total size " << nTotalFileSize << "nCpyFileSize " << nCpyFileSize;
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
120
121
122
                      emit progressed(nCurProgress,nRemainSec);
                      if(QThread::currentThread()->isInterruptionRequested()){
                          sync();
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
123
124
                          break;
                      }
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
125
                      //QThread::currentThread()->msleep(100);
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
126
127
128
129
130
131
132
                  }
                  if(QThread::currentThread()->isInterruptionRequested()) break;
              }
              strdirlist.clear();
              if(QThread::currentThread()->isInterruptionRequested()) break;
          }
      }
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
133
      qDebug() << "File Copy Complete! SRC File Size = " << nTotalFileSize << "DEST File Size = " << nCpyFileSize;
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
134
135
  
      if(QThread::currentThread()->isInterruptionRequested()){
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
136
137
138
          foreach(QString strinfo, m_arrSrcFileList){
              QString filepath = strinfo.left(strinfo.indexOf(',',0)+1);
              QString destfiledir = strinfo.right(strinfo.size() - (strinfo.indexOf(',',0)+1));
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
139
140
              QFileInfo finfo(filepath);
              srcFilepath = filepath;
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
141
              destFilePath = QString("%1/%2").arg(destfiledir).arg(finfo.fileName());
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
              if(QFile::exists( QString("%1.bak").arg(destFilePath))){
                  QFile::remove(destFilePath);
                  QFile::rename(QString("%1.bak").arg(destFilePath), destFilePath);
                  nCpyFileSize -= finfo.size();
                  nCurProgress = (nCpyFileSize *100) / nTotalFileSize;
                  emit progressed(nCurProgress, nRemainSec);
              }
              QThread::currentThread()->msleep(1);
          }
          foreach(QString srcpath, m_arrSrcDirList){
              qDebug() << "src dir : " << srcpath;
  
              QDir srcdir(srcpath);
              QString targetpath =QString("%1%2").arg(m_strDestDir).arg(srcpath.mid(srcpath.lastIndexOf('/')));
              qDebug() << "target dir : " << targetpath;
  
              QDir destDir(targetpath);
              QDir renameDir(QString("%1_").arg(targetpath));
              if(renameDir.exists()) {
                  qDebug() << "remove target path";
                  destDir.removeRecursively();
                  QDir().rename(QString("%1_").arg(targetpath), targetpath);
              }
              emit progressed(0, 0);
          }
      }
      else{
cc63fa9f8   고영탁   데모모드 삭제 및 파일 복사 기...
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
          sync();
          foreach(QString strinfo, m_arrSrcFileList){
              QString filepath = strinfo.left(strinfo.indexOf(',',0));
              QString destfiledir = strinfo.right(strinfo.size() - (strinfo.indexOf(',',0)+1));
              QDir destdir(destfiledir);
              QFileInfo finfo(filepath);
              srcFilepath = filepath;
              destFilePath = QString("%1/%2.bak").arg(destfiledir).arg(finfo.fileName());
              qDebug() << destFilePath;
              if(QFile::exists(destFilePath)){
                  if(QFile(destFilePath).remove()==false){
                      qDebug() << destFilePath << "delete fail";
                  }
              }
              else qDebug() << "file not found error";
          }
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
185
186
          foreach(QString srcpath, m_arrSrcDirList){
              qDebug() << "src dir : " << srcpath;
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
187
              QDir srcdir(srcpath);
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
188
189
              QString targetpath =QString("%1%2").arg(m_strDestDir).arg(srcpath.mid(srcpath.lastIndexOf('/')));
              qDebug() << "target dir : " << targetpath;
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
              QDir destDir(targetpath);
              QDir renameDir(QString("%1_").arg(targetpath));
              if(renameDir.exists()) {
                  renameDir.removeRecursively();
              }
              emit progressed(0, 0);
          }
      }
      sync();
      emit finished();
  }
  
  void ProgramCopyWorker::addSrcDir(QString strDirPath){
      m_arrSrcDirList.append(strDirPath);
  }
  
  void ProgramCopyWorker::addSrcFile(QString strfilename){
      m_arrSrcFileList.append(strfilename);
  }
  
  void ProgramCopyWorker::workerStop(){
      //QMutexLocker locker(&m_mutex);
     // qDebug() << "stop thread";
     m_bStop = true;
  }
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
215
216
217
218
219
220
221
222
  FileProcessDlg::FileProcessDlg(QWidget *parent, ConfigType type, bool isDown) :
      QDialog(parent),
      ui(new Ui::FileProcessDlg)
  {
      ui->setupUi(this);
      setAttribute(Qt::WA_DeleteOnClose);
      setAttribute(Qt::WA_TranslucentBackground);
      setWindowFlags(Qt::FramelessWindowHint);
40f5d047f   고영탁   엔코더 작업 진행 중
223
224
225
      qApp->setActiveWindow(this);
      this->setFocus();
      ui->ctrBtnCancel->setFocus();
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
226
227
228
229
230
231
232
233
234
235
236
  
      ui->ctrWjProcess->setMinimum(0);
      ui->ctrWjProcess->setMaximum(100);
  
      if(isDown){
          QPixmap pxmap;
          pxmap.load(":/images/config/102_usb_upload_icon.png");
          ui->label_2->setPixmap(pxmap);
      }
  
      switch(type){
663943a37   고영탁   설정 기능 마무리 진행 중
237
238
239
      case config_haccp_data_download:
          QTimer::singleShot(100,this,SLOT(haccpdataDownload()));
          break;
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
      case config_info_data_download:
          QTimer::singleShot(100,this,SLOT(infodataDownload()));
          break;
      case config_service_data_download:
          QTimer::singleShot(100,this,SLOT(servicedataDownload()));
          break;
      case config_program_download:
          QTimer::singleShot(100,this,SLOT(programDownload()));
          break;
      case config_program_upload:
          QTimer::singleShot(100,this,SLOT(programUpload()));
          break;
      case config_set_download:
          QTimer::singleShot(100,this,SLOT(configDownload()));
          break;
      case config_set_upload:
          QTimer::singleShot(100,this,SLOT(configUpload()));
          break;
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
258
259
260
      case config_standard_info_upload:
          QTimer::singleShot(100,this,SLOT(standardInfoUpload()));
          break;
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
261
262
263
264
265
266
267
268
269
270
271
272
273
      default:
          QTimer::singleShot(200,this,SLOT(deleteLater()));
          break;
      }
  }
  
  FileProcessDlg::~FileProcessDlg()
  {
      delete ui;
  }
  
  void FileProcessDlg::on_ctrBtnCancel_clicked()
  {
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
274
275
276
277
  
      //emit stopcopy();
      programCopyThd.requestInterruption();
      //close();
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
278
  }
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
279
280
281
282
283
284
285
286
287
288
289
  void FileProcessDlg::saveHistoryLineData(QTextStream &out, uint16_t i,  uint16_t fired_cnt, time_t first_fired, time_t last_fried){
      QString strLine;
      QDateTime dt;
      //for(int i =0;i<m_arrErrorMaxIdx[(uint16_t)type];i++){
     //     err_item = &(ovenst->srvdata->err_log.values[m_arrErrorIdxs[type][i]]);
          strLine = tr("erro%1,").arg(i);
          if(first_fired == 0){
              strLine += "-,0,-";
          }
          else{
              dt.setTime_t(first_fired);
0faa32511   김태훈   컴파일 경고 제거 및 리팩토링
290
              strLine+= Stringer::dateTime(dt,Stringer::OneLine) + ",";
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
291
292
              strLine += QString("%1").arg(fired_cnt) + ",";
              dt.setTime_t(last_fried);
0faa32511   김태훈   컴파일 경고 제거 및 리팩토링
293
              strLine += Stringer::dateTime(dt,Stringer::OneLine) + ",";
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
294
295
296
297
298
299
          }
          out << strLine << "
  ";
          qDebug() << strLine;
      //}
  }
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
300
  void FileProcessDlg::infodataDownload(){
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
301
302
303
304
305
306
307
308
309
      QString strUsbPath;
      QString strFile;
      QFile file;
      error_item *item;
      OvenStatistics *ovenst = OvenStatistics::getInstance();
      time_t firsttimebuf=0,lasttimebuf=0;
      uint16_t firecntbuf=0;
      uint16_t erridx = 0;
      int i;
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
310
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
      if(FileProcessor::detectUSB(strUsbPath)){
          //Top
          strFile = strUsbPath + ERROR_LOG_FILE_TOP;
          qDebug() << strUsbPath;
          file.setFileName(strFile);
          if(file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate)){
              QTextStream out(&file);
              out << tr("Gas Error History
  ") << "Top Ignition Box" <<"
  ";
              out << tr("no,") << tr("First Appearance,") << tr("Counter,") << tr("Last Appearance
  ");
              for(i =0;i<m_arrErrorMaxIdx[ERROR_HISTORY_UPPERBUNNER];i++){
                  item = &(ovenst->srvdata->err_log.values[m_arrErrorIdxs[ERROR_HISTORY_UPPERBUNNER][i]]);
                  saveHistoryLineData(out,i+1,item->fired_cnt,item->first_fired,item->last_fried);
              }
              file.close();
          }
          ui->ctrWjProcess->setValue(25);
          ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 1초"));
          //Bottom
          strFile = strUsbPath + ERROR_LOG_FILE_BOTTOM;
          qDebug() << strUsbPath;
          file.setFileName(strFile);
          if(file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate)){
              QTextStream out(&file);
              out << tr("Gas Error History
  ") << "Bottom Ignition Box" <<"
  ";
              out << tr("no,") << tr("First Appearance,") << tr("Counter,") << tr("Last Appearance
  ");
              for(i =0;i<m_arrErrorMaxIdx[ERROR_HISTORY_LOWERBUNNER];i++){
                  item = &(ovenst->srvdata->err_log.values[m_arrErrorIdxs[ERROR_HISTORY_LOWERBUNNER][i]]);
                  saveHistoryLineData(out,i+1,item->fired_cnt,item->first_fired,item->last_fried);
              }
              file.close();
          }
          ui->ctrWjProcess->setValue(50);
          ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 1초"));
          //Steam
          strFile = strUsbPath + ERROR_LOG_FILE_STEAM;
          qDebug() << strUsbPath;
          file.setFileName(strFile);
          if(file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate)){
              QTextStream out(&file);
              out << tr("Gas Error History
  ") << "Steam Ignition Box" <<"
  ";
              out << tr("no,") << tr("First Appearance,") << tr("Counter,") << tr("Last Appearance
  ");
              for(i =0;i<m_arrErrorMaxIdx[ERROR_HISTORY_STEAMBUNNER];i++){
                  item = &(ovenst->srvdata->err_log.values[m_arrErrorIdxs[ERROR_HISTORY_STEAMBUNNER][i]]);
                  saveHistoryLineData(out,i+1,item->fired_cnt,item->first_fired,item->last_fried);
              }
              file.close();
          }
          ui->ctrWjProcess->setValue(75);
          ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 1초"));
          //Total
          strFile = strUsbPath + ERROR_LOG_FILE_TOTAL;
          qDebug() << strUsbPath;
          file.setFileName(strFile);
          if(file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate)){
              QTextStream out(&file);
              out << tr("Service Error History
  
  ");
              out << tr("no,") << tr("First Appearance,") << tr("Counter,") << tr("Last Appearance
  ");
              //01 상부 점화 장치 데이터 초기화
               firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              for(i=0;i<m_arrErrorMaxIdx[ERROR_HISTORY_UPPERBUNNER];i++){
                  item = &(ovenst->srvdata->err_log.values[m_arrErrorIdxs[ERROR_HISTORY_UPPERBUNNER][i]]);
                 if(i==0) {firsttimebuf = item->first_fired;lasttimebuf = item->last_fried;firecntbuf=item->fired_cnt;}
                 else{
                      if( (firsttimebuf > item->first_fired && item->first_fired != 0) || firsttimebuf == 0 ) firsttimebuf = item->first_fired;
                      if( lasttimebuf < item->last_fried ) lasttimebuf = item->last_fried;
                      firecntbuf += item->fired_cnt;
                 }
              }
              saveHistoryLineData(out,erridx+1, firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              //02 스팀 점화 장치 데이터 초기화
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              for(i=0;i<m_arrErrorMaxIdx[ERROR_HISTORY_STEAMBUNNER];i++){
                  item = &(ovenst->srvdata->err_log.values[m_arrErrorIdxs[ERROR_HISTORY_STEAMBUNNER][i]]);
                 if(i==0) {firsttimebuf = item->first_fired;lasttimebuf = item->last_fried;firecntbuf=item->fired_cnt;}
                 else{
                      if((firsttimebuf > item->first_fired && item->first_fired != 0) || firsttimebuf == 0 ) firsttimebuf = item->first_fired;
                      if( lasttimebuf < item->last_fried ) lasttimebuf = item->last_fried;
                      firecntbuf += item->fired_cnt;
                 }
              }
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              //03 하부 점화 장치 데이터 초기화
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              for(i=0;i<m_arrErrorMaxIdx[ERROR_HISTORY_LOWERBUNNER];i++){
                  item = &(ovenst->srvdata->err_log.values[m_arrErrorIdxs[ERROR_HISTORY_LOWERBUNNER][i]]);
                 if(i==0) {firsttimebuf = item->first_fired;lasttimebuf = item->last_fried;firecntbuf=item->fired_cnt;}
                 else{
                      if((firsttimebuf > item->first_fired && item->first_fired != 0) || firsttimebuf == 0 ) firsttimebuf = item->first_fired;
                      if( lasttimebuf < item->last_fried ) lasttimebuf = item->last_fried;
                      firecntbuf += item->fired_cnt;
                 }
              }
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              //04 WATER
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              item = &(ovenst->srvdata->err_log.items.inner_temp_fail);
              firsttimebuf = item->first_fired;lasttimebuf = item->last_fried;firecntbuf=item->fired_cnt;
              item = &(ovenst->srvdata->err_log.items.qunching_temp_fail);
              if( firsttimebuf > item->first_fired && item->first_fired != 0 ) firsttimebuf = item->first_fired;
              if( lasttimebuf < item->last_fried ) lasttimebuf = item->last_fried;
              firecntbuf += item->fired_cnt;
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              //05 구성품
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              //07 B1 센서 에러
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              item = &(ovenst->srvdata->err_log.items.inner_temp_high_alarm);
              firsttimebuf = item->first_fired;lasttimebuf = item->last_fried;firecntbuf=item->fired_cnt;
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              //08 B2 센서 에러
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              item = &(ovenst->srvdata->err_log.items.qunching_temp_high_alarm);
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              //10 B4 센서 에러
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              item = &(ovenst->srvdata->err_log.items.wall_temp1_high_alarm);
              firsttimebuf = item->first_fired;lasttimebuf = item->last_fried;firecntbuf=item->fired_cnt;
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              //11 B5 센서 에러
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              item = &(ovenst->srvdata->err_log.items.steam_gen_temp_high_alram);
              firsttimebuf = item->first_fired;lasttimebuf = item->last_fried;firecntbuf=item->fired_cnt;
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              firecntbuf = 0;firsttimebuf =  0; lasttimebuf=0;
              item = &(ovenst->srvdata->err_log.items.water_level_sensor_fail);
              firsttimebuf = item->first_fired;lasttimebuf = item->last_fried;firecntbuf=item->fired_cnt;
              saveHistoryLineData(out, erridx,firecntbuf,firsttimebuf,lasttimebuf);erridx++;
              file.close();
          }
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
453
          sync();
7fa4fdb0e   고영탁   인포 데이터 다운로드 기능 개발
454
455
456
457
          ui->ctrWjProcess->setValue(100);
          ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 완료"));
          QTimer::singleShot(1000,this,SLOT(close()));
      }
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
458
459
460
  }
  
  void FileProcessDlg::servicedataDownload(){
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
461
462
463
464
465
      QString strUsbPath;
      QString strHeader = "no,name,time
  ";
      QString strFile;
      QFile file;
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
      uint32_t timetemp, totaltime=0;
      int i = 1;
      OvenStatistics *ovs = OvenStatistics::getInstance();
      if(FileProcessor::detectUSB(strUsbPath)){
          strFile = strUsbPath + SERVICE_DATA_FILE;
          file.setFileName(strFile);
          if(file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate)){
              QTextStream out(&file);
              out.setCodec("UTF-8");
              out<< strHeader;
              timetemp = ovs->srvdata->use_log.items.steam_heat/3600;
              out << i++ << tr(",Steam Heating Time,") << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.dry_heat/3600;
              out << i++ << tr(",Hot Air Heating Time,") << timetemp << "h
  ";
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
482
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
              i=1;out<< strHeader;
              timetemp = ovs->srvdata->use_log.items.cook_dry_mode/3600;
              totaltime+= ovs->srvdata->use_log.items.cook_dry_mode;
              out << i++ << tr(",Hot Air Mode,") << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.cook_steam_mode/3600;
              totaltime +=  ovs->srvdata->use_log.items.cook_steam_mode;
              out << i++ << tr(",Steam Mode,") << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.cook_combi_mode/3600;
              totaltime += ovs->srvdata->use_log.items.cook_combi_mode;
              out << i++ << tr(",Combi Mode,") << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.wash_mode_nocleanser/3600;
              totaltime += ovs->srvdata->use_log.items.wash_mode_nocleanser;
              out << i++ << tr(",세제없이 헹굼,").toUtf8() << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.wash_mode_simple/3600;
              totaltime += ovs->srvdata->use_log.items.wash_mode_simple;
              out << i++ << tr(",간이세척,").toUtf8() << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.wash_mode_standard/3600;
              totaltime += ovs->srvdata->use_log.items.wash_mode_standard;
              out << i++ << tr(",표준세척,").toUtf8() << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.wash_mode_strong/3600;
              totaltime +=  ovs->srvdata->use_log.items.wash_mode_strong;
              out << i++ << tr(",강세척").toUtf8() << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.wash_mode_speed/3600;
              totaltime +=ovs->srvdata->use_log.items.wash_mode_speed;
              out << i++ << tr(",고속세척,").toUtf8() << timetemp << "h
  ";
              timetemp = ovs->srvdata->use_log.items.cooldown_mode/3600;
              totaltime += ovs->srvdata->use_log.items.cooldown_mode;
              out << i++ << tr(",쿨다운,").toUtf8() << timetemp << "h
  ";
              timetemp = totaltime/3600;
              out << i++ << tr(",전체작동시간,").toUtf8() << timetemp << "h
  ";
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
523
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
              i=1;out<< strHeader;
              timetemp = ovs->srvdata->use_log.items.door_open/60;
              out << i++ << tr(",도어 Open,").toUtf8() << timetemp << "min
  ";
              timetemp = ovs->srvdata->use_log.items.dv_open/60;
              out << i++ << tr(",볼밸브 Open,").toUtf8() << timetemp << "min
  ";
              timetemp = ovs->srvdata->use_log.items.ssv_open/60;
              out << i++ << tr(",S/G 급수 솔레노이드,").toUtf8() << timetemp << "min
  ";
              timetemp = ovs->srvdata->use_log.items.qnv_open/60;
              out << i++ << tr(",퀀칭 솔레노이드,").toUtf8() << timetemp << "min
  ";
              timetemp = ovs->srvdata->use_log.items.snv_open/60;
              out << i++ << tr(",고내살수 노즐 솔레노이드 ,").toUtf8() << timetemp << "min
  ";
              timetemp = 0;
              out << i++ << tr(",호스릴 솔레노이드,").toUtf8() << timetemp << "min
  ";
              timetemp = ovs->srvdata->use_log.items.ssp_open/60;
              out << i++ << tr(",세제공급장치,").toUtf8() << timetemp << "min
  ";
              timetemp = ovs->srvdata->use_log.items.hdm_open/60;
              out << i++ << tr(",배습댐퍼,").toUtf8() << timetemp << "min
  ";
              timetemp = ovs->srvdata->use_log.items.dp_open/60;
              out << i++ << tr(",소형펌프모터,").toUtf8() << timetemp << "min
  ";
              timetemp = ovs->srvdata->use_log.items.unp_open/60;
              out << i++ << tr(",중형펌프모터,").toUtf8() << timetemp << "min
  ";
              ui->ctrWjProcess->setValue(100);
              ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 완료"));
              file.close();
              sync();
              QTimer::singleShot(1000,this,SLOT(close()));
          }
      }
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
562
563
564
  }
  
  void FileProcessDlg::programDownload(){
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
565
566
567
568
      QString strDescPath;
      QString strSrcPath;
  
      if(FileProcessor::detectUSB(strDescPath)){
cc63fa9f8   고영탁   데모모드 삭제 및 파일 복사 기...
569
          worker.setDestPath(QString("%1/prime").arg(strDescPath));
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
570
571
          worker.addSrcDir("/prime/cookbook");
          worker.moveToThread(&programCopyThd);
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
572
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
          connect(&programCopyThd,SIGNAL(started()), &worker, SLOT(workerMain()));
          connect(&worker, SIGNAL(progressed(int,int)), this, SLOT(onProgressed(int,int)));
          connect(this, SIGNAL(stopcopy()), &worker, SLOT(workerStop()));
          connect(&worker, SIGNAL(finished()), &programCopyThd,SLOT(quit()));
          connect(&programCopyThd, SIGNAL(finished()), this, SLOT(onProgressFinished()));
          //connect(ui->ctrBtnCancel, SIGNAL(clicked(bool)), &worker, SLOT(workerStop()));
  
          programCopyThd.start();
          qDebug() << "thread start";
      }
      else{
          ui->ctrLbRemainTime->setText(tr("USB 인식을 실패하였습니다."));
          QTimer::singleShot(1000,this,SLOT(close()));
      }
  }
  
  void FileProcessDlg::onProgressFinished(){
      ui->ctrLbRemainTime->setText(tr("완료"));
      QTimer::singleShot(1000,this, SLOT(close()));
  }
  
  void FileProcessDlg::onProgressed(int progress, int sec){
      int min, _sec;
      QString strTemp;
      ui->ctrWjProcess->setValue(progress);
      min = sec/60;
      _sec = sec%60;
      if(min >0){
0faa32511   김태훈   컴파일 경고 제거 및 리팩토링
601
          strTemp = tr("남은 예상 시간 : %1분 %2초").arg(min).arg(_sec);
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
602
603
604
          ui->ctrLbRemainTime->setText(strTemp);
      }
      else{
0faa32511   김태훈   컴파일 경고 제거 및 리팩토링
605
          strTemp = tr("남은 예상 시간 : %1초").arg(_sec);
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
606
607
          ui->ctrLbRemainTime->setText(strTemp);
      }
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
608
609
610
  }
  
  void FileProcessDlg::programUpload(){
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
611
612
613
614
      QString strDescPath;
      QString strSrcPath;
  
      if(FileProcessor::detectUSB(strSrcPath)){
1c53b45b7   고영탁   프로그램 업로드 기능 수정
615
616
617
618
619
620
621
622
623
624
          worker.addSrcFile(QString("%1/prime/superdaemon,/prime").arg(strSrcPath));
          worker.addSrcFile(QString("%1/prime/superdaemon.ini,/prime").arg(strSrcPath));
          worker.addSrcFile(QString("%1/prime/app-prime-gui,/prime").arg(strSrcPath));
          worker.addSrcFile(QString("%1/prime/app-prime-modbus,/prime").arg(strSrcPath));
          worker.addSrcFile(QString("%1/prime/service-web,/prime").arg(strSrcPath));
          worker.addSrcFile(QString("%1/prime/app-prime-gui.md5,/prime").arg(strSrcPath));
          worker.addSrcFile(QString("%1/prime/app-prime-modbus.md5,/prime").arg(strSrcPath));
          worker.addSrcFile(QString("%1/prime/superdaemon.ini.md5,/prime").arg(strSrcPath));
          worker.addSrcFile(QString("%1/prime/superdaemon.md5,/prime").arg(strSrcPath));
          worker.setDestPath("/prime");
cc63fa9f8   고영탁   데모모드 삭제 및 파일 복사 기...
625
          worker.addSrcDir(QString("%1/%2").arg(strSrcPath,"prime/cookbook"));
1c53b45b7   고영탁   프로그램 업로드 기능 수정
626
627
          worker.addSrcDir(QString("%1/%2").arg(strSrcPath,"prime/templates"));
          worker.addSrcDir(QString("%1/%2").arg(strSrcPath,"prime/sounds"));
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
628
629
630
631
632
633
634
635
          worker.moveToThread(&programCopyThd);
  
          connect(&programCopyThd,SIGNAL(started()), &worker, SLOT(workerMain()));
          connect(&worker, SIGNAL(progressed(int,int)), this, SLOT(onProgressed(int,int)));
          connect(this, SIGNAL(stopcopy()), &worker, SLOT(workerStop()));
          connect(&worker, SIGNAL(finished()), &programCopyThd,SLOT(quit()));
          connect(&programCopyThd, SIGNAL(finished()), this, SLOT(onProgressFinished()));
          //connect(ui->ctrBtnCancel, SIGNAL(clicked(bool)), &worker, SLOT(workerStop()));
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
636
c3b0bdeac   고영탁   설정 프로그램 업로드 버그 수정
637
638
639
640
641
642
643
          programCopyThd.start();
          qDebug() << "thread start";
      }
      else{
          ui->ctrLbRemainTime->setText(tr("USB 인식을 실패하였습니다."));
          QTimer::singleShot(1000,this,SLOT(close()));
      }
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
644
645
646
647
  }
  
  void FileProcessDlg::configDownload(){
      QString strUsbPath;
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
648
      QString strSrcPath;
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
649
      if(FileProcessor::detectUSB(strUsbPath)){
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
650
651
652
653
          strSrcPath = QString("%1/%2").arg(strUsbPath).arg(CONFIG_FILE_NAME);
          QFileInfo finfo(strSrcPath);
          QDir fdir = finfo.absoluteDir();
          if(finfo.absoluteDir().exists() == false) fdir.mkpath(finfo.absolutePath());
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
654
          QFile file;
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
655
          file.setFileName(strSrcPath);
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
656
          if(file.exists()) file.remove();
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
657
          if(QFile::copy(CONFIG_FILE_NAME, strSrcPath)){
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
658
659
660
661
662
663
664
665
666
              sync();
              ui->ctrWjProcess->setValue(50);
              ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 1초"));
          }
          else{
              ui->ctrLbRemainTime->setText(tr("설정 다운로드에 실패하였습니다."));
              QTimer::singleShot(1000,this,SLOT(close()));
              return;
          }
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
667
668
          strSrcPath = QString("%1/%2").arg(strUsbPath).arg(FAVORITE_FILE_NAME);
          file.setFileName(strSrcPath);
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
669
          if(file.exists()) file.remove();
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
670
          if(QFile::copy(FAVORITE_FILE_NAME, strSrcPath)){
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
671
              sync();
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
672
              ui->ctrWjProcess->setValue(100);
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
673
674
675
676
              ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 완료"));
              QTimer::singleShot(1000,this,SLOT(close()));
          }
          else{
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
677
              ui->ctrLbRemainTime->setText(tr("즐겨찾기 다운로드에 실패하였습니다."));
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
678
679
680
681
              QTimer::singleShot(1000,this,SLOT(close()));
          }
      }
      else{
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
682
          ui->ctrLbRemainTime->setText(tr("USB 인식을 실패하였습니다."));
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
683
684
685
686
687
          QTimer::singleShot(1000,this,SLOT(close()));
      }
  }
  
  void FileProcessDlg::configUpload(){
4c8eff382   김태훈   더 적절한 해결 방법으로 변경
688
      uint8_t buff[sizeof(config_lists)+1];
878f5d85f   고영탁   가스식 rpm 설정 기능 추가
689
      qint64 readlen;
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
690
      QString strUsbPath;
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
691
      QString strSrcPath;
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
692
      Config *cfg = Config::getInstance();
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
693
      if(FileProcessor::detectUSB(strUsbPath)){
6c2810f46   고영탁   프로그램 업로드시 모델 정보 변...
694
          strSrcPath = QString("%1%2").arg(strUsbPath).arg(CONFIG_FILE_NAME);
878f5d85f   고영탁   가스식 rpm 설정 기능 추가
695
696
          QFile srcFile(strSrcPath);
          //Check Source File is valid this machine
6c2810f46   고영탁   프로그램 업로드시 모델 정보 변...
697
          if(srcFile.open(QIODevice::ReadOnly)){
4c8eff382   김태훈   더 적절한 해결 방법으로 변경
698
              readlen = srcFile.read((char *) buff,sizeof(config_lists)+1);
6c2810f46   고영탁   프로그램 업로드시 모델 정보 변...
699
700
701
702
703
704
705
              srcFile.close();
              if(readlen != (sizeof(config_lists)+1)) {
                  qDebug() << "SRC config.ini file size wrong";
                  ui->ctrLbRemainTime->setText(tr("설정 업로드에 실패하였습니다."));
                  QTimer::singleShot(1000,this,SLOT(close()));
                  return;
              }
4c8eff382   김태훈   더 적절한 해결 방법으로 변경
706
              if(buff[sizeof(config_lists)] != 0x9C){
6c2810f46   고영탁   프로그램 업로드시 모델 정보 변...
707
708
709
710
711
                  qDebug() << "SRC config.ini file check fail";
                  ui->ctrLbRemainTime->setText(tr("설정 업로드에 실패하였습니다."));
                  QTimer::singleShot(1000,this,SLOT(close()));
                  return;
              }
4c8eff382   김태훈   더 적절한 해결 방법으로 변경
712
              cfg->copyConfigArea((char *) buff);
6c2810f46   고영탁   프로그램 업로드시 모델 정보 변...
713
              cfg->saveConfig();
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
714
              cfg->applyConfig();
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
715
716
          }
          else{
6c2810f46   고영탁   프로그램 업로드시 모델 정보 변...
717
              qDebug() << "SRC config.ini file open fail";
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
718
719
720
721
              ui->ctrLbRemainTime->setText(tr("설정 업로드에 실패하였습니다."));
              QTimer::singleShot(1000,this,SLOT(close()));
              return;
          }
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
722
          strSrcPath = QString("%1/%2").arg(strUsbPath).arg(FAVORITE_FILE_NAME);
6c2810f46   고영탁   프로그램 업로드시 모델 정보 변...
723
          QFile file(FAVORITE_FILE_NAME);
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
724
725
          file.remove();
          if(QFile::copy( strSrcPath , FAVORITE_FILE_NAME)){
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
726
727
              sync();
              cfg->loadFavorite();
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
728
729
730
731
732
              ui->ctrWjProcess->setValue(100);
              ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 완료"));
              QTimer::singleShot(1000,this,SLOT(close()));
          }
          else{
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
733
              ui->ctrLbRemainTime->setText(tr("즐겨찾기 업로드에 실패하였습니다."));
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
734
735
736
737
              QTimer::singleShot(1000,this,SLOT(close()));
          }
      }
      else{
1fe2b9973   고영탁   시스템 관리 기능 버그 수정
738
          ui->ctrLbRemainTime->setText(tr("USB 인식을 실패하였습니다."));
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
739
740
741
          QTimer::singleShot(1000,this,SLOT(close()));
      }
  }
663943a37   고영탁   설정 기능 마무리 진행 중
742
743
744
745
746
747
  
  void FileProcessDlg::haccpdataDownload(){
      ui->ctrWjProcess->setValue(100);
      ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 완료"));
      QTimer::singleShot(1000,this,SLOT(close()));
  }
40f5d047f   고영탁   엔코더 작업 진행 중
748
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
749
750
751
752
  void FileProcessDlg::standardInfoUpload()
  {
      QString strUsbPath;
      QString strSrcPath;
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
753
      if(FileProcessor::detectUSB(strUsbPath)){
1c53b45b7   고영탁   프로그램 업로드 기능 수정
754
755
          strSrcPath = QString("%1%2").arg(strUsbPath).arg(MODEL_INFO_FILE_NAME);
          qDebug() <<strSrcPath;
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
756
757
          QFile file(MODEL_INFO_FILE_NAME);
          file.remove();
1c53b45b7   고영탁   프로그램 업로드 기능 수정
758
          sync();
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
759
760
761
762
763
764
765
766
767
768
769
770
771
          if(QFile::copy( strSrcPath ,MODEL_INFO_FILE_NAME)){
              sync();
              ui->ctrWjProcess->setValue(40);
              ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 2초"));
          }
          else{
              ui->ctrLbRemainTime->setText(tr("모델 정보 업로드에 실패하였습니다."));
              QTimer::singleShot(1000,this,SLOT(close()));
              return;
          }
          //QThread::msleep(800);
          file.setFileName(CHEF_INFO_FILE_NAME);
          file.remove();
1c53b45b7   고영탁   프로그램 업로드 기능 수정
772
773
          sync();
          strSrcPath = QString("%1%2").arg(strUsbPath).arg(CHEF_INFO_FILE_NAME);
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
774
775
776
777
778
779
780
781
782
783
784
785
786
787
          qDebug() << strSrcPath;
          if(QFile::copy( strSrcPath ,CHEF_INFO_FILE_NAME)){
              sync();
              ui->ctrWjProcess->setValue(70);
              ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 1"));
              QTimer::singleShot(1000,this,SLOT(close()));
          }
          else{
              ui->ctrLbRemainTime->setText(tr("핫라인 쉐프 정보 업로드에 실패하였습니다."));
              QTimer::singleShot(1000,this,SLOT(close()));
          }
          //QThread::msleep(800);
          file.setFileName(SERVICE_INFO_FILE_NAME);
          file.remove();
1c53b45b7   고영탁   프로그램 업로드 기능 수정
788
789
          sync();
          strSrcPath = QString("%1%2").arg(strUsbPath).arg(SERVICE_INFO_FILE_NAME);
cb1e6464c   고영탁   제품 정보 변경 기능 추가 및 ...
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
          qDebug() << strSrcPath;
          if(QFile::copy( strSrcPath ,SERVICE_INFO_FILE_NAME)){
              sync();
              ui->ctrWjProcess->setValue(100);
              ui->ctrLbRemainTime->setText(tr("남은 예상 시간 : 완료"));
              qDebug() << "standard upload success";
              QTimer::singleShot(1000,this,SLOT(close()));
          }
          else{
              ui->ctrLbRemainTime->setText(tr("핫라인 서비스 정보 업로드에 실패하였습니다."));
              QTimer::singleShot(1000,this,SLOT(close()));
          }
      }
      else{
          ui->ctrLbRemainTime->setText(tr("USB 인식을 실패하였습니다."));
          QTimer::singleShot(1000,this,SLOT(close()));
      }
  }
0faa32511   김태훈   컴파일 경고 제거 및 리팩토링
808
  void FileProcessDlg::keyPressEvent(QKeyEvent */*event*/){
40f5d047f   고영탁   엔코더 작업 진행 중
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
  
  }
  
  void FileProcessDlg::keyReleaseEvent(QKeyEvent *event){
      switch (event->key())
      {
      case 0x01000031:    // Push
      {
          QPushButton *btn = qobject_cast<QPushButton*>(focusWidget());
          if(btn != NULL){
              btn->click();
          }
          break;
      }
      }
  }