2013-10-26 09:41:45 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2013-10-26 09:41:45 +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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CLASSCOMPILER_H
|
|
|
|
#define CLASSCOMPILER_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <istream>
|
|
|
|
#include <vector>
|
|
|
|
#include <algorithm>
|
2014-11-30 23:32:13 +01:00
|
|
|
#include <map>
|
2013-10-26 09:41:45 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
struct ClassDebugInfo
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
int first_line;
|
|
|
|
int first_column;
|
|
|
|
int last_line;
|
|
|
|
int last_column;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum FieldAccessorType
|
|
|
|
{
|
|
|
|
FTGet,
|
|
|
|
FTSet,
|
2015-08-25 13:53:43 +02:00
|
|
|
FTDefault,
|
2015-09-22 09:42:30 +02:00
|
|
|
FTTrack,
|
|
|
|
FTNavigate
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct FieldAccessor
|
|
|
|
{
|
|
|
|
FieldAccessorType Type;
|
|
|
|
std::string Accessor;
|
2015-02-09 08:50:17 +01:00
|
|
|
bool Pure;
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2015-02-09 08:50:17 +01:00
|
|
|
FieldAccessor(FieldAccessorType type, const std::string& accessor, bool pure)
|
|
|
|
: Type(type), Accessor(accessor), Pure(pure)
|
2013-10-26 09:41:45 +02:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2015-03-11 16:06:58 +01:00
|
|
|
/* keep this in sync with lib/base/type.hpp */
|
2013-10-26 09:41:45 +02:00
|
|
|
enum FieldAttribute
|
|
|
|
{
|
2015-03-11 16:06:58 +01:00
|
|
|
FAEphemeral = 1,
|
|
|
|
FAConfig = 2,
|
|
|
|
FAState = 4,
|
|
|
|
FAEnum = 8,
|
|
|
|
FAGetProtected = 16,
|
|
|
|
FASetProtected = 32,
|
2015-10-20 08:20:35 +02:00
|
|
|
FANoStorage = 64,
|
|
|
|
FALoadDependency = 128,
|
|
|
|
FARequired = 256,
|
|
|
|
FANavigation = 512,
|
|
|
|
FANoUserModify = 1024,
|
|
|
|
FANoUserView = 2048
|
2014-11-30 23:32:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct FieldType
|
|
|
|
{
|
|
|
|
bool IsName;
|
|
|
|
std::string TypeName;
|
2015-08-25 13:53:43 +02:00
|
|
|
int ArrayRank;
|
|
|
|
|
|
|
|
FieldType(void)
|
|
|
|
: IsName(false), ArrayRank(0)
|
|
|
|
{ }
|
2014-11-30 23:32:13 +01:00
|
|
|
|
|
|
|
inline std::string GetRealType(void) const
|
|
|
|
{
|
2015-08-25 13:53:43 +02:00
|
|
|
if (ArrayRank > 0)
|
|
|
|
return "Array::Ptr";
|
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
if (IsName)
|
|
|
|
return "String";
|
2015-08-25 13:53:43 +02:00
|
|
|
|
|
|
|
return TypeName;
|
2014-11-30 23:32:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string GetArgumentType(void) const
|
|
|
|
{
|
|
|
|
std::string realType = GetRealType();
|
|
|
|
|
|
|
|
if (realType == "bool" || realType == "double" || realType == "int")
|
|
|
|
return realType;
|
|
|
|
else
|
|
|
|
return "const " + realType + "&";
|
|
|
|
}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Field
|
|
|
|
{
|
|
|
|
int Attributes;
|
2014-11-30 23:32:13 +01:00
|
|
|
FieldType Type;
|
2013-10-26 09:41:45 +02:00
|
|
|
std::string Name;
|
|
|
|
std::string AlternativeName;
|
|
|
|
std::string GetAccessor;
|
2015-02-09 08:50:17 +01:00
|
|
|
bool PureGetAccessor;
|
2013-10-26 09:41:45 +02:00
|
|
|
std::string SetAccessor;
|
2015-02-09 08:50:17 +01:00
|
|
|
bool PureSetAccessor;
|
2013-10-26 09:41:45 +02:00
|
|
|
std::string DefaultAccessor;
|
2015-08-25 13:53:43 +02:00
|
|
|
std::string TrackAccessor;
|
2015-09-22 09:42:30 +02:00
|
|
|
std::string NavigationName;
|
|
|
|
std::string NavigateAccessor;
|
|
|
|
bool PureNavigateAccessor;
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2015-02-09 12:37:29 +01:00
|
|
|
Field(void)
|
2015-09-22 09:42:30 +02:00
|
|
|
: Attributes(0), PureGetAccessor(false), PureSetAccessor(false), PureNavigateAccessor(false)
|
2015-02-09 12:37:29 +01:00
|
|
|
{ }
|
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
inline std::string GetFriendlyName(void) const
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
|
|
|
if (!AlternativeName.empty())
|
|
|
|
return AlternativeName;
|
|
|
|
|
|
|
|
bool cap = true;
|
|
|
|
std::string name = Name;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < name.size(); i++) {
|
|
|
|
if (name[i] == '_') {
|
|
|
|
cap = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap) {
|
|
|
|
name[i] = toupper(name[i]);
|
|
|
|
cap = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
name.erase(
|
|
|
|
std::remove(name.begin(), name.end(), '_'),
|
|
|
|
name.end()
|
|
|
|
);
|
|
|
|
|
|
|
|
/* TODO: figure out name */
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-12-18 10:18:57 +01:00
|
|
|
enum TypeAttribute
|
|
|
|
{
|
2016-03-29 12:45:22 +02:00
|
|
|
TAAbstract = 1,
|
|
|
|
TAVarArgConstructor = 2
|
2013-12-18 10:18:57 +01:00
|
|
|
};
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
struct Klass
|
|
|
|
{
|
|
|
|
std::string Name;
|
|
|
|
std::string Parent;
|
2014-04-05 22:17:20 +02:00
|
|
|
std::string TypeBase;
|
2013-12-18 10:18:57 +01:00
|
|
|
int Attributes;
|
2013-10-26 09:41:45 +02:00
|
|
|
std::vector<Field> Fields;
|
2015-02-25 12:43:03 +01:00
|
|
|
std::vector<std::string> LoadDependencies;
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
enum RuleAttribute
|
|
|
|
{
|
|
|
|
RARequired = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Rule
|
|
|
|
{
|
|
|
|
int Attributes;
|
|
|
|
bool IsName;
|
|
|
|
std::string Type;
|
|
|
|
std::string Pattern;
|
|
|
|
|
|
|
|
std::vector<Rule> Rules;
|
|
|
|
};
|
|
|
|
|
2015-03-28 11:04:42 +01:00
|
|
|
enum ValidatorType
|
|
|
|
{
|
|
|
|
ValidatorField,
|
|
|
|
ValidatorArray,
|
|
|
|
ValidatorDictionary
|
|
|
|
};
|
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
struct Validator
|
|
|
|
{
|
|
|
|
std::string Name;
|
|
|
|
std::vector<Rule> Rules;
|
|
|
|
};
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
class ClassCompiler
|
|
|
|
{
|
|
|
|
public:
|
2015-03-28 11:04:42 +01:00
|
|
|
ClassCompiler(const std::string& path, std::istream& input, std::ostream& oimpl, std::ostream& oheader);
|
2013-10-26 09:41:45 +02:00
|
|
|
~ClassCompiler(void);
|
|
|
|
|
|
|
|
void Compile(void);
|
|
|
|
|
|
|
|
std::string GetPath(void) const;
|
|
|
|
|
|
|
|
void InitializeScanner(void);
|
|
|
|
void DestroyScanner(void);
|
|
|
|
|
|
|
|
void *GetScanner(void);
|
|
|
|
|
|
|
|
size_t ReadInput(char *buffer, size_t max_size);
|
|
|
|
|
|
|
|
void HandleInclude(const std::string& path, const ClassDebugInfo& locp);
|
|
|
|
void HandleAngleInclude(const std::string& path, const ClassDebugInfo& locp);
|
2015-08-25 13:53:43 +02:00
|
|
|
void HandleImplInclude(const std::string& path, const ClassDebugInfo& locp);
|
|
|
|
void HandleAngleImplInclude(const std::string& path, const ClassDebugInfo& locp);
|
2013-10-26 09:41:45 +02:00
|
|
|
void HandleClass(const Klass& klass, const ClassDebugInfo& locp);
|
2014-11-30 23:32:13 +01:00
|
|
|
void HandleValidator(const Validator& validator, const ClassDebugInfo& locp);
|
2013-10-26 09:41:45 +02:00
|
|
|
void HandleNamespaceBegin(const std::string& name, const ClassDebugInfo& locp);
|
|
|
|
void HandleNamespaceEnd(const ClassDebugInfo& locp);
|
|
|
|
void HandleCode(const std::string& code, const ClassDebugInfo& locp);
|
2015-08-04 14:47:44 +02:00
|
|
|
void HandleLibrary(const std::string& library, const ClassDebugInfo& locp);
|
2014-11-30 23:32:13 +01:00
|
|
|
void HandleMissingValidators(void);
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2015-03-28 11:04:42 +01:00
|
|
|
void CodeGenValidator(const std::string& name, const std::string& klass, const std::vector<Rule>& rules, const std::string& field, const FieldType& fieldType, ValidatorType validatorType);
|
|
|
|
void CodeGenValidatorSubrules(const std::string& name, const std::string& klass, const std::vector<Rule>& rules);
|
|
|
|
|
|
|
|
static void CompileFile(const std::string& inputpath, const std::string& implpath,
|
|
|
|
const std::string& headerpath);
|
|
|
|
static void CompileStream(const std::string& path, std::istream& input,
|
|
|
|
std::ostream& oimpl, std::ostream& oheader);
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2014-11-07 23:07:02 +01:00
|
|
|
static void OptimizeStructLayout(std::vector<Field>& fields);
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
private:
|
|
|
|
std::string m_Path;
|
2015-03-28 11:04:42 +01:00
|
|
|
std::istream& m_Input;
|
|
|
|
std::ostream& m_Impl;
|
|
|
|
std::ostream& m_Header;
|
2013-10-26 09:41:45 +02:00
|
|
|
void *m_Scanner;
|
2013-12-13 12:54:14 +01:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
std::string m_Library;
|
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
std::map<std::pair<std::string, std::string>, Field> m_MissingValidators;
|
|
|
|
|
2013-12-13 12:54:14 +01:00
|
|
|
static unsigned long SDBM(const std::string& str, size_t len);
|
2014-09-09 13:30:54 +02:00
|
|
|
static std::string BaseName(const std::string& path);
|
|
|
|
static std::string FileNameToGuardName(const std::string& path);
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-03 10:41:30 +01:00
|
|
|
#endif /* CLASSCOMPILER_H */
|
|
|
|
|