1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#ifndef CXXVARIABLESCANNER_H
#define CXXVARIABLESCANNER_H
#include "CxxLexerAPI.h"
#include "CxxVariable.h"
#include "codelite_exports.h"
#include "macros.h"
#include "wxStringHash.h"
#include <stack>
class WXDLLIMPEXP_CL CxxVariableScanner
{
protected:
Scanner_t m_scanner;
wxString m_buffer;
bool m_eof;
int m_parenthesisDepth;
std::unordered_set<int> m_nativeTypes;
eCxxStandard m_standard;
wxStringTable_t m_macros;
std::vector<wxString> m_buffers;
bool m_isFuncSignature;
protected:
bool GetNextToken(CxxLexerToken& token);
void UngetToken(const CxxLexerToken& token);
bool IsEof() const { return m_eof; }
bool TypeHasIdentifier(const CxxVariable::LexerToken::Vec_t& type);
bool HasNativeTypeInList(const CxxVariable::LexerToken::Vec_t& type) const;
wxString& Buffer();
wxString& PushBuffer();
wxString& PopBuffer();
bool OnForLoop(Scanner_t scanner);
bool OnCatch(Scanner_t scanner);
bool OnWhile(Scanner_t scanner);
bool OnDeclType(Scanner_t scanner);
bool OnLambda(Scanner_t scanner);
protected:
/**
* @brief read the variable type
*/
bool ReadType(CxxVariable::LexerToken::Vec_t& vartype, bool& isAuto);
/**
* @brief read the variable name. Return true if there are more variables
* for the current type
*/
bool ReadName(wxString& varname, wxString& pointerOrRef, wxString& varInitialization);
/**
* @brief consume variable initialization
*/
void ConsumeInitialization(wxString& consumed);
int ReadUntil(const std::unordered_set<int>& delims, CxxLexerToken& token, wxString& consumed);
CxxVariable::Vec_t DoGetVariables(const wxString& buffer, bool sort);
CxxVariable::Vec_t DoParseFunctionArguments(const wxString& buffer);
public:
CxxVariableScanner(const wxString& buffer, eCxxStandard standard, const wxStringTable_t& macros,
bool isFuncSignature);
virtual ~CxxVariableScanner();
/**
* @brief strip buffer from unreachable code blocks (assuming the caret is at the last position of the bufer)
*/
void OptimizeBuffer(const wxString& buffer, wxString& strippedBuffer);
/**
* @brief parse the buffer and return list of variables
* @return
*/
CxxVariable::Vec_t GetVariables(bool sort = true);
/**
* @brief parse the buffer and return list of variables
* @return
*/
CxxVariable::Vec_t ParseFunctionArguments();
/**
* @brief parse the buffer and return a unique set of variables
*/
CxxVariable::Map_t GetVariablesMap();
};
#endif // CXXVARIABLESCANNER_H
|