2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* 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. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2012-04-22 16:45:31 +02:00
|
|
|
#ifndef UTILITY_H
|
|
|
|
#define UTILITY_H
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2012-05-18 23:25:06 +02:00
|
|
|
* Helper functions.
|
2012-05-18 22:21:28 +02:00
|
|
|
*
|
|
|
|
* @ingroup base
|
2012-04-22 16:45:31 +02:00
|
|
|
*/
|
|
|
|
class I2_BASE_API Utility
|
|
|
|
{
|
|
|
|
public:
|
2012-09-27 09:38:28 +02:00
|
|
|
static String DemangleSymbolName(const String& sym);
|
2012-08-02 09:38:08 +02:00
|
|
|
static String GetTypeName(const type_info& ti);
|
2012-04-22 16:45:31 +02:00
|
|
|
|
2013-02-02 09:19:49 +01:00
|
|
|
static shared_ptr<SSL_CTX> MakeSSLContext(const String& pubkey, const String& privkey, const String& cakey);
|
2012-08-02 09:38:08 +02:00
|
|
|
static String GetCertificateCN(const shared_ptr<X509>& certificate);
|
2013-02-02 09:19:49 +01:00
|
|
|
static shared_ptr<X509> GetX509Certificate(const String& pemfile);
|
2012-05-09 10:15:51 +02:00
|
|
|
|
2013-02-02 09:19:49 +01:00
|
|
|
static bool Match(const String& pattern, const String& text);
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
static String DirName(const String& path);
|
|
|
|
static String BaseName(const String& path);
|
2012-07-08 21:18:35 +02:00
|
|
|
|
2012-09-17 13:35:55 +02:00
|
|
|
static void NullDeleter(void *);
|
2012-07-24 10:50:53 +02:00
|
|
|
|
2012-07-25 12:59:17 +02:00
|
|
|
static double GetTime(void);
|
|
|
|
|
2012-09-19 13:00:48 +02:00
|
|
|
static pid_t GetPid(void);
|
|
|
|
|
2012-09-25 15:41:43 +02:00
|
|
|
static void Sleep(double timeout);
|
|
|
|
|
2013-01-30 09:08:48 +01:00
|
|
|
static String NewUUID(void);
|
|
|
|
|
2013-02-02 00:28:00 +01:00
|
|
|
static bool Glob(const String& pathSpec, const function<void (const String&)>& callback);
|
|
|
|
|
2013-02-18 14:40:24 +01:00
|
|
|
static void QueueAsyncCallback(const boost::function<void (void)>& callback);
|
|
|
|
|
2013-02-28 10:27:33 +01:00
|
|
|
static String FormatDateTime(const char *format, double ts);
|
|
|
|
|
2013-01-17 15:05:34 +01:00
|
|
|
static
|
|
|
|
#ifdef _WIN32
|
|
|
|
HMODULE
|
|
|
|
#else /* _WIN32 */
|
|
|
|
lt_dlhandle
|
|
|
|
#endif /* _WIN32 */
|
2013-03-12 13:45:54 +01:00
|
|
|
LoadExtensionLibrary(const String& library);
|
2013-01-17 15:05:34 +01:00
|
|
|
|
2013-02-13 13:03:21 +01:00
|
|
|
#ifndef _WIN32
|
|
|
|
static void SetNonBlocking(int fd);
|
|
|
|
static void SetCloExec(int fd);
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
static void SetNonBlockingSocket(SOCKET s);
|
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
|
|
|
static bool m_SSLInitialized;
|
|
|
|
|
|
|
|
Utility(void);
|
|
|
|
|
|
|
|
static void InitializeOpenSSL(void);
|
2012-04-22 16:45:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-03-07 16:00:10 +01:00
|
|
|
#ifdef _DEBUG
|
2013-03-09 12:53:04 +01:00
|
|
|
# define ASSERT(expr) assert(expr)
|
2013-03-07 16:00:10 +01:00
|
|
|
#else /* _DEBUG */
|
|
|
|
# define ASSERT(expr)
|
|
|
|
#endif /* _DEBUG */
|
|
|
|
|
2012-04-22 16:45:31 +02:00
|
|
|
#endif /* UTILITY_H */
|