2012-05-31 09:14:44 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2017-01-10 15:54:22 +01:00
|
|
|
* Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/) *
|
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
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "config/i2-config.hpp"
|
2014-11-15 08:20:22 +01:00
|
|
|
#include "config/expression.hpp"
|
2014-09-09 14:49:21 +02:00
|
|
|
#include "base/debuginfo.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/registry.hpp"
|
|
|
|
#include "base/initialize.hpp"
|
|
|
|
#include "base/singleton.hpp"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include <boost/function.hpp>
|
2014-11-25 09:40:32 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <stack>
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2014-11-23 12:06:47 +01:00
|
|
|
typedef union YYSTYPE YYSTYPE;
|
|
|
|
typedef void *yyscan_t;
|
|
|
|
|
2014-11-25 09:40:32 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
2014-11-23 12:06:47 +01:00
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
struct CompilerDebugInfo
|
2012-05-31 09:14:44 +02:00
|
|
|
{
|
2014-12-14 11:33:45 +01:00
|
|
|
const char *Path;
|
|
|
|
|
|
|
|
int FirstLine;
|
|
|
|
int FirstColumn;
|
|
|
|
|
|
|
|
int LastLine;
|
|
|
|
int LastColumn;
|
|
|
|
|
|
|
|
operator DebugInfo(void) const
|
|
|
|
{
|
|
|
|
DebugInfo di;
|
|
|
|
di.Path = Path;
|
|
|
|
di.FirstLine = FirstLine;
|
|
|
|
di.FirstColumn = FirstColumn;
|
|
|
|
di.LastLine = LastLine;
|
|
|
|
di.LastColumn = LastColumn;
|
|
|
|
return di;
|
|
|
|
}
|
|
|
|
};
|
2012-05-31 09:14:44 +02:00
|
|
|
|
2015-01-08 10:30:34 +01:00
|
|
|
struct EItemInfo
|
|
|
|
{
|
|
|
|
bool SideEffect;
|
|
|
|
CompilerDebugInfo DebugInfo;
|
|
|
|
};
|
|
|
|
|
2016-04-21 19:03:57 +02:00
|
|
|
enum FlowControlType
|
|
|
|
{
|
|
|
|
FlowControlReturn = 1,
|
|
|
|
FlowControlContinue = 2,
|
|
|
|
FlowControlBreak = 4
|
|
|
|
};
|
|
|
|
|
2015-07-21 09:32:17 +02:00
|
|
|
struct ZoneFragment
|
|
|
|
{
|
|
|
|
String Tag;
|
|
|
|
String Path;
|
|
|
|
};
|
|
|
|
|
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:
|
2015-08-17 16:08:57 +02:00
|
|
|
explicit ConfigCompiler(const String& path, std::istream *input,
|
2015-08-28 17:58:29 +02:00
|
|
|
const String& zone = String(), const String& package = String());
|
2012-06-06 14:38:28 +02:00
|
|
|
virtual ~ConfigCompiler(void);
|
2012-05-31 08:45:02 +02:00
|
|
|
|
2014-11-15 08:20:22 +01:00
|
|
|
Expression *Compile(void);
|
2012-05-31 10:16:32 +02:00
|
|
|
|
2015-08-17 16:08:57 +02:00
|
|
|
static Expression *CompileStream(const String& path, std::istream *stream,
|
2015-08-28 17:58:29 +02:00
|
|
|
const String& zone = String(), const String& package = String());
|
2015-08-26 06:57:24 +02:00
|
|
|
static Expression *CompileFile(const String& path, const String& zone = String(),
|
2015-08-28 17:58:29 +02:00
|
|
|
const String& package = String());
|
2015-08-17 16:08:57 +02:00
|
|
|
static Expression *CompileText(const String& path, const String& text,
|
2015-08-28 17:58:29 +02:00
|
|
|
const String& zone = String(), const String& package = String());
|
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
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
const char *GetPath(void) const;
|
2012-07-08 21:18:35 +02:00
|
|
|
|
2014-05-13 14:40:12 +02:00
|
|
|
void SetZone(const String& zone);
|
|
|
|
String GetZone(void) const;
|
2015-08-17 16:08:57 +02:00
|
|
|
|
2015-08-28 17:58:29 +02:00
|
|
|
void SetPackage(const String& package);
|
|
|
|
String GetPackage(void) const;
|
2014-05-13 14:40:12 +02:00
|
|
|
|
2015-08-17 16:08:57 +02:00
|
|
|
static void CollectIncludes(std::vector<Expression *>& expressions,
|
2015-08-28 17:58:29 +02:00
|
|
|
const String& file, const String& zone, const String& package);
|
2014-11-15 08:20:22 +01:00
|
|
|
|
2015-10-22 09:46:31 +02:00
|
|
|
static Expression *HandleInclude(const String& relativeBase, const String& path, bool search,
|
|
|
|
const String& zone, const String& package, const DebugInfo& debuginfo = DebugInfo());
|
|
|
|
static Expression *HandleIncludeRecursive(const String& relativeBase, const String& path,
|
|
|
|
const String& pattern, const String& zone, const String& package, const DebugInfo& debuginfo = DebugInfo());
|
|
|
|
static Expression *HandleIncludeZones(const String& relativeBase, const String& tag,
|
|
|
|
const String& path, const String& pattern, const String& package, const DebugInfo& debuginfo = DebugInfo());
|
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
|
|
|
|
2015-07-21 09:32:17 +02:00
|
|
|
static std::vector<ZoneFragment> GetZoneDirs(const String& zone);
|
2015-07-26 17:46:47 +02:00
|
|
|
static void RegisterZoneDir(const String& tag, const String& ppath, const String& zoneName);
|
2015-07-21 09:32:17 +02:00
|
|
|
|
2015-12-11 19:54:17 +01:00
|
|
|
static bool HasZoneConfigAuthority(const String& zoneName);
|
|
|
|
|
2012-05-31 08:45:02 +02:00
|
|
|
private:
|
2014-11-27 08:04:07 +01:00
|
|
|
boost::promise<boost::shared_ptr<Expression> > m_Promise;
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String m_Path;
|
2013-03-16 21:18:53 +01:00
|
|
|
std::istream *m_Input;
|
2014-05-13 14:40:12 +02:00
|
|
|
String m_Zone;
|
2015-08-28 17:58:29 +02:00
|
|
|
String m_Package;
|
2012-07-08 21:18:35 +02:00
|
|
|
|
2012-05-31 09:43:46 +02:00
|
|
|
void *m_Scanner;
|
2014-12-14 11:33:45 +01:00
|
|
|
|
|
|
|
static std::vector<String> m_IncludeSearchDirs;
|
2015-08-24 14:14:44 +02:00
|
|
|
static boost::mutex m_ZoneDirsMutex;
|
2015-07-21 09:32:17 +02:00
|
|
|
static std::map<String, std::vector<ZoneFragment> > m_ZoneDirs;
|
2014-12-14 11:33:45 +01:00
|
|
|
|
|
|
|
void InitializeScanner(void);
|
|
|
|
void DestroyScanner(void);
|
|
|
|
|
2015-10-22 09:46:31 +02:00
|
|
|
static void HandleIncludeZone(const String& relativeBase, const String& tag, const String& path, const String& pattern, const String& package, std::vector<Expression *>& expressions);
|
2015-07-21 09:32:17 +02:00
|
|
|
|
2017-04-27 05:31:44 +02:00
|
|
|
static bool IsAbsolutePath(const String& path);
|
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
public:
|
2014-11-23 12:06:47 +01:00
|
|
|
bool m_Eof;
|
2015-02-10 13:27:02 +01:00
|
|
|
int m_OpenBraces;
|
2012-05-31 09:43:46 +02:00
|
|
|
|
2014-11-27 08:04:07 +01:00
|
|
|
std::ostringstream m_LexBuffer;
|
2014-12-16 06:18:39 +01:00
|
|
|
CompilerDebugInfo m_LocationBegin;
|
2014-11-27 08:04:07 +01:00
|
|
|
|
2015-09-23 16:37:21 +02:00
|
|
|
std::stack<bool> m_IgnoreNewlines;
|
2014-11-25 09:40:32 +01:00
|
|
|
std::stack<bool> m_Apply;
|
|
|
|
std::stack<bool> m_ObjectAssign;
|
|
|
|
std::stack<bool> m_SeenAssign;
|
2015-07-02 17:51:52 +02:00
|
|
|
std::stack<bool> m_SeenIgnore;
|
2014-11-25 09:40:32 +01:00
|
|
|
std::stack<Expression *> m_Assign;
|
|
|
|
std::stack<Expression *> m_Ignore;
|
|
|
|
std::stack<String> m_FKVar;
|
|
|
|
std::stack<String> m_FVVar;
|
|
|
|
std::stack<Expression *> m_FTerm;
|
2016-04-21 19:03:57 +02:00
|
|
|
std::stack<int> m_FlowControlInfo;
|
2012-05-31 08:45:02 +02:00
|
|
|
};
|
|
|
|
|
2012-05-31 09:14:44 +02:00
|
|
|
}
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
#endif /* CONFIGCOMPILER_H */
|