2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-31 03:14:44 -04:00
|
|
|
|
2012-06-06 08:38:28 -04:00
|
|
|
#ifndef CONFIGCOMPILER_H
|
|
|
|
|
#define CONFIGCOMPILER_H
|
2012-05-31 02:45:02 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "config/i2-config.hpp"
|
2014-11-15 02:20:22 -05:00
|
|
|
#include "config/expression.hpp"
|
2014-09-09 08:49:21 -04:00
|
|
|
#include "base/debuginfo.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/registry.hpp"
|
|
|
|
|
#include "base/initialize.hpp"
|
|
|
|
|
#include "base/singleton.hpp"
|
2020-01-21 07:38:59 -05:00
|
|
|
#include "base/string.hpp"
|
2017-11-21 06:28:09 -05:00
|
|
|
#include <future>
|
2014-11-25 03:40:32 -05:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <stack>
|
2013-03-16 16:18:53 -04:00
|
|
|
|
2014-11-23 06:06:47 -05:00
|
|
|
typedef union YYSTYPE YYSTYPE;
|
|
|
|
|
typedef void *yyscan_t;
|
|
|
|
|
|
2014-11-25 03:40:32 -05:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
2014-11-23 06:06:47 -05:00
|
|
|
|
2014-12-14 05:33:45 -05:00
|
|
|
struct CompilerDebugInfo
|
2012-05-31 03:14:44 -04:00
|
|
|
{
|
2014-12-14 05:33:45 -05:00
|
|
|
const char *Path;
|
|
|
|
|
|
|
|
|
|
int FirstLine;
|
|
|
|
|
int FirstColumn;
|
|
|
|
|
|
|
|
|
|
int LastLine;
|
|
|
|
|
int LastColumn;
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
operator DebugInfo() const
|
2014-12-14 05:33:45 -05:00
|
|
|
{
|
|
|
|
|
DebugInfo di;
|
|
|
|
|
di.Path = Path;
|
|
|
|
|
di.FirstLine = FirstLine;
|
|
|
|
|
di.FirstColumn = FirstColumn;
|
|
|
|
|
di.LastLine = LastLine;
|
|
|
|
|
di.LastColumn = LastColumn;
|
|
|
|
|
return di;
|
|
|
|
|
}
|
|
|
|
|
};
|
2012-05-31 03:14:44 -04:00
|
|
|
|
2015-01-08 04:30:34 -05:00
|
|
|
struct EItemInfo
|
|
|
|
|
{
|
|
|
|
|
bool SideEffect;
|
|
|
|
|
CompilerDebugInfo DebugInfo;
|
|
|
|
|
};
|
|
|
|
|
|
2016-04-21 13:03:57 -04:00
|
|
|
enum FlowControlType
|
|
|
|
|
{
|
|
|
|
|
FlowControlReturn = 1,
|
|
|
|
|
FlowControlContinue = 2,
|
|
|
|
|
FlowControlBreak = 4
|
|
|
|
|
};
|
|
|
|
|
|
2015-07-21 03:32:17 -04:00
|
|
|
struct ZoneFragment
|
|
|
|
|
{
|
|
|
|
|
String Tag;
|
|
|
|
|
String Path;
|
|
|
|
|
};
|
|
|
|
|
|
2012-09-17 08:47:43 -04:00
|
|
|
/**
|
|
|
|
|
* The configuration compiler can be used to compile a configuration file
|
2012-09-19 06:32:39 -04:00
|
|
|
* into a number of configuration items.
|
2012-09-17 08:47:43 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup config
|
|
|
|
|
*/
|
2017-12-31 01:22:16 -05:00
|
|
|
class ConfigCompiler
|
2012-05-31 02:45:02 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2018-01-04 02:54:18 -05:00
|
|
|
explicit ConfigCompiler(String path, std::istream *input,
|
|
|
|
|
String zone = String(), String package = String());
|
2018-01-03 22:25:35 -05:00
|
|
|
virtual ~ConfigCompiler();
|
2012-05-31 02:45:02 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
std::unique_ptr<Expression> Compile();
|
2012-05-31 04:16:32 -04:00
|
|
|
|
2017-12-14 23:34:46 -05:00
|
|
|
static std::unique_ptr<Expression>CompileStream(const String& path, std::istream *stream,
|
2017-12-19 09:50:05 -05:00
|
|
|
const String& zone = String(), const String& package = String());
|
2017-12-14 23:34:46 -05:00
|
|
|
static std::unique_ptr<Expression>CompileFile(const String& path, const String& zone = String(),
|
2017-12-19 09:50:05 -05:00
|
|
|
const String& package = String());
|
2017-12-14 23:34:46 -05:00
|
|
|
static std::unique_ptr<Expression>CompileText(const String& path, const String& text,
|
2017-12-19 09:50:05 -05:00
|
|
|
const String& zone = String(), const String& package = String());
|
2012-06-06 08:38:28 -04:00
|
|
|
|
2013-02-01 16:44:58 -05:00
|
|
|
static void AddIncludeSearchDir(const String& dir);
|
2012-07-02 04:29:32 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
const char *GetPath() const;
|
2012-07-08 15:18:35 -04:00
|
|
|
|
2014-05-13 08:40:12 -04:00
|
|
|
void SetZone(const String& zone);
|
2018-01-03 22:25:35 -05:00
|
|
|
String GetZone() const;
|
2017-12-13 06:54:14 -05:00
|
|
|
|
2015-08-28 11:58:29 -04:00
|
|
|
void SetPackage(const String& package);
|
2018-01-03 22:25:35 -05:00
|
|
|
String GetPackage() const;
|
2014-05-13 08:40:12 -04:00
|
|
|
|
2019-07-26 08:17:27 -04:00
|
|
|
void AddImport(const Expression::Ptr& import);
|
|
|
|
|
std::vector<Expression::Ptr> GetImports() const;
|
2018-08-07 07:55:41 -04:00
|
|
|
|
2017-12-14 23:34:46 -05:00
|
|
|
static void CollectIncludes(std::vector<std::unique_ptr<Expression> >& expressions,
|
2017-12-19 09:50:05 -05:00
|
|
|
const String& file, const String& zone, const String& package);
|
2014-11-15 02:20:22 -05:00
|
|
|
|
2017-12-14 23:34:46 -05:00
|
|
|
static std::unique_ptr<Expression> HandleInclude(const String& relativeBase, const String& path, bool search,
|
2017-12-19 09:50:05 -05:00
|
|
|
const String& zone, const String& package, const DebugInfo& debuginfo = DebugInfo());
|
2017-12-14 23:34:46 -05:00
|
|
|
static std::unique_ptr<Expression> HandleIncludeRecursive(const String& relativeBase, const String& path,
|
2017-12-19 09:50:05 -05:00
|
|
|
const String& pattern, const String& zone, const String& package, const DebugInfo& debuginfo = DebugInfo());
|
2017-12-14 23:34:46 -05:00
|
|
|
static std::unique_ptr<Expression> HandleIncludeZones(const String& relativeBase, const String& tag,
|
2017-12-19 09:50:05 -05:00
|
|
|
const String& path, const String& pattern, const String& package, const DebugInfo& debuginfo = DebugInfo());
|
2013-03-12 08:45:54 -04:00
|
|
|
|
2012-05-31 03:43:46 -04:00
|
|
|
size_t ReadInput(char *buffer, size_t max_bytes);
|
2018-01-03 22:25:35 -05:00
|
|
|
void *GetScanner() const;
|
2012-05-31 02:45:02 -04:00
|
|
|
|
2015-07-21 03:32:17 -04:00
|
|
|
static std::vector<ZoneFragment> GetZoneDirs(const String& zone);
|
2015-07-26 11:46:47 -04:00
|
|
|
static void RegisterZoneDir(const String& tag, const String& ppath, const String& zoneName);
|
2015-07-21 03:32:17 -04:00
|
|
|
|
2015-12-11 13:54:17 -05:00
|
|
|
static bool HasZoneConfigAuthority(const String& zoneName);
|
|
|
|
|
|
2012-05-31 02:45:02 -04:00
|
|
|
private:
|
2019-07-26 08:17:27 -04:00
|
|
|
std::promise<Expression::Ptr> m_Promise;
|
2014-11-27 02:04:07 -05:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
String m_Path;
|
2013-03-16 16:18:53 -04:00
|
|
|
std::istream *m_Input;
|
2014-05-13 08:40:12 -04:00
|
|
|
String m_Zone;
|
2015-08-28 11:58:29 -04:00
|
|
|
String m_Package;
|
2019-07-26 08:17:27 -04:00
|
|
|
std::vector<Expression::Ptr> m_Imports;
|
2012-07-08 15:18:35 -04:00
|
|
|
|
2012-05-31 03:43:46 -04:00
|
|
|
void *m_Scanner;
|
2014-12-14 05:33:45 -05:00
|
|
|
|
|
|
|
|
static std::vector<String> m_IncludeSearchDirs;
|
2021-02-02 04:16:04 -05:00
|
|
|
static std::mutex m_ZoneDirsMutex;
|
2015-07-21 03:32:17 -04:00
|
|
|
static std::map<String, std::vector<ZoneFragment> > m_ZoneDirs;
|
2014-12-14 05:33:45 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void InitializeScanner();
|
|
|
|
|
void DestroyScanner();
|
2014-12-14 05:33:45 -05:00
|
|
|
|
2017-12-14 23:34:46 -05:00
|
|
|
static void HandleIncludeZone(const String& relativeBase, const String& tag, const String& path, const String& pattern, const String& package, std::vector<std::unique_ptr<Expression> >& expressions);
|
2015-07-21 03:32:17 -04:00
|
|
|
|
2017-04-26 23:31:44 -04:00
|
|
|
static bool IsAbsolutePath(const String& path);
|
|
|
|
|
|
2014-12-14 05:33:45 -05:00
|
|
|
public:
|
2014-11-23 06:06:47 -05:00
|
|
|
bool m_Eof;
|
2015-02-10 07:27:02 -05:00
|
|
|
int m_OpenBraces;
|
2012-05-31 03:43:46 -04:00
|
|
|
|
2020-01-21 07:38:59 -05:00
|
|
|
String m_LexBuffer;
|
2014-12-16 00:18:39 -05:00
|
|
|
CompilerDebugInfo m_LocationBegin;
|
2014-11-27 02:04:07 -05:00
|
|
|
|
2015-09-23 10:37:21 -04:00
|
|
|
std::stack<bool> m_IgnoreNewlines;
|
2014-11-25 03:40:32 -05:00
|
|
|
std::stack<bool> m_Apply;
|
|
|
|
|
std::stack<bool> m_ObjectAssign;
|
|
|
|
|
std::stack<bool> m_SeenAssign;
|
2015-07-02 11:51:52 -04:00
|
|
|
std::stack<bool> m_SeenIgnore;
|
2014-11-25 03:40:32 -05: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 13:03:57 -04:00
|
|
|
std::stack<int> m_FlowControlInfo;
|
2012-05-31 02:45:02 -04:00
|
|
|
};
|
|
|
|
|
|
2012-05-31 03:14:44 -04:00
|
|
|
}
|
|
|
|
|
|
2012-06-06 08:38:28 -04:00
|
|
|
#endif /* CONFIGCOMPILER_H */
|