mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
164 lines
5 KiB
C++
164 lines
5 KiB
C++
inline bool iscib(int c) {
|
|
return c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c == '_' || c == '$';
|
|
}
|
|
|
|
inline bool iscid(int c) {
|
|
return iscib(c) || c >= '0' && c <= '9';
|
|
}
|
|
|
|
class CParser {
|
|
protected:
|
|
const char *term;
|
|
const char *wspc;
|
|
const char *lineptr;
|
|
int line;
|
|
String fn;
|
|
bool skipspaces;
|
|
bool skipcomments;
|
|
bool nestcomments;
|
|
bool uescape;
|
|
|
|
bool Spaces0();
|
|
const char *IsId0(const char *s) const;
|
|
bool Id0(const char *id);
|
|
void DoSpaces() { if(skipspaces) Spaces(); }
|
|
dword ReadHex();
|
|
bool ReadHex(dword& hex, int n);
|
|
|
|
public:
|
|
struct Error : public Exc { Error(const char *s) : Exc(s) {} };
|
|
|
|
void ThrowError(const char *s);
|
|
void ThrowError() { ThrowError(""); }
|
|
|
|
bool Spaces() { wspc = term; return ((byte)*term <= ' ' || *term == '/') && Spaces0(); }
|
|
char PeekChar() const { return *term; }
|
|
char GetChar();
|
|
|
|
bool IsChar(char c) const { return *term == c; }
|
|
bool IsChar2(char c1, char c2) const { return term[0] == c1 && term[1] == c2; }
|
|
bool IsChar3(char c1, char c2, char c3) const { return term[0] == c1 && term[1] == c2 && term[2] == c3; }
|
|
bool Char(char c);
|
|
bool Char2(char c1, char c2);
|
|
bool Char3(char c1, char c2, char c3);
|
|
void PassChar(char c);
|
|
void PassChar2(char c1, char c2);
|
|
void PassChar3(char c1, char c2, char c3);
|
|
bool Id(const char *s) { return term[0] == s[0] && (s[1] == 0 || term[1] == s[1]) && Id0(s); }
|
|
void PassId(const char *s);
|
|
bool IsId() const { return iscib(*term); }
|
|
bool IsId(const char *s) const { return term[0] == s[0] && (s[1] == 0 || term[1] == s[1]) && IsId0(s); }
|
|
String ReadId();
|
|
String ReadIdh();
|
|
String ReadIdt();
|
|
bool IsInt() const;
|
|
int Sgn();
|
|
int ReadInt();
|
|
int ReadInt(int min, int max);
|
|
int64 ReadInt64();
|
|
int64 ReadInt64(int64 min, int64 max);
|
|
bool IsNumber() const { return IsDigit(*term); }
|
|
bool IsNumber(int base) const;
|
|
uint32 ReadNumber(int base = 10);
|
|
uint64 ReadNumber64(int base = 10);
|
|
bool IsDouble() const { return IsInt(); }
|
|
bool IsDouble2() const;
|
|
double ReadDouble();
|
|
double ReadDoubleNoE();
|
|
bool IsString() const { return IsChar('\"'); };
|
|
String ReadOneString(bool chkend = true);
|
|
String ReadString(bool chkend = true);
|
|
String ReadOneString(int delim, bool chkend = true);
|
|
String ReadString(int delim, bool chkend = true);
|
|
|
|
void Skip();
|
|
void SkipTerm() { Skip(); }
|
|
void SkipLine();
|
|
|
|
struct Pos {
|
|
const char *ptr;
|
|
const char *wspc;
|
|
const char *lineptr;
|
|
int line;
|
|
String fn;
|
|
|
|
int GetColumn(int tabsize = 4) const;
|
|
|
|
Pos(const char *ptr = NULL, int line = 1, String fn = Null) : ptr(ptr), line(line), fn(fn) {}
|
|
};
|
|
|
|
const char *GetPtr() const { return (const char *)term; }
|
|
const char *GetSpacePtr() const { return (const char *)wspc; }
|
|
|
|
Pos GetPos() const;
|
|
void SetPos(const Pos& pos);
|
|
|
|
bool IsEof() const { return *term == '\0'; }
|
|
operator bool() const { return *term; }
|
|
|
|
int GetLine() const { return line; }
|
|
int GetColumn(int tabsize = 4) const;
|
|
String GetFileName() const { return fn; }
|
|
|
|
static String LineInfoComment(const String& filename, int line = 1, int column = 1);
|
|
String GetLineInfoComment(int tabsize = 4) const;
|
|
enum { LINEINFO_ESC = '\2' };
|
|
|
|
void Set(const char *ptr, const char *fn, int line = 1);
|
|
void Set(const char *ptr);
|
|
|
|
CParser& SkipSpaces(bool b = true) { skipspaces = b; return *this; }
|
|
CParser& NoSkipSpaces() { skipspaces = false; return *this; }
|
|
CParser& UnicodeEscape(bool b = true) { uescape = b; return *this; }
|
|
CParser& SkipComments(bool b = true);
|
|
CParser& NoSkipComments() { return SkipComments(false); }
|
|
CParser& NestComments(bool b = true);
|
|
CParser& NoNestComments() { return NestComments(false); }
|
|
|
|
CParser(const char *ptr);
|
|
CParser(const char *ptr, const char *fn, int line = 1);
|
|
CParser();
|
|
};
|
|
|
|
inline bool CParser::Char(char c)
|
|
{
|
|
if(IsChar(c)) {
|
|
term++;
|
|
DoSpaces();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
inline bool CParser::Char2(char c1, char c2)
|
|
{
|
|
if(IsChar2(c1, c2)) {
|
|
term += 2;
|
|
DoSpaces();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
inline bool CParser::Char3(char c1, char c2, char c3)
|
|
{
|
|
if(IsChar3(c1, c2, c3)) {
|
|
term += 3;
|
|
DoSpaces();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
enum {
|
|
ASCSTRING_SMART = 0x01,
|
|
ASCSTRING_OCTALHI = 0x02,
|
|
ASCSTRING_JSON = 0x04,
|
|
};
|
|
|
|
String AsCString(const char *s, const char *end, int linemax = INT_MAX, const char *linepfx = NULL,
|
|
dword flags = 0);
|
|
String AsCString(const char *s, int linemax = INT_MAX, const char *linepfx = NULL,
|
|
dword flags = 0);
|
|
String AsCString(const String& s, int linemax = INT_MAX, const char *linepfx = NULL,
|
|
dword flags = 0);
|