icinga2/lib/config/configcompiler.h

98 lines
3.2 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
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:
typedef function<void (const String&, bool, const DebugInfo&)> HandleIncludeFunc;
2013-03-14 23:52:52 +01:00
explicit ConfigCompiler(const String& path, istream *input = &cin,
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);
static void CompileStream(const String& path, 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;
2012-05-31 09:43:46 +02:00
istream *m_Input;
HandleIncludeFunc m_HandleInclude;
2012-05-31 09:43:46 +02:00
void *m_Scanner;
static vector<String> m_IncludeSearchDirs;
2012-05-31 08:45:02 +02:00
void InitializeScanner(void);
void DestroyScanner(void);
};
2013-03-15 11:19:52 +01:00
class ConfigFragmentRegistry : public Registry<String>
{ };
/**
* 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);
}
};
#define REGISTER_CONFIG_FRAGMENT(name, fragment) \
static icinga::RegisterConfigFragmentHelper g_RegisterCF_ ## type(name, fragment)
2012-05-31 09:14:44 +02:00
}
#endif /* CONFIGCOMPILER_H */