dogcore.cpp 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. #include "dogcore.h"
  2. #include "boxshm.h"
  3. DogCore::DogCore(QObject *parent) : QObject(parent)
  4. {
  5. logThread = new LogThread(this);
  6. logThread->start();
  7. isWorking = false;
  8. timer = new QTimer(this);
  9. connect(timer,SIGNAL(timeout()),this,SLOT(time_out()));
  10. for(int i=0;i<16;i++)
  11. chkTime[i] = QDateTime::currentDateTime().toTime_t();
  12. }
  13. unsigned int DogCore::chkrootprocmem(QString proname)
  14. {
  15. FILE *f1=NULL,*f2=NULL;
  16. int pid, vmrss;
  17. char buff[512],name[64];
  18. QString cmd = QString("pgrep %1 -u root").arg(proname);
  19. f1 = popen(cmd.toUtf8().data(),"r");
  20. if(f1==NULL)
  21. return 0;
  22. if(NULL == fgets(buff,512,f1)){
  23. pclose(f1);
  24. return 0;
  25. }
  26. pid = atoi(buff);
  27. pclose(f1);
  28. QString filename = QString("/proc/%1/status").arg(pid);
  29. f2 = fopen(filename.toUtf8().data(),"r");
  30. if(NULL == f2)
  31. return 0;
  32. for(int i=0;i<16;i++)
  33. fgets(buff,512,f2);
  34. fgets(buff,512,f2);
  35. sscanf(buff,"%s %d",name,&vmrss);
  36. fclose(f2);
  37. return (vmrss>>10);
  38. }
  39. void DogCore::time_out()
  40. {
  41. if(!isWorking){
  42. isWorking = true;
  43. uint chkTime1 = QDateTime::currentDateTime().toTime_t();
  44. if((chkTime1-chkTime[1])>=300){
  45. chkTime[1]=chkTime1;
  46. if(chkrootprocmem("agDP0001")>200){
  47. logThread->appendData(QString("[%1 agBoxDog %2] %3 chkrootprocmem(agDP0001): %4")
  48. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  49. .arg(chkTime1)
  50. .arg(chkTime[1])
  51. .arg(chkrootprocmem("agDP0001")));
  52. system("killall agDP0001");
  53. sleep(1);
  54. system("/root/bin/agDP0001 &");
  55. }
  56. }
  57. if((agBoxShm->processStatus[1].t_time>0)
  58. &&(static_cast<int>(chkTime1-agBoxShm->processStatus[1].t_time)>60)){
  59. if(system("killall agDP0001")!=-1){
  60. if(system("/root/bin/agDP0001 &")!=-1){
  61. logThread->appendData(QString("[ %1 agBoxDog %2 ] agDP0001 time out: %3")
  62. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  63. .arg(chkTime1)
  64. .arg(static_cast<int>(chkTime1-agBoxShm->processStatus[1].t_time)));
  65. }
  66. }
  67. }
  68. if((chkTime1-chkTime[2])>300){
  69. chkTime[2]=chkTime1;
  70. if(chkrootprocmem("agDP0002")>200){
  71. logThread->appendData(QString("[%1 agBoxDog %2] %3 chkrootprocmem(agDP0002): %4")
  72. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  73. .arg(chkTime1)
  74. .arg(chkTime[2])
  75. .arg(chkrootprocmem("agDP0002")));
  76. system("killall agDP0002");
  77. sleep(1);
  78. system("/root/bin/agDP0002 &");
  79. }
  80. }
  81. if((agBoxShm->processStatus[2].t_time>0)
  82. &&(static_cast<int>(chkTime1-agBoxShm->processStatus[2].t_time)>60)){
  83. if(system("killall agDP0002")!=-1){
  84. if(system("/root/bin/agDP0002 &")!=-1){
  85. logThread->appendData(QString("[%1 agBoxDog %2] agDP0002 time out: %3")
  86. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  87. .arg(chkTime1)
  88. .arg(static_cast<int>(chkTime1-agBoxShm->processStatus[2].t_time)));
  89. }
  90. }
  91. }
  92. if((chkTime1-chkTime[3])>300){
  93. chkTime[3]=chkTime1;
  94. if(chkrootprocmem("agDP0003")>200){
  95. logThread->appendData(QString("[%1 agBoxDog %2] %3 chkrootprocmem(agDP0003): %4")
  96. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  97. .arg(chkTime1)
  98. .arg(chkTime[3])
  99. .arg(chkrootprocmem("agDP0003")));
  100. system("killall agDP0003");
  101. sleep(1);
  102. system("/root/bin/agDP0003 &");
  103. }
  104. }
  105. if((agBoxShm->processStatus[3].t_time>0)
  106. &&(static_cast<int>(chkTime1-agBoxShm->processStatus[3].t_time)>60)){
  107. if(system("killall agDP0003")!=-1){
  108. if(system("/root/bin/agDP0003 &")!=-1){
  109. logThread->appendData(QString("[%1 agBoxDog %2] agDP0003 time out: %3")
  110. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  111. .arg(chkTime1)
  112. .arg(static_cast<int>(chkTime1-agBoxShm->processStatus[3].t_time)));
  113. }
  114. }
  115. }
  116. if((chkTime1-chkTime[4])>300){
  117. chkTime[4]=chkTime1;
  118. if(chkrootprocmem("agDP0004")>200){
  119. logThread->appendData(QString("[%1 agBoxDog %2] %3 chkrootprocmem(agDP0004): %4")
  120. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  121. .arg(chkTime1)
  122. .arg(chkTime[4])
  123. .arg(chkrootprocmem("agDP0004")));
  124. system("killall agDP0004");
  125. sleep(1);
  126. system("/root/bin/agDP0004 &");
  127. }
  128. }
  129. if((agBoxShm->processStatus[4].t_time>0)
  130. &&(static_cast<int>(chkTime1-agBoxShm->processStatus[4].t_time)>60)){
  131. if(system("killall agDP0004")!=-1){
  132. if(system("/root/bin/agDP0004 &")!=-1){
  133. logThread->appendData(QString("[%1 agBoxDog %2] agDP0004 time out: %3")
  134. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  135. .arg(chkTime1)
  136. .arg(static_cast<int>(chkTime1-agBoxShm->processStatus[4].t_time)));
  137. }
  138. }
  139. }
  140. if((chkTime1-chkTime[5])>300){
  141. chkTime[5]=chkTime1;
  142. if(chkrootprocmem("agDP0005")>200){
  143. logThread->appendData(QString("[%1 agBoxDog %2] %3 chkrootprocmem(agDP0005): %4")
  144. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  145. .arg(chkTime1)
  146. .arg(chkTime[5])
  147. .arg(chkrootprocmem("agDP0005")));
  148. system("killall agDP0005");
  149. sleep(1);
  150. system("/root/bin/agDP0005 &");
  151. }
  152. }
  153. if((agBoxShm->processStatus[5].t_time>0)
  154. &&(static_cast<int>(chkTime1-agBoxShm->processStatus[5].t_time)>300)){
  155. if(system("killall agDP0005")!=-1){
  156. if(system("/root/bin/agDP0005 &")!=-1){
  157. logThread->appendData(QString("[%1 agBoxDog %2] agDP0005 time out: %3")
  158. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  159. .arg(chkTime1)
  160. .arg(static_cast<int>(chkTime1-agBoxShm->processStatus[5].t_time)));
  161. }
  162. }
  163. }
  164. if((chkTime1-chkTime[6])>300){
  165. chkTime[6]=chkTime1;
  166. if(chkrootprocmem("agDP0006")>200){
  167. logThread->appendData(QString("[%1 agBoxDog %2] %3 chkrootprocmem(agDP0006): %4")
  168. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  169. .arg(chkTime1)
  170. .arg(chkTime[6])
  171. .arg(chkrootprocmem("agDP0006")));
  172. system("killall agDP0006");
  173. sleep(1);
  174. system("/root/bin/agDP0006 &");
  175. }
  176. }
  177. if((agBoxShm->processStatus[6].t_time>0)
  178. &&(static_cast<int>(chkTime1-agBoxShm->processStatus[6].t_time)>90)){
  179. if(system("killall agDP0006")!=-1){
  180. if(system("/root/bin/agDP0006 &")!=-1){
  181. logThread->appendData(QString("[%1 agBoxDog %2] agDP0006 time out: %3")
  182. .arg(QDateTime::fromTime_t(chkTime1).toString("yyyy-MM-dd HH:mm:ss"))
  183. .arg(chkTime1)
  184. .arg(static_cast<int>(chkTime1-agBoxShm->processStatus[6].t_time)));
  185. }
  186. }
  187. }
  188. isWorking = false;
  189. }
  190. }
  191. void DogCore::start(){
  192. time_out();
  193. timer->start(15000);
  194. }