소스 검색

cmake; main

develop
Robin Thoni 8 년 전
부모
커밋
42f5eec107
2개의 변경된 파일26개의 추가작업 그리고 5개의 파일을 삭제
  1. 11
    3
      src/CMakeLists.txt
  2. 15
    2
      src/Interface/MainClass.cpp

+ 11
- 3
src/CMakeLists.txt 파일 보기

6
   Interface/MainClass.h
6
   Interface/MainClass.h
7
   Interface/CommandLineParser.cpp
7
   Interface/CommandLineParser.cpp
8
   Interface/CommandLineParser.h
8
   Interface/CommandLineParser.h
9
-  Interface/CommandLineOption.cpp
10
-  Interface/CommandLineOption.h
9
+  DBO/CommandLineOption.cpp
10
+  DBO/CommandLineOption.h
11
+  Business/PdnsSlave.cpp
12
+  Business/PdnsSlave.h
13
+  DBO/SqlConfiguration.cpp
14
+  DBO/SqlConfiguration.h
15
+  DataAccess/PdnsSlaveConfig.cpp
16
+  DataAccess/PdnsSlaveConfig.h
11
   )
17
   )
12
-add_executable(pdns-slave ${SOURCE_FILES})
18
+set(LIBS ${LIBS} jsoncpp)
19
+add_executable(pdns-slave ${SOURCE_FILES} DataAccess/HostsConfig.cpp DataAccess/HostsConfig.h)
20
+target_link_libraries(pdns-slave ${LIBS})

+ 15
- 2
src/Interface/MainClass.cpp 파일 보기

5
 #include <iostream>
5
 #include <iostream>
6
 #include <sysexits.h>
6
 #include <sysexits.h>
7
 #include "CommandLineParser.h"
7
 #include "CommandLineParser.h"
8
+#include "Business/PdnsSlave.h"
8
 #include "MainClass.h"
9
 #include "MainClass.h"
9
 
10
 
10
 MainClass::MainClass(int argc, char *argv[])
11
 MainClass::MainClass(int argc, char *argv[])
26
     if (help.isSet())
27
     if (help.isSet())
27
         return parser.showHelp(0, false);
28
         return parser.showHelp(0, false);
28
 
29
 
29
-    auto file = configFile.getValue();
30
-    std::cout << "Using configuration file " << file << std::endl;
30
+    auto filePath = configFile.getValue();
31
+    std::cout << "Using configuration file " << filePath << std::endl;
32
+
33
+    PdnsSlave pdnsSlave(filePath);
34
+    if (!pdnsSlave.readConfig())
35
+    {
36
+        std::cerr << "Failed to read pdns-slave configuration" << std::endl;
37
+        return 1;
38
+    }
39
+    if (!pdnsSlave.readDhcpdTemplate())
40
+    {
41
+        std::cerr << "Failed to read dhcpd template" << std::endl;
42
+        return 2;
43
+    }
31
 
44
 
32
     return 0;
45
     return 0;
33
 }
46
 }

Loading…
취소
저장