123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #ifndef SERVICE_HPP
- #define SERVICE_HPP
-
- #include <string>
- #include <vector>
-
- namespace CodeDweller {
-
-
-
- class Service
- {
- public:
-
-
- static Service& getInstance()
- {
- static Service service;
- return service;
- }
-
-
- class Callback {
-
- public:
-
-
- virtual void operator()() = 0;
-
- };
-
-
-
-
-
-
-
-
-
-
-
- int main(int argc, char *argv[]);
-
-
-
-
-
-
- void onStopCall(Callback *stopFunctor);
-
-
-
-
-
-
- bool receivedStop();
-
-
-
-
-
-
-
- const std::vector<std::string> &arguments();
-
- private:
-
-
- Service();
-
-
- Service(Service const&) {}
-
-
- void operator=(Service const&) {}
-
-
-
-
-
-
-
-
-
-
-
- void loadArguments(int argc, char *argv[]);
-
-
-
-
-
- int run();
-
-
- void processMessages();
-
-
- std::vector<std::string> cmdLineArgs;
-
-
- enum class Message {
- Pause,
- Resume,
- Restart,
- Stop,
- None
- };
-
-
- Message lastMessage;
-
-
- std::vector<Callback *> stopCallbacks;
-
-
- sigset_t signalSet;
-
- };
-
- }
-
- #endif
|