mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-07 13:04:58 +00:00
139 lines
5.4 KiB
C++
139 lines
5.4 KiB
C++
#pragma once
|
|
|
|
#include "AbstractDirectiveStreamProxy.h"
|
|
#include "Parsing/IParserLineStream.h"
|
|
#include "Parsing/Simple/Expression/ISimpleExpression.h"
|
|
|
|
#include <cstddef>
|
|
#include <map>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <stack>
|
|
#include <vector>
|
|
|
|
class DefinesStreamProxy final : public AbstractDirectiveStreamProxy
|
|
{
|
|
public:
|
|
class DefineParameterPosition
|
|
{
|
|
public:
|
|
DefineParameterPosition();
|
|
DefineParameterPosition(unsigned index, unsigned position, bool stringize);
|
|
|
|
unsigned m_parameter_index;
|
|
unsigned m_parameter_position;
|
|
bool m_stringize;
|
|
};
|
|
|
|
class Define
|
|
{
|
|
public:
|
|
Define();
|
|
Define(std::string name, std::string value);
|
|
void IdentifyParameters(const std::vector<std::string>& parameterNames);
|
|
|
|
std::string m_name;
|
|
std::string m_value;
|
|
std::vector<DefineParameterPosition> m_parameter_positions;
|
|
bool m_contains_token_pasting_operators;
|
|
|
|
private:
|
|
void IdentifyTokenPasteOperatorOnly();
|
|
};
|
|
|
|
enum class ParameterState : uint8_t
|
|
{
|
|
NOT_IN_PARAMETERS,
|
|
AFTER_OPEN,
|
|
AFTER_PARAM,
|
|
AFTER_COMMA
|
|
};
|
|
|
|
class MacroParameterState
|
|
{
|
|
public:
|
|
MacroParameterState();
|
|
|
|
ParameterState m_parameter_state;
|
|
std::ostringstream m_current_parameter;
|
|
std::vector<std::string> m_parameters;
|
|
std::stack<char> m_bracket_depth;
|
|
};
|
|
|
|
explicit DefinesStreamProxy(IParserLineStream* stream, bool skipDirectiveLines = false);
|
|
|
|
void AddDefine(Define define);
|
|
void Undefine(const std::string& name);
|
|
|
|
[[nodiscard]] std::unique_ptr<ISimpleExpression> ParseExpression(std::shared_ptr<std::string> fileName, int lineNumber, std::string expressionString);
|
|
|
|
ParserLine NextLine() override;
|
|
bool IncludeFile(const std::string& filename) override;
|
|
void PopCurrentFile() override;
|
|
[[nodiscard]] bool IsOpen() const override;
|
|
[[nodiscard]] bool Eof() const override;
|
|
|
|
private:
|
|
enum class BlockMode : uint8_t
|
|
|
|
{
|
|
NOT_IN_BLOCK,
|
|
IN_BLOCK,
|
|
BLOCK_BLOCKED
|
|
};
|
|
|
|
static int GetLineEndEscapePos(const ParserLine& line);
|
|
void MatchDefineParameters(const ParserLine& line, size_t& currentPos);
|
|
void ContinueDefine(const ParserLine& line, size_t currentPos);
|
|
void ContinueParameters(const ParserLine& line, size_t& currentPos);
|
|
[[nodiscard]] bool MatchDefineDirective(const ParserLine& line, size_t directiveStartPosition, size_t directiveEndPosition);
|
|
[[nodiscard]] bool MatchUndefDirective(const ParserLine& line, size_t directiveStartPosition, size_t directiveEndPosition);
|
|
[[nodiscard]] bool MatchIfDirective(const ParserLine& line, size_t directiveStartPosition, size_t directiveEndPosition);
|
|
[[nodiscard]] bool MatchElIfDirective(const ParserLine& line, size_t directiveStartPosition, size_t directiveEndPosition);
|
|
[[nodiscard]] bool MatchIfdefDirective(const ParserLine& line, size_t directiveStartPosition, size_t directiveEndPosition);
|
|
[[nodiscard]] bool MatchElseDirective(const ParserLine& line, size_t directiveStartPosition, size_t directiveEndPosition);
|
|
[[nodiscard]] bool MatchEndifDirective(const ParserLine& line, size_t directiveStartPosition, size_t directiveEndPosition);
|
|
[[nodiscard]] bool MatchDirectives(const ParserLine& line);
|
|
|
|
static void ExtractParametersFromMacroUsage(
|
|
const ParserLine& line, const unsigned& linePos, MacroParameterState& state, const std::string& input, unsigned& inputPos);
|
|
bool FindMacroForIdentifier(const std::string& input, unsigned identifierStart, unsigned identifierEnd, const Define*& value) const;
|
|
|
|
static bool MatchDefinedExpression(const ParserLine& line, size_t& pos, std::string& definitionName);
|
|
void ExpandDefinedExpressions(ParserLine& line) const;
|
|
|
|
bool FindNextMacro(const std::string& input, unsigned& inputPos, unsigned& defineStart, const DefinesStreamProxy::Define*& define) const;
|
|
|
|
static void ProcessTokenPastingOperators(const ParserLine& line, const unsigned& linePos, std::string& input);
|
|
static void InsertMacroParameters(std::ostringstream& out, const DefinesStreamProxy::Define* macro, const std::vector<std::string>& parameterValues);
|
|
void ExpandMacro(ParserLine& line,
|
|
unsigned& linePos,
|
|
std::ostringstream& out,
|
|
std::vector<const Define*>& callstack,
|
|
const DefinesStreamProxy::Define* macro,
|
|
const std::vector<std::string>& parameterValues);
|
|
|
|
static void
|
|
ContinueMacroParameters(const ParserLine& line, const unsigned& linePos, MacroParameterState& state, const std::string& input, unsigned& inputPos);
|
|
void ContinueMultiLineMacro(ParserLine& line);
|
|
|
|
void ProcessNestedMacros(ParserLine& line, unsigned& linePos, std::vector<const Define*>& callstack, std::string& input);
|
|
void ProcessMacrosSingleLine(ParserLine& line);
|
|
void ProcessMacrosMultiLine(ParserLine& line);
|
|
|
|
IParserLineStream* const m_stream;
|
|
const bool m_skip_directive_lines;
|
|
std::map<std::string, Define> m_defines;
|
|
std::stack<BlockMode> m_modes;
|
|
unsigned m_ignore_depth;
|
|
|
|
bool m_in_define;
|
|
ParameterState m_parameter_state;
|
|
Define m_current_define;
|
|
std::ostringstream m_current_define_value;
|
|
std::vector<std::string> m_current_define_parameters;
|
|
|
|
const Define* m_current_macro;
|
|
MacroParameterState m_multi_line_macro_parameters;
|
|
};
|