icinga2/lib/config/configcompiler.h

98 lines
3.3 KiB
C
Raw Normal View History

2012-05-31 09:14:44 +02:00
/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
2012-05-31 09:14:44 +02:00
* *
* 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 *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef CONFIGCOMPILER_H
#define CONFIGCOMPILER_H
2012-05-31 08:45:02 +02:00
2013-03-17 20:19:29 +01:00
#include "config/i2-config.h"
#include "config/debuginfo.h"
2013-03-16 21:18:53 +01:00
#include "base/registry.h"
#include "base/initialize.h"
#include "base/singleton.h"
2013-03-16 21:18:53 +01:00
#include <iostream>
2013-03-17 20:19:29 +01:00
#include <boost/function.hpp>
2013-03-16 21:18:53 +01:00
2012-05-31 09:14:44 +02:00
namespace icinga
{
2012-09-17 14:47:43 +02:00
/**
* The configuration compiler can be used to compile a configuration file
2012-09-19 12:32:39 +02:00
* into a number of configuration items.
2012-09-17 14:47:43 +02:00
*
* @ingroup config
*/
class I2_CONFIG_API ConfigCompiler
2012-05-31 08:45:02 +02:00
{
public:
explicit ConfigCompiler(const String& path, std::istream *input);
virtual ~ConfigCompiler(void);
2012-05-31 08:45:02 +02:00
2012-05-31 10:16:32 +02:00
void Compile(void);
2013-03-16 21:18:53 +01:00
static void CompileStream(const String& path, std::istream *stream);
static void CompileFile(const String& path);
static void CompileText(const String& path, const String& text);
static void AddIncludeSearchDir(const String& dir);
String GetPath(void) const;
/* internally used methods */
void HandleInclude(const String& include, bool search, const DebugInfo& debuginfo);
void HandleIncludeRecursive(const String& include, const String& pattern, const DebugInfo& debuginfo);
void HandleLibrary(const String& library);
2012-05-31 09:43:46 +02:00
size_t ReadInput(char *buffer, size_t max_bytes);
void *GetScanner(void) const;
2012-05-31 08:45:02 +02:00
private:
String m_Path;
2013-03-16 21:18:53 +01:00
std::istream *m_Input;
2012-05-31 09:43:46 +02:00
void *m_Scanner;
2013-03-16 21:18:53 +01:00
static std::vector<String> m_IncludeSearchDirs;
2012-05-31 08:45:02 +02:00
void InitializeScanner(void);
void DestroyScanner(void);
};
2013-10-10 23:07:05 +02:00
class I2_CONFIG_API ConfigFragmentRegistry : public Registry<ConfigFragmentRegistry, String>
{
public:
static inline ConfigFragmentRegistry *GetInstance(void)
{
return Singleton<ConfigFragmentRegistry>::GetInstance();
}
};
2013-03-15 11:51:35 +01:00
#define REGISTER_CONFIG_FRAGMENT(id, name, fragment) \
namespace { \
void RegisterConfigFragment(void) \
{ \
icinga::ConfigFragmentRegistry::GetInstance()->Register(name, fragment); \
} \
\
INITIALIZE_ONCE(RegisterConfigFragment); \
}
2012-05-31 09:14:44 +02:00
}
#endif /* CONFIGCOMPILER_H */