2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-31 09:14:44 +02:00
|
|
|
|
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"
|
2020-01-21 13:38:59 +01:00
|
|
|
#include "base/string.hpp"
|
2017-11-21 12:28:09 +01:00
|
|
|
#include <future>
|
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;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
operator DebugInfo() const
|
2014-12-14 11:33:45 +01:00
|
|
|
{
|
|
|
|
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
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class ConfigCompiler
|
2012-05-31 08:45:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2018-01-04 08:54:18 +01:00
|
|
|
explicit ConfigCompiler(String path, std::istream *input,
|
|
|
|
String zone = String(), String package = String());
|
2018-01-04 04:25:35 +01:00
|
|
|
virtual ~ConfigCompiler();
|
2012-05-31 08:45:02 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
std::unique_ptr<Expression> Compile();
|
2012-05-31 10:16:32 +02:00
|
|
|
|
2017-12-15 05:34:46 +01:00
|
|
|
static std::unique_ptr<Expression>CompileStream(const String& path, std::istream *stream,
|
2017-12-19 15:50:05 +01:00
|
|
|
const String& zone = String(), const String& package = String());
|
2017-12-15 05:34:46 +01:00
|
|
|
static std::unique_ptr<Expression>CompileFile(const String& path, const String& zone = String(),
|
2017-12-19 15:50:05 +01:00
|
|
|
const String& package = String());
|
2017-12-15 05:34:46 +01:00
|
|
|
static std::unique_ptr<Expression>CompileText(const String& path, const String& text,
|
2017-12-19 15:50:05 +01: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
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
const char *GetPath() const;
|
2012-07-08 21:18:35 +02:00
|
|
|
|
2014-05-13 14:40:12 +02:00
|
|
|
void SetZone(const String& zone);
|
2018-01-04 04:25:35 +01:00
|
|
|
String GetZone() const;
|
2017-12-13 12:54:14 +01:00
|
|
|
|
2015-08-28 17:58:29 +02:00
|
|
|
void SetPackage(const String& package);
|
2018-01-04 04:25:35 +01:00
|
|
|
String GetPackage() const;
|
2014-05-13 14:40:12 +02:00
|
|
|
|
2019-07-26 14:17:27 +02:00
|
|
|
void AddImport(const Expression::Ptr& import);
|
|
|
|
std::vector<Expression::Ptr> GetImports() const;
|
2018-08-07 13:55:41 +02:00
|
|
|
|
2017-12-15 05:34:46 +01:00
|
|
|
static void CollectIncludes(std::vector<std::unique_ptr<Expression> >& expressions,
|
2017-12-19 15:50:05 +01:00
|
|
|
const String& file, const String& zone, const String& package);
|
2014-11-15 08:20:22 +01:00
|
|
|
|
2017-12-15 05:34:46 +01:00
|
|
|
static std::unique_ptr<Expression> HandleInclude(const String& relativeBase, const String& path, bool search,
|
2017-12-19 15:50:05 +01:00
|
|
|
const String& zone, const String& package, const DebugInfo& debuginfo = DebugInfo());
|
2017-12-15 05:34:46 +01:00
|
|
|
static std::unique_ptr<Expression> HandleIncludeRecursive(const String& relativeBase, const String& path,
|
2017-12-19 15:50:05 +01:00
|
|
|
const String& pattern, const String& zone, const String& package, const DebugInfo& debuginfo = DebugInfo());
|
2017-12-15 05:34:46 +01:00
|
|
|
static std::unique_ptr<Expression> HandleIncludeZones(const String& relativeBase, const String& tag,
|
2017-12-19 15:50:05 +01:00
|
|
|
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);
|
2018-01-04 04:25:35 +01:00
|
|
|
void *GetScanner() 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:
|
2019-07-26 14:17:27 +02:00
|
|
|
std::promise<Expression::Ptr> m_Promise;
|
2014-11-27 08:04:07 +01:00
|
|
|
|
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;
|
2019-07-26 14:17:27 +02:00
|
|
|
std::vector<Expression::Ptr> m_Imports;
|
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;
|
2021-02-02 10:16:04 +01:00
|
|
|
static std::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
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void InitializeScanner();
|
|
|
|
void DestroyScanner();
|
2014-12-14 11:33:45 +01:00
|
|
|
|
2017-12-15 05:34:46 +01: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 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
|
|
|
|
2020-01-21 13:38:59 +01:00
|
|
|
String 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 */
|