2002-06-04 12:26:23 +00:00
|
|
|
#ifndef IPLATFORM_H
|
|
|
|
#define IPLATFORM_H
|
|
|
|
|
|
|
|
#include "IInterface.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "CString.h"
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Platform dependent functions interface
|
|
|
|
/*!
|
|
|
|
This interface provides methods to query platform specific data and
|
|
|
|
perform operations that are inherently non-portable.
|
|
|
|
*/
|
2002-06-04 12:26:23 +00:00
|
|
|
class IPlatform : public IInterface {
|
|
|
|
public:
|
2002-06-08 21:48:00 +00:00
|
|
|
typedef int (*DaemonFunc)(IPlatform*, int argc, const char** argv);
|
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Uninstall result codes
|
2002-06-14 18:08:20 +00:00
|
|
|
enum EResult {
|
2002-07-29 17:03:55 +00:00
|
|
|
kSuccess, //!< Uninstall succeeded
|
|
|
|
kFailed, //!< Uninstall failed
|
|
|
|
kAlready //!< Not installed
|
2002-06-14 18:08:20 +00:00
|
|
|
};
|
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! @name manipulators
|
|
|
|
//@{
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Install daemon
|
|
|
|
/*!
|
|
|
|
Install a daemon. \c name is the name of the daemon passed to the
|
|
|
|
system and \c description is a short human readable description of
|
|
|
|
the daemon. \c pathname is the path to the daemon executable.
|
|
|
|
\c commandLine should \b not include the name of program as the
|
|
|
|
first argument.
|
|
|
|
*/
|
2002-06-04 12:26:23 +00:00
|
|
|
// FIXME -- throw on error? will get better error messages that way.
|
2002-06-08 21:48:00 +00:00
|
|
|
virtual bool installDaemon(const char* name,
|
2002-06-10 22:06:45 +00:00
|
|
|
const char* description,
|
|
|
|
const char* pathname,
|
|
|
|
const char* commandLine) = 0;
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Uninstall daemon
|
|
|
|
/*!
|
|
|
|
Uninstall a daemon.
|
|
|
|
*/
|
2002-06-14 18:08:20 +00:00
|
|
|
virtual EResult uninstallDaemon(const char* name) = 0;
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Daemonize the process
|
|
|
|
/*!
|
|
|
|
Daemonize. This should call installDaemonLogger(). Returns
|
|
|
|
true iff successful. \c name is the name of the daemon.
|
|
|
|
Once daemonized, \c func is invoked and daemonize returns when
|
|
|
|
and what it does. daemonize() returns -1 on error.
|
|
|
|
|
|
|
|
Exactly what happens when daemonizing depends on the platform.
|
|
|
|
<ul>
|
|
|
|
<li>unix:
|
|
|
|
Detaches from terminal. \c func gets passed one argument, the
|
|
|
|
name passed to daemonize().
|
|
|
|
<li>win32:
|
|
|
|
Becomes a service. Argument 0 is the name of the service
|
|
|
|
and the rest are the arguments passed to StartService().
|
|
|
|
\c func is only called when the service is actually started.
|
|
|
|
\c func must behave like a proper ServiceMain() function; in
|
|
|
|
particular, it must call RegisterServiceCtrlHandler() and
|
|
|
|
SetServiceStatus().
|
|
|
|
</ul>
|
|
|
|
*/
|
2002-06-08 21:48:00 +00:00
|
|
|
virtual int daemonize(const char* name, DaemonFunc func) = 0;
|
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Install daemon logger
|
|
|
|
/*!
|
|
|
|
Directs CLog to send messages to the daemon log. Used when
|
|
|
|
messages should no longer go to the console. \c name is used
|
|
|
|
in the log to identify this process.
|
|
|
|
*/
|
2002-06-14 18:08:20 +00:00
|
|
|
virtual void installDaemonLogger(const char* name) = 0;
|
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//@}
|
|
|
|
//! @name accessors
|
|
|
|
//@{
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Extract base name
|
|
|
|
/*!
|
|
|
|
Find the base name in the given \c pathname.
|
|
|
|
*/
|
2002-06-04 12:26:23 +00:00
|
|
|
virtual const char* getBasename(const char* pathname) const = 0;
|
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Get user's home directory
|
|
|
|
/*!
|
|
|
|
Returns the user's home directory. Returns the empty string if
|
|
|
|
this cannot be determined.
|
|
|
|
*/
|
2002-06-04 12:26:23 +00:00
|
|
|
virtual CString getUserDirectory() const = 0;
|
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Get system directory
|
|
|
|
/*!
|
|
|
|
Returns the ussystem configuration file directory.
|
|
|
|
*/
|
2002-06-04 12:26:23 +00:00
|
|
|
virtual CString getSystemDirectory() const = 0;
|
|
|
|
|
2002-07-29 17:03:55 +00:00
|
|
|
//! Concatenate path components
|
|
|
|
/*!
|
|
|
|
Concatenate pathname components with a directory separator
|
|
|
|
between them. This should not check if the resulting path
|
|
|
|
is longer than allowed by the system; we'll rely on the
|
|
|
|
system calls to tell us that.
|
|
|
|
*/
|
2002-06-04 12:26:23 +00:00
|
|
|
virtual CString addPathComponent(
|
2002-06-10 22:06:45 +00:00
|
|
|
const CString& prefix,
|
|
|
|
const CString& suffix) const = 0;
|
2002-07-29 17:03:55 +00:00
|
|
|
|
|
|
|
//@}
|
2002-06-04 12:26:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|