icinga2/base/i2-base.h

164 lines
4.5 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef I2BASE_H
#define I2BASE_H
2012-03-28 13:24:49 +02:00
2012-05-18 22:21:28 +02:00
/**
2012-05-19 10:48:00 +02:00
* @mainpage Icinga Documentation
*
* Icinga implements a framework for run-time-loadable components which can
* pass messages between each other. These components can either be hosted in
* the same process or in several host processes (either on the same machine or
2012-05-19 10:48:00 +02:00
* on different machines).
*
* The framework's code critically depends on the following patterns:
*
2012-05-19 11:04:52 +02:00
* <list type="bullet">
* <item>Smart pointers
2012-05-19 10:48:00 +02:00
*
* The shared_ptr and weak_ptr template classes are used to simplify memory
* management and to avoid accidental memory leaks and use-after-free
* bugs.</item>
2012-05-19 10:48:00 +02:00
*
2012-05-19 11:04:52 +02:00
* <item>Observer pattern
2012-05-19 10:48:00 +02:00
*
* Framework classes expose events which other objects can subscribe to. This
* is used to decouple clients of a class from the class' internal
2012-05-19 11:04:52 +02:00
* implementation.</item>
* </list>
2012-05-18 22:21:28 +02:00
*/
/**
* @defgroup base Base class library
*
2012-05-19 10:48:00 +02:00
* The base class library implements commonly-used functionality like
* event handling for sockets and timers.
2012-05-18 22:21:28 +02:00
*/
2012-04-03 15:47:32 +02:00
#ifdef _MSC_VER
# define HAVE_STDCXX_0X
# pragma warning(disable:4251)
# define _CRT_SECURE_NO_DEPRECATE
2012-05-10 13:46:04 +02:00
# define _CRT_SECURE_NO_WARNINGS
2012-04-03 15:47:32 +02:00
#else /* _MSC_VER */
# include "config.h"
#endif /* _MSC_VER */
#define PLATFORM_WINDOWS 1
#define PLATFORM_UNIX 2
#ifdef _WIN32
# define I2_PLATFORM PLATFORM_WINDOWS
# include "win32.h"
#else
# define I2_PLATFORM PLATFORM_UNIX
# include "unix.h"
#endif
#include <cstdlib>
#include <cstdarg>
#include <cstdio>
#include <cstring>
#include <cassert>
#include <cerrno>
2012-03-28 13:24:49 +02:00
#include <string>
2012-05-25 16:56:47 +02:00
#include <exception>
2012-05-26 23:12:46 +02:00
#include <stdexcept>
#include <sstream>
2012-03-28 13:24:49 +02:00
#include <vector>
2012-04-19 08:46:41 +02:00
#include <set>
2012-03-28 13:24:49 +02:00
#include <iostream>
#include <list>
#include <typeinfo>
#include <map>
2012-03-28 13:24:49 +02:00
#include <list>
#include <algorithm>
2012-05-25 14:40:10 +02:00
2012-05-25 16:56:47 +02:00
using namespace std;
using std::exception;
#ifdef HAVE_STDCXX_0X
2012-05-25 14:40:10 +02:00
# include <memory>
# include <functional>
using namespace std::placeholders;
#else /* HAVE_STDCXX_0X */
2012-05-25 14:40:10 +02:00
# ifdef HAVE_BOOST
2012-05-25 16:56:47 +02:00
# include <boost/smart_ptr.hpp>
# include <boost/make_shared.hpp>
# include <boost/bind.hpp>
# include <boost/function.hpp>
2012-05-25 14:40:10 +02:00
2012-05-25 16:56:47 +02:00
using namespace boost;
2012-05-25 14:40:10 +02:00
# else /* HAVE_BOOST */
# include <tr1/memory>
# include <tr1/functional>
# include "cxx11-compat.h"
2012-05-25 16:56:47 +02:00
using namespace std::tr1;
using namespace std::tr1::placeholders;
2012-05-25 14:40:10 +02:00
2012-05-25 16:56:47 +02:00
#endif /* HAVE_BOOST */
#endif /* HAVE_STDCXX_0X */
#if defined(__APPLE__) && defined(__MACH__)
# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
2012-04-24 14:02:15 +02:00
#include <openssl/bio.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#ifdef HAVE_GCC_ABI_DEMANGLE
# include <cxxabi.h>
#endif /* HAVE_GCC_ABI_DEMANGLE */
#ifdef I2_BASE_BUILD
# define I2_BASE_API I2_EXPORT
#else /* I2_BASE_BUILD */
# define I2_BASE_API I2_IMPORT
#endif /* I2_BASE_BUILD */
2012-04-22 16:45:31 +02:00
#include "utility.h"
2012-03-28 13:24:49 +02:00
#include "object.h"
#include "exception.h"
2012-03-28 13:24:49 +02:00
#include "memory.h"
#include "delegate.h"
2012-05-17 19:14:03 +02:00
#include "observable.h"
2012-04-18 15:22:25 +02:00
#include "variant.h"
#include "dictionary.h"
2012-03-28 13:24:49 +02:00
#include "timer.h"
#include "fifo.h"
#include "socket.h"
#include "tcpsocket.h"
#include "tcpclient.h"
#include "tcpserver.h"
2012-04-24 14:02:15 +02:00
#include "tlsclient.h"
#include "objectset.h"
#include "objectmap.h"
#include "configobject.h"
2012-03-28 13:24:49 +02:00
#include "application.h"
#include "component.h"
2012-03-28 13:24:49 +02:00
#endif /* I2BASE_H */