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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// Copyright : (C) 2015 Eran Ifrah
// File name : PhpLexerAPI.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 PhpLexerAPI_H__
#define PhpLexerAPI_H__
#include <string>
#include <vector>
#include <wx/filename.h>
#include "codelite_exports.h"
#include "PHPScannerTokens.h"
enum ePhpLexerOptions {
kPhpLexerOpt_None = 0x00000000,
kPhpLexerOpt_ReturnComments = 0x00000001,
kPhpLexerOpt_ReturnWhitespace = 0x00000002,
kPhpLexerOpt_ReturnAllNonPhp = 0x00000004,
};
struct WXDLLIMPEXP_CL phpLexerToken {
private:
std::string text;
wxString wtext;
public:
int type;
int lineNumber;
int endLineNumber; // Usually, this is the same as lineNumber. Unless a multiple line token is found (heredoc,
// c-style comment etc)
public:
phpLexerToken()
: type(-1)
, lineNumber(-1)
, endLineNumber(-1)
{
}
/**
* @brief clear the token, i.e. IsNull() return true
*/
void Clear()
{
type = -1;
lineNumber = -1;
endLineNumber = -1;
text.clear();
wtext.clear();
}
void ClearText()
{
text.clear();
wtext.clear();
}
void SetText(const std::string& t)
{
text = t;
wtext = wxString(text.c_str(), wxConvUTF8);
}
const wxString& Text() const { return wtext; }
bool IsNull() const { return type == -1; }
/**
* @brief is the current token a comment? (c++ or c comment)
*/
bool IsAnyComment() const { return type == kPHP_T_C_COMMENT || type == kPHP_T_CXX_COMMENT; }
/**
* @brief is the current token a PHP Doc comment?
*/
bool IsDocComment() const { return type == kPHP_T_C_COMMENT; }
typedef std::vector<phpLexerToken> Vet_t;
};
/**
* @class phpLexerUserData
*/
struct WXDLLIMPEXP_CL phpLexerUserData {
private:
size_t m_flags;
std::string m_comment;
std::string m_rawStringLabel;
std::string m_string;
int m_commentStartLine;
int m_commentEndLine;
bool m_insidePhp;
FILE* m_fp;
public:
void Clear()
{
if(m_fp) {
::fclose(m_fp);
}
m_fp = NULL;
m_insidePhp = false;
ClearComment();
m_rawStringLabel.clear();
m_string.clear();
}
phpLexerUserData(size_t options)
: m_flags(options)
, m_commentStartLine(wxNOT_FOUND)
, m_commentEndLine(wxNOT_FOUND)
, m_insidePhp(false)
, m_fp(NULL)
{
}
~phpLexerUserData() { Clear(); }
void SetFp(FILE* fp) { this->m_fp = fp; }
/**
* @brief do we collect comments?
*/
bool IsCollectingComments() const { return m_flags & kPhpLexerOpt_ReturnComments; }
bool IsCollectingWhitespace() const { return m_flags & kPhpLexerOpt_ReturnWhitespace; }
bool IsCollectingAllNonPhp() const { return m_flags & kPhpLexerOpt_ReturnAllNonPhp; }
void SetCollectingWhitespace(bool b)
{
if(b) {
m_flags |= kPhpLexerOpt_ReturnWhitespace;
} else {
m_flags &= ~kPhpLexerOpt_ReturnWhitespace;
}
}
void SetInsidePhp(bool insidePhp) { this->m_insidePhp = insidePhp; }
bool IsInsidePhp() const { return m_insidePhp; }
void SetString(const std::string& string) { this->m_string = string; }
std::string& GetString() { return m_string; }
void SetRawStringLabel(const std::string& rawStringLabel) { this->m_rawStringLabel = rawStringLabel; }
const std::string& GetRawStringLabel() const { return m_rawStringLabel; }
//==--------------------
// Comment management
//==--------------------
void AppendToComment(const std::string& str) { m_comment.append(str); }
void AppendToComment(char c) { m_comment.append(std::string(1, c)); }
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 std::string& GetComment() const { return m_comment; }
bool HasComment() const { return !m_comment.empty(); }
/**
* @brief clear all info collected for the last comment
*/
void ClearComment()
{
m_comment.clear();
m_commentStartLine = wxNOT_FOUND;
m_commentEndLine = wxNOT_FOUND;
}
};
typedef void* PHPScanner_t;
/**
* @brief create a new Lexer for a given file name
*/
WXDLLIMPEXP_CL PHPScanner_t phpLexerNew(const wxFileName& filename, size_t options = kPhpLexerOpt_None);
/**
* @brief return the user data associated with this scanner
*/
WXDLLIMPEXP_CL phpLexerUserData* phpLexerGetUserData(PHPScanner_t scanner);
/**
* @brief create a new Lexer for a given file content
*/
WXDLLIMPEXP_CL PHPScanner_t phpLexerNew(const wxString& content, size_t options = kPhpLexerOpt_None);
/**
* @brief destroy the current lexer and perform cleanup
*/
WXDLLIMPEXP_CL void phpLexerDestroy(PHPScanner_t* scanner);
/**
* @brief return the next token, its type, line number and columns
*/
WXDLLIMPEXP_CL bool phpLexerNext(PHPScanner_t scanner, phpLexerToken& token);
/**
* @brief return true if we are currently inside a PHP block
*/
WXDLLIMPEXP_CL bool phpLexerIsPHPCode(PHPScanner_t scanner);
/**
* @brief peek at the next token
*/
WXDLLIMPEXP_CL void phpLexerUnget(PHPScanner_t scanner);
/**
* @class PHPScannerLocker
* @brief a wrapper around the C API for PHPScanner
*/
struct WXDLLIMPEXP_CL PHPScannerLocker {
PHPScanner_t scanner;
PHPScannerLocker(const wxString& content, size_t options = kPhpLexerOpt_None)
{
scanner = ::phpLexerNew(content, options);
}
PHPScannerLocker(const wxFileName& filename, size_t options = kPhpLexerOpt_None)
{
scanner = ::phpLexerNew(filename, options);
}
PHPScannerLocker(PHPScanner_t phpScanner)
: scanner(phpScanner)
{
}
~PHPScannerLocker()
{
if(scanner) {
::phpLexerDestroy(&scanner);
}
}
};
#endif
|