OSDN Git Service

Container builder and some refactoring. still working on.
[dennco/dennco.git] / Source / DNContainerServer.h
1 //  Copyright (c) 2012 Dennco Project
2 //
3 // This program is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 //
17 //  Created by tkawata on 1/6/2012.
18 //
19
20 #ifndef dennco_TKContainerServer_h
21 #define dennco_TKContainerServer_h
22
23 class TKContainer;
24 class TKLock;
25 class TKTimeKeeper;
26
27 class DNContainerServer
28 {
29 public:
30     DNContainerServer(TKContainer *container);
31
32     bool            startServer(int portNumber);
33     void            stopServer();
34     
35     void            setTickIntervalSec(float interval);
36     
37     void            doTickThread();
38     
39     void            processClientMessage(const char *message);
40     
41 private:
42     TKContainer     *mContainer;
43     int             mPortNumber;
44     bool            mRunning;
45     TKTimeKeeper    *timeKeeper;
46     TKLock          mTickThreadLock;
47     
48 };
49
50 #endif