]> granicus.if.org Git - icinga2/blobdiff - lib/config/configcompiler.hpp
Merge pull request #6999 from Icinga/bugfix/compiler-warnings
[icinga2] / lib / config / configcompiler.hpp
index 0d72b9ac2ff5bf9ef36f9e9ed9a21683c648c1bd..b89fdf05c5c6a6a95e2d5d36b4baddf37d817f3d 100644 (file)
@@ -1,21 +1,4 @@
-/******************************************************************************
- * Icinga 2                                                                   *
- * Copyright (C) 2012-2015 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.             *
- ******************************************************************************/
+/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 
 #ifndef CONFIGCOMPILER_H
 #define CONFIGCOMPILER_H
@@ -26,7 +9,7 @@
 #include "base/registry.hpp"
 #include "base/initialize.hpp"
 #include "base/singleton.hpp"
-#include <boost/function.hpp>
+#include <future>
 #include <iostream>
 #include <stack>
 
@@ -46,7 +29,7 @@ struct CompilerDebugInfo
        int LastLine;
        int LastColumn;
 
-       operator DebugInfo(void) const
+       operator DebugInfo() const
        {
                DebugInfo di;
                di.Path = Path;
@@ -64,6 +47,13 @@ struct EItemInfo
        CompilerDebugInfo DebugInfo;
 };
 
+enum FlowControlType
+{
+       FlowControlReturn = 1,
+       FlowControlContinue = 2,
+       FlowControlBreak = 4
+};
+
 struct ZoneFragment
 {
        String Tag;
@@ -76,68 +66,83 @@ struct ZoneFragment
  *
  * @ingroup config
  */
-class I2_CONFIG_API ConfigCompiler
+class ConfigCompiler
 {
 public:
-       explicit ConfigCompiler(const String& path, std::istream *input, const String& zone = String());
-       virtual ~ConfigCompiler(void);
+       explicit ConfigCompiler(String path, std::istream *input,
+               String zone = String(), String package = String());
+       virtual ~ConfigCompiler();
 
-       Expression *Compile(void);
+       std::unique_ptr<Expression> Compile();
 
-       static Expression *CompileStream(const String& path, std::istream *stream, bool async = true, const String& zone = String());
-       static Expression *CompileFile(const String& path, bool async = true, const String& zone = String());
-       static Expression *CompileText(const String& path, const String& text, bool async = true, const String& zone = String());
+       static std::unique_ptr<Expression>CompileStream(const String& path, std::istream *stream,
+               const String& zone = String(), const String& package = String());
+       static std::unique_ptr<Expression>CompileFile(const String& path, const String& zone = String(),
+               const String& package = String());
+       static std::unique_ptr<Expression>CompileText(const String& path, const String& text,
+               const String& zone = String(), const String& package = String());
 
        static void AddIncludeSearchDir(const String& dir);
 
-       const char *GetPath(void) const;
+       const char *GetPath() const;
 
        void SetZone(const String& zone);
-       String GetZone(void) const;
+       String GetZone() const;
+
+       void SetPackage(const String& package);
+       String GetPackage() const;
+
+       void AddImport(const std::shared_ptr<Expression>& import);
+       std::vector<std::shared_ptr<Expression> > GetImports() const;
 
-       static void CollectIncludes(std::vector<Expression *>& expressions, const String& file, const String& zone);
+       static void CollectIncludes(std::vector<std::unique_ptr<Expression> >& expressions,
+               const String& file, const String& zone, const String& package);
 
-       /* internally used methods */
-       Expression *HandleInclude(const String& include, bool search, const DebugInfo& debuginfo = DebugInfo());
-       Expression *HandleIncludeRecursive(const String& path, const String& pattern, const DebugInfo& debuginfo = DebugInfo());
-       Expression *HandleIncludeZones(const String& tag, const String& path, const String& pattern, const DebugInfo& debuginfo = DebugInfo());
-       void HandleLibrary(const String& library);
+       static std::unique_ptr<Expression> HandleInclude(const String& relativeBase, const String& path, bool search,
+               const String& zone, const String& package, const DebugInfo& debuginfo = DebugInfo());
+       static std::unique_ptr<Expression> HandleIncludeRecursive(const String& relativeBase, const String& path,
+               const String& pattern, const String& zone, const String& package, const DebugInfo& debuginfo = DebugInfo());
+       static std::unique_ptr<Expression> HandleIncludeZones(const String& relativeBase, const String& tag,
+               const String& path, const String& pattern, const String& package, const DebugInfo& debuginfo = DebugInfo());
 
        size_t ReadInput(char *buffer, size_t max_bytes);
-       void *GetScanner(void) const;
+       void *GetScanner() const;
 
        static std::vector<ZoneFragment> GetZoneDirs(const String& zone);
        static void RegisterZoneDir(const String& tag, const String& ppath, const String& zoneName);
 
-       static const std::vector<String>& GetKeywords(void);
+       static bool HasZoneConfigAuthority(const String& zoneName);
 
 private:
-       boost::promise<boost::shared_ptr<Expression> > m_Promise;
+       std::promise<std::shared_ptr<Expression> > m_Promise;
 
        String m_Path;
        std::istream *m_Input;
        String m_Zone;
+       String m_Package;
+       std::vector<std::shared_ptr<Expression> > m_Imports;
 
        void *m_Scanner;
 
        static std::vector<String> m_IncludeSearchDirs;
+       static boost::mutex m_ZoneDirsMutex;
        static std::map<String, std::vector<ZoneFragment> > m_ZoneDirs;
 
-       void InitializeScanner(void);
-       void DestroyScanner(void);
+       void InitializeScanner();
+       void DestroyScanner();
 
-       void CompileHelper(void);
+       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);
 
-       void HandleIncludeZone(const String& tag, const String& path, const String& pattern, std::vector<Expression *>& expressions);
+       static bool IsAbsolutePath(const String& path);
 
 public:
        bool m_Eof;
        int m_OpenBraces;
 
-       int m_IgnoreNewlines;
        std::ostringstream m_LexBuffer;
        CompilerDebugInfo m_LocationBegin;
 
+       std::stack<bool> m_IgnoreNewlines;
        std::stack<bool> m_Apply;
        std::stack<bool> m_ObjectAssign;
        std::stack<bool> m_SeenAssign;
@@ -147,6 +152,7 @@ public:
        std::stack<String> m_FKVar;
        std::stack<String> m_FVVar;
        std::stack<Expression *> m_FTerm;
+       std::stack<int> m_FlowControlInfo;
 };
 
 }