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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// Copyright : (C) 2015 Eran Ifrah
// File name : CxxLexerAPI.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef CppLexerAPI_H__
#define CppLexerAPI_H__
#include <wx/filename.h>
#include <wx/string.h>
#include <wx/variant.h>
#include <map>
#include <list>
#include <vector>
#include <codelite_exports.h>
#if 0
#define DEBUGMSG wxPrintf
#define CL_DEBUG wxPrintf
#define CL_DEBUG1 wxPrintf
#else
#define DEBUGMSG(...) \
do { \
} while(false)
#if 0
#define CL_DEBUG(...) \
do { \
} while(false)
#define CL_DEBUG1(...) \
do { \
} while(false)
#endif
#endif
enum eLexerOptions {
kLexerOpt_None = 0x00000000,
kLexerOpt_ReturnComments = 0x00000001,
kLexerOpt_ReturnWhitespace = 0x00000002,
kLexerOpt_CollectMacroValueNumbers = 0x00000004,
kLexerOpt_DontCollectMacrosDefinedInThisFile = 0x00000008,
};
struct WXDLLIMPEXP_CL CxxLexerException
{
wxString message;
CxxLexerException(const wxString& msg)
: message(msg)
{
}
};
struct WXDLLIMPEXP_CL CxxLexerToken
{
int lineNumber;
int column;
char* text;
int type;
wxString comment;
CxxLexerToken()
: lineNumber(0)
, column(0)
, text(NULL)
, type(0)
{
}
CxxLexerToken(int tokenType)
: lineNumber(0)
, column(0)
, text(NULL)
, type(tokenType)
{
}
typedef std::vector<CxxLexerToken> Vect_t;
typedef std::list<CxxLexerToken> List_t;
};
struct WXDLLIMPEXP_CL CxxPreProcessorToken
{
wxString name;
wxString value;
bool deleteOnExit;
CxxPreProcessorToken()
: deleteOnExit(false)
{
}
typedef std::map<wxString, CxxPreProcessorToken> Map_t;
};
/**
* @class CppLexerUserData
*/
struct WXDLLIMPEXP_CL CppLexerUserData
{
private:
size_t m_flags;
wxString m_comment;
wxString m_rawStringLabel;
int m_commentStartLine;
int m_commentEndLine;
FILE* m_currentPF;
public:
void Clear()
{
if(m_currentPF) {
::fclose(m_currentPF);
m_currentPF = NULL;
}
ClearComment();
m_rawStringLabel.Clear();
}
CppLexerUserData(size_t options)
: m_flags(options)
, m_commentStartLine(wxNOT_FOUND)
, m_commentEndLine(wxNOT_FOUND)
, m_currentPF(NULL)
{
}
~CppLexerUserData() { Clear(); }
void SetCurrentPF(FILE* currentPF) { this->m_currentPF = currentPF; }
/**
* @brief do we collect comments?
*/
bool IsCollectingComments() const { return m_flags & kLexerOpt_ReturnComments; }
bool IsCollectingWhitespace() const { return m_flags & kLexerOpt_ReturnWhitespace; }
//==--------------------
// Comment management
//==--------------------
void AppendToComment(const wxString& str) { m_comment << str; }
void SetCommentEndLine(int commentEndLine) { this->m_commentEndLine = commentEndLine; }
void SetCommentStartLine(int commentStartLine) { this->m_commentStartLine = commentStartLine; }
int GetCommentEndLine() const { return m_commentEndLine; }
int GetCommentStartLine() const { return m_commentStartLine; }
const wxString& GetComment() const { return m_comment; }
bool HasComment() const { return !m_comment.IsEmpty(); }
/**
* @brief clear all info collected for the last comment
*/
void ClearComment()
{
m_comment.Clear();
m_commentStartLine = wxNOT_FOUND;
m_commentEndLine = wxNOT_FOUND;
}
};
typedef void* Scanner_t;
/**
* @brief create a new Lexer for a buffer
*/
WXDLLIMPEXP_CL Scanner_t LexerNew(const wxString& buffer, size_t options = kLexerOpt_None);
/**
* @brief create a scanner for a given file name
*/
WXDLLIMPEXP_CL Scanner_t LexerNew(const wxFileName& filename, size_t options);
/**
* @brief destroy the current lexer and perform cleanup
*/
WXDLLIMPEXP_CL void LexerDestroy(Scanner_t* scanner);
/**
* @brief return the next token, its type, line number and columns
*/
WXDLLIMPEXP_CL bool LexerNext(Scanner_t scanner, CxxLexerToken& token);
/**
* @brief unget the last token
*/
WXDLLIMPEXP_CL void LexerUnget(Scanner_t scanner);
/**
* @brief return the current lexer token
*/
WXDLLIMPEXP_CL wxString LexerCurrentToken(Scanner_t scanner);
/**
* @brief return the associated data with this scanner
*/
WXDLLIMPEXP_CL CppLexerUserData* LexerGetUserData(Scanner_t scanner);
#endif
|