main.cpp 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #include <QCoreApplication>
  2. #include "boxshm.h"
  3. #include "dogcore.h"
  4. #include <QFile>
  5. #include <QDir>
  6. AGBoxShm *agBoxShm;
  7. bool shm_load(){
  8. int shmid;
  9. key_t key;
  10. if((key=ftok(SHM_PATH,static_cast<int>(SHM_PORT)))==-1){
  11. return false;
  12. }
  13. if((shmid=shmget(key,sizeof (AGBoxShm),IPC_CREAT|0666))==-1){
  14. return false;
  15. }
  16. agBoxShm = static_cast<AGBoxShm *>(shmat(shmid,nullptr,0));
  17. return true;
  18. }
  19. int main(int argc, char *argv[])
  20. {
  21. QCoreApplication a(argc, argv);
  22. QDir path("/opt/agBoxProcess");
  23. if(!path.exists()){
  24. system("mkdir -p /opt/agBoxProcess");
  25. system("mkdir -p /opt/agBoxProcess/log");
  26. }
  27. if(shm_load()){
  28. DogCore *dogcore = new DogCore(nullptr);
  29. dogcore->start();
  30. }else{
  31. fprintf(stderr,"shm load failed!\n");
  32. exit(1);
  33. }
  34. return a.exec();
  35. }