Abstract: We begin with the server and the acceptor which we developed in our ACE Tutorial 005. We modify these and add new implementation files so as to make the acceptor service dynamically (un)loadable. What we want to do is separate the implementation of the service from its configuration. So, our server will now just act as a daemon waiting for requests. We again enroll the services of the ACE_Reactor to handle events. Everything occurs in a single thread.
This tutorial helps us learn apply the service configurator pattern and make services dynamically configurable. In that process, we are trying to make the acceptor we have developed previously as a dynamically configurable service.
/* We try to keep the server much simpler than before and remove any thing related to the acceptor from the main (). This lets keep the server running irrespective of the state of the acceptor service. */ /* As always, we would need the ACE_Service_Config to help run the server as a daemon. */ #include "ace/Service_Config.h" /* Since we are seperating the acceptor service class from the server, we need to declare our Acceptor_Service */ #include "Acceptor_Service.h" int main (int argc, char *argv []) { /* Perform daemon services update ... this opens the svc.conf file and reads the entries present in the svc.conf file. We will later learn the syntax of making an entry into a svc.conf file. But for now, remember that this is a file which has the entries to load or unload a service dynamically or statically. */ In case, the function call returns a (-1), which is indicative of an error, we print out a debug statement and return (-1) to indicate an failure. if (ACE_Service_Config::open (argc, argv, ACE_DEFAULT_LOGGER_KEY, 0) == -1) ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "ACE_Service_Config::open"), -1); /* Install our signal handler. As we already know, you can actually register signal handlers with the reactor. You might do that when the signal handler is responsible for performing "real" work. Our simple flag-setter doesn't justify deriving from ACE_Event_Handler and providing a callback function though. */ ACE_Sig_Action sa ((ACE_SignalHandler) handler, SIGHUP); /* Start running the event loop so that it listens for events and acts accordingly. This event loop will run either the event loop is ended explicitly or an error occurs. */ ACE_Reactor::run_event_loop (); /* NOT REACHED */ }