/usr/include/assa-3.5/assa/GenServer.h is in libassa-3.5-5-dev 3.5.1-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 | // -*- c++ -*-
//------------------------------------------------------------------------------
// GenServer.h
//------------------------------------------------------------------------------
// Copyright (c) 1999-2005 by Vladislav Grinchenko
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//------------------------------------------------------------------------------
#ifndef GENSERVER_H
#define GENSERVER_H
extern "C" {
#include <stdio.h> /* printf, sprintf */
#include <unistd.h>
#include <stdlib.h> /* getopt() */
#include <string.h> /* strlen */
#include <errno.h> /* errno */
#include <signal.h> /* kill */
#include <sys/types.h> /* open */
#include <sys/stat.h> /* open */
#include <fcntl.h> /* open */
#include <limits.h> /* PATH_MAX */
#include <assert.h>
#if !defined(WIN32)
# include <sys/resource.h> /* getrlimit */
# include <syslog.h>
#endif
}
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
using std::string;
using std::vector;
#include "assa/Assure.h"
#include "assa/Handlers.h"
#include "assa/SigHandlers.h"
#include "assa/Fork.h"
#include "assa/Reactor.h"
#include "assa/CmdLineOpts.h"
#include "assa/PidFileLock.h"
namespace ASSA {
/** @file GenServer.h
GenServer is a base class for generic servers.
This is an implementation of the Service Configurator pattern.
*/
class GenServer :
public virtual EventHandler,
public CmdLineOpts
{
public:
/** @enum LogFlag
*/
enum LogFlag {
KEEPLOG, /**< By default, append new log records to
the existing log file. This is operational
mode. */
RMLOG /**< Remove existing log file and start afresh.
Convenient during development phase. */
};
public:
/** Constructor. Corresponds to the object entering the <tt>IDLE</tt>
state.
*/
GenServer ();
/// Destructor
virtual ~GenServer ();
/** Provide an entry point into the service and perfom initialization
of the service.
Open log file and log startup options. Process standard command-line
arguments.
Following signals are handled in uniform manner:
SIGHUP, SIGPIPE, SIGCHLD, SIGCLD, SIGALRM, SIGINT, SIGPOLL,
SIGTERM.
This function corresponds to the object moving from IDLE
to RUNNING state as result of service initialization,
or reconfiguration of the service and remaining in RUNNING state.
@param argc Pointer to number of command line arguments
@param argv Command line arguments char* array
@param help_info Title that will be displayed with -h option
*/
virtual void init (int* argc, char* argv[], const char* help_info);
/** This is an iterface function corresponding to the object
moving back into IDLE state. Derived class is expected to
perform actions that terminate execution of the service.
*/
virtual int fini (void) { return 0; }
/** Temporarily suspend the execution of a service. Corresponds
to process leaving RUNNING state and entering SUSPENDED state.
*/
virtual int suspend (void) { return 0; }
/** Resume execution of a service. Corresponds to the process
returning back to RUNNING state from SUSPENDED state.
*/
virtual int resume (void) { return 0; }
/** Interface function provided for derived classes as a
* place to initialize specifics of derived server
*/
virtual void init_service () =0;
/** Interface function provided for derived classes as the main
* entry for data processing. This is the place to implement main
* event loop.
*/
virtual void process_events () =0;
/** Hook for derived class to do addition clean-up when
terminating signal is delivered by OS. Note that
signal handling is provided by default and no additional
intervention is necessary. Use this method only to enhance it.
*/
virtual void fatal_signal_hook () { /*--- empty ---*/ }
/** Handle fatal signals. Hook (e.g. fatalSignalHook) is provided
if derived class needs extra work before falling dead.
*/
int handle_signal (int signum_);
/** Normally called by the main loop to find out whether
'graceful quit' flag had been raised, signaling that some
application's component requested to end data processing.
@return true when active; false if 'graceful quit' flag
has been raised;
*/
bool service_is_active () { return (!m_graceful_quit); }
/** Inform server that it has to stop data processing,
clean up and exit. This method will also stop internal Reactor.
*/
void stop_service ();
/** Set Version and Revision number.
@param release_ Release number.
@param revision_ Patch level.
*/
void set_version (const string& release_, int revision_);
/// Obtain version information
string get_version ();
/// Set author's name.
void set_author (const string& author_);
/** New debug information is added to the old log file.
To erase old log file, set flag to RMLOG.
@param logf_ Defaulted to KEEPLOG that adds log records to
the existing log file; RMLOG - remove existing log
file and start afresh.
*/
void set_flags (LogFlag logf_) { m_log_flag = logf_; }
/// List options and invocation syntax to stdout
virtual void display_help ();
/// Get name of process+instance_number
string get_proc_name () { return m_proc_name; }
/** Change process name.
@param proc_name_ new process name
*/
void set_proc_name (string proc_name_) { m_proc_name = proc_name_; }
/// Get command-line process name
string get_cmdline_name () { return m_cmdline_name; }
/** Get default configuration file name:
$HOME/.{command_line_name}.cfg
If you want your configuration file name to be
different, change the value of m_std_config_name
in derived class
*/
string get_default_config_file () { return m_default_config_file; }
/** Get alternative configuration file name. This name is
specified as command-line argument '-f'
*/
string get_config_file () { return m_config_file; }
/// Return assumed name of the listening port
string get_port () { return m_port; }
/** Set listening port name
@param port_ new listening port name
*/
void set_port (string port_) { m_port = port_; }
#if !defined(WIN32)
/** Obtain reference to the Signal Manager, class SigHandls.
*/
SigHandlers& get_sig_manager () { return m_sig_dispatcher; }
#endif
/** Obtain reference to the Reactor.
*/
Reactor* get_reactor () { return &m_reactor; }
/// Become a daemon process
static bool become_daemon ();
/// Retrieve exit value of the process
int get_exit_value () const { return m_exit_value; }
protected:
/// Set exit value of the process. This value is returned to the shell.
void set_exit_value (int v_) { m_exit_value = v_; }
protected:
/// process name (considering instance_number)
string m_proc_name;
/// process name as appeared on command line
string m_cmdline_name;
/// listening port name
string m_port;
/// standard configuration file name
string m_default_config_file;
/// alternative configuration file name
string m_config_file;
/// Max size of the log file
u_int m_log_size;
/// Process instance
int m_instance;
/// Full pathname of debug file
string m_log_file;
/// If 'yes', send log messages to the log server.
string m_with_log_server;
/** Log server, assa-logd, address (port@@host)
*/
string m_log_server;
/// Debug file mask to filter debug/error messages
long m_mask;
/// Flag that indicates wheather server outgh to stop and exit
bool m_graceful_quit;
#if !defined(WIN32)
/// Signal handlers dispatcher
SigHandlers m_sig_dispatcher;
/// Function that swallows SIGPOLL calls
SIGPOLLHandler m_sig_poll;
#endif
/// GenServer object has its very own personal Reactor object.
Reactor m_reactor;
/// Software version
string m_version;
/// Software revision (patch) level
int m_revision;
/// Author's name
string m_author;
/// Help information
const char* m_help_msg;
/// Log file initialization flag. If RM_LOG, remove old log file.
LogFlag m_log_flag;
/** If 'yes', redirects all logging messages to std::cerr. */
string m_log_stdout;
/// Daemon option flag. If 'yes', become a UNIX daemon process.
string m_daemon;
/// If 'yes', skip PID file locking creation/locking step
string m_ommit_pidfile;
/** Logging level - an integer number that incrementally increases
verbosity of the looing messages. The exact meaning of each
level is application-specific.
*/
int m_log_level;
/// PID File lock
PidFileLock m_pidfile_lock;
/// PID File lock path name
string m_pidfile;
/** Help option flag. If true, [-h, --help] option is being
specified on command line.
*/
bool m_help_flag;
/** Version option flag. If true, [-v, --version] options is being
specified on command line.
*/
bool m_version_flag;
/// Exit value of the process.
int m_exit_value;
private:
/// No cloning
GenServer (const GenServer&);
GenServer& operator=(const GenServer&);
/// Initialize internals
void init_internals ();
};
inline void
GenServer::
stop_service ()
{
m_graceful_quit = true;
m_reactor.deactivate ();
}
inline void
GenServer::
set_version (const string& release_, int revision_)
{
m_version = release_;
m_revision = revision_;
}
inline void
GenServer::
set_author (const string& author_)
{
m_author = author_;
}
inline string
GenServer::
get_version ()
{
std::ostringstream v;
v << "Version: " << m_version << " Revision: " << m_revision << std::ends;
return (v.str ());
}
inline void
GenServer::
display_help ()
{
std::cout << m_help_msg << '\n'
<< "Written by " << m_author << "\n" << std::endl;
}
} // The end of namespase ASSA
#endif /* GENSERVER_H */
|