コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
google.appengine.api.search.expression_parser のソースコード
#!/usr/bin/env python
#
# Copyright 2007 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""Wrapper for ExpressionParser."""
from google.appengine._internal import antlr3
from google.appengine.api.search import ExpressionLexer
from google.appengine.api.search import ExpressionParser
from google.appengine.api.search import unicode_util
[docs]class ExpressionException(Exception):
"""An error occurred while parsing the expression input string."""
[docs]class ExpressionLexerWithErrors(ExpressionLexer.ExpressionLexer):
"""An overridden Lexer that raises exceptions."""
[docs] def emitErrorMessage(self, msg):
"""Raise an exception if the input fails to parse correctly.
Overriding the default, which normally just prints a message to
stderr.
Arguments:
msg: the error message
Raises:
ExpressionException: always.
"""
raise ExpressionException(msg)
[docs]class ExpressionParserWithErrors(ExpressionParser.ExpressionParser):
"""An overridden Parser that raises exceptions."""
[docs] def emitErrorMessage(self, msg):
"""Raise an exception if the input fails to parse correctly.
Overriding the default, which normally just prints a message to
stderr.
Arguments:
msg: the error message
Raises:
ExpressionException: always.
"""
raise ExpressionException(msg)
[docs]def CreateParser(expression):
"""Creates a Expression Parser."""
input_string = antlr3.ANTLRStringStream(unicode_util.LimitUnicode(expression))
lexer = ExpressionLexerWithErrors(input_string)
tokens = antlr3.CommonTokenStream(lexer)
parser = ExpressionParserWithErrors(tokens)
return parser
[docs]def Parse(expression):
"""Parses an expression and returns the ANTLR tree."""
parser = CreateParser(expression)
try:
return parser.expression()
except Exception, e:
raise ExpressionException(e.message)
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2022-10-23 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2022-10-23 UTC。"],[],[]]