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-06-06 14:38:28 +02:00
|
|
|
class I2_DYN_API ConfigCompiler
|
2012-05-31 08:45:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-07-02 10:29:32 +02:00
|
|
|
typedef function<vector<ConfigItem::Ptr> (const string& include)> HandleIncludeFunc;
|
|
|
|
|
|
|
|
ConfigCompiler(istream *input = &cin,
|
|
|
|
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);
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
static vector<ConfigItem::Ptr> CompileStream(istream *stream);
|
2012-06-11 08:21:47 +02:00
|
|
|
static vector<ConfigItem::Ptr> CompileFile(const string& filename);
|
|
|
|
static vector<ConfigItem::Ptr> CompileText(const string& text);
|
2012-06-06 14:38:28 +02:00
|
|
|
|
2012-07-02 10:29:32 +02:00
|
|
|
static vector<ConfigItem::Ptr> HandleFileInclude(const string& include);
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
vector<ConfigItem::Ptr> GetResult(void) const;
|
2012-06-01 16:49:33 +02:00
|
|
|
|
2012-07-02 10:29:32 +02:00
|
|
|
/* internally used methods */
|
|
|
|
void HandleInclude(const string& include);
|
|
|
|
void AddObject(const ConfigItem::Ptr& object);
|
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-07-02 10:29:32 +02:00
|
|
|
HandleIncludeFunc m_HandleInclude;
|
2012-05-31 09:43:46 +02:00
|
|
|
istream *m_Input;
|
|
|
|
void *m_Scanner;
|
2012-06-06 14:38:28 +02:00
|
|
|
vector<ConfigItem::Ptr> m_Result;
|
2012-05-31 09:43:46 +02:00
|
|
|
|
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 */
|