icinga2/lib/config/configcompiler.h

104 lines
3.4 KiB
C
Raw Normal View History

2012-05-31 09:14:44 +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 *
* 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 <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:
2013-03-15 18:21:29 +01:00
typedef boost::function<void (const String&, bool, const DebugInfo&)> HandleIncludeFunc;
2013-03-16 21:18:53 +01:00
explicit ConfigCompiler(const String& path, std::istream *input,
HandleIncludeFunc includeHandler = &ConfigCompiler::HandleFileInclude);
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;
static void HandleFileInclude(const String& include, bool search,
const DebugInfo& debuginfo);
/* internally used methods */
void HandleInclude(const String& include, bool search, 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;
HandleIncludeFunc m_HandleInclude;
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-03-18 22:40:40 +01:00
class I2_CONFIG_API ConfigFragmentRegistry : public Registry<String>
2013-03-15 11:19:52 +01:00
{ };
/**
* Helper class for registering config fragments.
*
* @ingroup base
*/
class RegisterConfigFragmentHelper
{
public:
RegisterConfigFragmentHelper(const String& name, const String& fragment)
{
2013-03-15 11:19:52 +01:00
ConfigFragmentRegistry::GetInstance()->Register(name, fragment);
}
};
2013-03-15 11:51:35 +01:00
#define REGISTER_CONFIG_FRAGMENT(id, name, fragment) \
I2_EXPORT icinga::RegisterConfigFragmentHelper g_RegisterCF_ ## id(name, fragment)
2012-05-31 09:14:44 +02:00
}
#endif /* CONFIGCOMPILER_H */