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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
#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"
|
2013-11-30 17:47:53 +01:00
|
|
|
#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
|
|
|
|
*/
|
2012-09-07 10:27:31 +02:00
|
|
|
class I2_CONFIG_API ConfigCompiler
|
2012-05-31 08:45:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-11-29 10:39:48 +01:00
|
|
|
explicit ConfigCompiler(const String& path, std::istream *input);
|
2012-06-06 14:38:28 +02:00
|
|
|
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);
|
2013-02-05 13:06:42 +01:00
|
|
|
static void CompileFile(const String& path);
|
|
|
|
static void CompileText(const String& path, const String& text);
|
2012-06-06 14:38:28 +02:00
|
|
|
|
2013-02-01 22:44:58 +01:00
|
|
|
static void AddIncludeSearchDir(const String& dir);
|
2012-07-02 10:29:32 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String GetPath(void) const;
|
2012-07-08 21:18:35 +02:00
|
|
|
|
2012-07-02 10:29:32 +02:00
|
|
|
/* internally used methods */
|
2013-02-03 01:41:00 +01:00
|
|
|
void HandleInclude(const String& include, bool search, const DebugInfo& debuginfo);
|
2013-11-29 10:39:48 +01:00
|
|
|
void HandleIncludeRecursive(const String& include, const String& pattern, const DebugInfo& debuginfo);
|
2013-01-17 15:05:34 +01:00
|
|
|
void HandleLibrary(const String& library);
|
2013-03-12 13:45:54 +01:00
|
|
|
|
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:
|
2012-08-02 09:38:08 +02:00
|
|
|
String m_Path;
|
2013-03-16 21:18:53 +01:00
|
|
|
std::istream *m_Input;
|
2012-07-08 21:18:35 +02:00
|
|
|
|
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;
|
2013-02-01 22:44:58 +01:00
|
|
|
|
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>
|
2013-03-12 13:45:54 +01:00
|
|
|
{
|
|
|
|
public:
|
2013-11-30 17:47:53 +01:00
|
|
|
static inline ConfigFragmentRegistry *GetInstance(void)
|
2013-03-12 13:45:54 +01:00
|
|
|
{
|
2013-11-30 17:47:53 +01:00
|
|
|
return Singleton<ConfigFragmentRegistry>::GetInstance();
|
2013-03-12 13:45:54 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-15 11:51:35 +01:00
|
|
|
#define REGISTER_CONFIG_FRAGMENT(id, name, fragment) \
|
2013-11-30 17:47:53 +01:00
|
|
|
namespace { \
|
|
|
|
void RegisterConfigFragment(void) \
|
|
|
|
{ \
|
|
|
|
icinga::ConfigFragmentRegistry::GetInstance()->Register(name, fragment); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
INITIALIZE_ONCE(RegisterConfigFragment); \
|
|
|
|
}
|
2013-03-12 13:45:54 +01:00
|
|
|
|
2012-05-31 09:14:44 +02:00
|
|
|
}
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
#endif /* CONFIGCOMPILER_H */
|