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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
#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
|
|
|
|
*/
|
2012-09-07 10:27:31 +02:00
|
|
|
class I2_CONFIG_API ConfigCompiler
|
2012-05-31 08:45:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-02-05 13:06:42 +01:00
|
|
|
typedef function<void (const String&, bool, const DebugInfo&)> HandleIncludeFunc;
|
2012-07-02 10:29:32 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
ConfigCompiler(const String& path, istream *input = &cin,
|
2012-07-02 10:29:32 +02:00
|
|
|
HandleIncludeFunc includeHandler = &ConfigCompiler::HandleFileInclude);
|
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-02-05 13:06:42 +01:00
|
|
|
static void CompileStream(const String& path, istream *stream);
|
|
|
|
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
|
|
|
|
2013-02-02 14:28:11 +01:00
|
|
|
static void HandleFileInclude(const String& include, bool search,
|
2013-02-03 01:41:00 +01:00
|
|
|
const DebugInfo& debuginfo);
|
2013-02-02 14:28:11 +01: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-01-17 15:05:34 +01:00
|
|
|
void HandleLibrary(const String& library);
|
2013-02-02 14:28:11 +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;
|
2012-05-31 09:43:46 +02:00
|
|
|
istream *m_Input;
|
2012-07-08 21:18:35 +02:00
|
|
|
|
|
|
|
HandleIncludeFunc m_HandleInclude;
|
|
|
|
|
2012-05-31 09:43:46 +02:00
|
|
|
void *m_Scanner;
|
|
|
|
|
2013-02-01 22:44:58 +01:00
|
|
|
static vector<String> m_IncludeSearchDirs;
|
|
|
|
|
2012-05-31 08:45:02 +02:00
|
|
|
void InitializeScanner(void);
|
|
|
|
void DestroyScanner(void);
|
|
|
|
};
|
|
|
|
|
2012-05-31 09:14:44 +02:00
|
|
|
}
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
#endif /* CONFIGCOMPILER_H */
|