|
2
|
1 /** |
|
|
2 * core.hpp (2007-03-04) |
|
|
3 * |
|
|
4 * -- CABAL -- core header |
|
|
5 * |
|
|
6 * Copyright (c) 2007-2008 Vlad Glagolev <enqlave@gmail.com> |
|
|
7 * All rights reserved. |
|
|
8 * |
|
|
9 * Permission to use, copy, modify, and distribute this software for any |
|
|
10 * purpose with or without fee is hereby granted, provided that the above |
|
|
11 * copyright notice and this permission notice appear in all copies. |
|
|
12 * |
|
|
13 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
|
|
14 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
|
|
15 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
|
|
16 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
|
|
17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
|
|
18 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
|
|
19 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|
|
20 */ |
|
|
21 |
|
|
22 #ifndef _CORE_HPP_ |
|
|
23 #define _CORE_HPP_ |
|
|
24 |
|
|
25 #define VERSION_CORE "0.0.7" // 2007-05-13 |
|
|
26 |
|
|
27 #include "engine.hpp" |
|
|
28 #include "connection.hpp" |
|
|
29 #include "parser.hpp" |
|
|
30 |
|
|
31 class Core |
|
|
32 { |
|
|
33 public: |
|
|
34 Core(); |
|
|
35 ~Core(); |
|
|
36 |
|
|
37 void parseCommandLine(int, char **); |
|
|
38 void parseConfig(); |
|
|
39 void checkPID(); |
|
|
40 void writePID(); |
|
|
41 |
|
|
42 void work(); |
|
|
43 |
|
|
44 int servers; |
|
|
45 Connection *connections[MAX_SERVERS]; |
|
|
46 |
|
|
47 char *pid; |
|
|
48 char *config; |
|
|
49 |
|
|
50 char commander; |
|
|
51 |
|
|
52 bool debug; |
|
|
53 |
|
|
54 time_t now; |
|
|
55 }; |
|
|
56 |
|
|
57 extern Connection *C; |
|
|
58 |
|
|
59 #endif // _CORE_HPP_ |