Lucene++ - a full-featured, c++ search engine
API Documentation


Loading...
Searching...
No Matches
QueryParseError.h
Go to the documentation of this file.
1
2// Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3// Distributable under the terms of either the Apache License (Version 2.0)
4// or the GNU Lesser General Public License.
6
7#ifndef QUERYPARSEERROR_H
8#define QUERYPARSEERROR_H
9
10#include "LuceneObject.h"
11
12namespace Lucene {
13
16public:
19
20public:
29 static String lexicalError(bool EOFSeen, int32_t lexState, int32_t errorLine, int32_t errorColumn,
30 const String& errorAfter, wchar_t curChar);
31
41 static String parseError(const QueryParserTokenPtr& currentToken, Collection< Collection<int32_t> > expectedTokenSequences,
42 Collection<String> tokenImage);
43
44
45protected:
48 static String addEscapes(const String& str);
49};
50
51}
52
53#endif
#define LUCENE_CLASS(Name)
Definition LuceneObject.h:24
Utility template class to handle collections that can be safely copied and shared.
Definition Collection.h:17
Base class for all Lucene classes.
Definition LuceneObject.h:31
Utility class to handle query parse errors.
Definition QueryParseError.h:15
static String lexicalError(bool EOFSeen, int32_t lexState, int32_t errorLine, int32_t errorColumn, const String &errorAfter, wchar_t curChar)
Returns a detailed message for the Error when it is thrown by the token manager to indicate a lexical...
static String parseError(const QueryParserTokenPtr &currentToken, Collection< Collection< int32_t > > expectedTokenSequences, Collection< String > tokenImage)
Generate a parse error message and returns it.
static String addEscapes(const String &str)
Replaces unprintable characters by their escaped (or unicode escaped) equivalents in the given string...
Definition AbstractAllTermDocs.h:12
boost::shared_ptr< QueryParserToken > QueryParserTokenPtr
Definition LuceneTypes.h:273

clucene.sourceforge.net