summaryrefslogtreecommitdiff
path: root/ui/qt/syntax_line_edit.cpp
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-01-18 02:22:19 -0800
committerGuy Harris <guy@alum.mit.edu>2015-01-18 10:22:59 +0000
commitcfcbb286712ae392689e7cd1a640b57b611dd277 (patch)
treec41ab4705bb0b790da02bc8b29768b5879543474 /ui/qt/syntax_line_edit.cpp
parentc60fb3038e4a449c5488a32574d838a6599cb33f (diff)
downloadwireshark-cfcbb286712ae392689e7cd1a640b57b611dd277.tar.gz
Clean up ftype-conversion and dfilter error message string handling.
Have dfilter_compile() take an additional gchar ** argument, pointing to a gchar * item that, on error, gets set to point to a g_malloc()ed error string. That removes one bit of global state from the display filter parser, and doesn't impose a fixed limit on the error message strings. Have fvalue_from_string() and fvalue_from_unparsed() take a gchar ** argument, pointer to a gchar * item, rather than an error-reporting function, and set the gchar * item to point to a g_malloc()ed error string on an error. Allow either gchar ** argument to be null; if the argument is null, no error message is allocated or provided. Change-Id: Ibd36b8aaa9bf4234aa6efa1e7fb95f7037493b4c Reviewed-on: https://code.wireshark.org/review/6608 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/qt/syntax_line_edit.cpp')
-rw-r--r--ui/qt/syntax_line_edit.cpp18
1 files changed, 12 insertions, 6 deletions
diff --git a/ui/qt/syntax_line_edit.cpp b/ui/qt/syntax_line_edit.cpp
index f1edfdbca6..483bdcb7ce 100644
--- a/ui/qt/syntax_line_edit.cpp
+++ b/ui/qt/syntax_line_edit.cpp
@@ -66,6 +66,10 @@ void SyntaxLineEdit::setSyntaxState(SyntaxState state) {
setStyleSheet(style_sheet_);
}
+QString SyntaxLineEdit::syntaxErrorMessage() {
+ return syntax_error_message_;
+}
+
QString SyntaxLineEdit::styleSheet() const {
return style_sheet_;
}
@@ -89,21 +93,23 @@ void SyntaxLineEdit::checkDisplayFilter(QString filter)
deprecated_token_.clear();
dfilter_t *dfp = NULL;
- bool valid = dfilter_compile(filter.toUtf8().constData(), &dfp);
-
- if (valid) {
- setSyntaxState(SyntaxLineEdit::Valid);
- } else {
+ gchar *err_msg;
+ if (dfilter_compile(filter.toUtf8().constData(), &dfp, &err_msg)) {
GPtrArray *depr = NULL;
if (dfp) {
depr = dfilter_deprecated_tokens(dfp);
}
if (depr) {
+ // You keep using that word. I do not think it means what you think it means.
setSyntaxState(SyntaxLineEdit::Deprecated);
deprecated_token_ = (const char *) g_ptr_array_index(depr, 0);
} else {
- setSyntaxState(SyntaxLineEdit::Invalid);
+ setSyntaxState(SyntaxLineEdit::Valid);
}
+ } else {
+ setSyntaxState(SyntaxLineEdit::Invalid);
+ syntax_error_message_ = QString::fromUtf8(err_msg);
+ g_free(err_msg);
}
dfilter_free(dfp);
}