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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/* filter_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <config.h>
#include <errno.h>
#include <glib.h>
#include <filter_files.h>
#include <wsutil/filesystem.h>
#include "filter_dialog.h"
#include <ui_filter_dialog.h>
#include <QMessageBox>
#include <QThread>
#include "capture_filter_edit.h"
//#include "capture_filter_syntax_worker.h"
#include "display_filter_edit.h"
#include "wireshark_application.h"
// To do:
// - Add filter expression button. The right thing to do might be to add an
// action inside DisplayFilterEdit.
// - Show syntax state of each filter? A partial implementation is in place
// for capture filters.
enum {
name_col_,
filter_col_
};
FilterDialog::FilterDialog(QWidget *parent, FilterType filter_type, const QString new_filter) :
GeometryStateDialog(parent),
ui(new Ui::FilterDialog),
filter_type_(filter_type),
// syntax_worker_(NULL),
filter_tree_delegate_(new FilterTreeDelegate(this, filter_type)),
new_filter_(new_filter)
{
ui->setupUi(this);
if (parent) loadGeometry(parent->width() * 2 / 3, parent->height() * 2 / 3);
setWindowIcon(wsApp->normalIcon());
ui->filterTreeWidget->setDragEnabled(true);
ui->filterTreeWidget->viewport()->setAcceptDrops(true);
ui->filterTreeWidget->setDropIndicatorShown(true);
ui->filterTreeWidget->setDragDropMode(QAbstractItemView::InternalMove);
if (filter_type == CaptureFilter) {
setWindowTitle(wsApp->windowTitleString(tr("Capture Filters")));
// QThread *syntax_thread = new QThread;
// syntax_worker_ = new CaptureFilterSyntaxWorker;
// syntax_worker_->moveToThread(syntax_thread);
// connect(syntax_thread, SIGNAL(started()), syntax_worker_, SLOT(start()));
// // connect(syntax_thread, SIGNAL(started()), this, SLOT(checkFilter()));
// connect(syntax_worker_, SIGNAL(syntaxResult(QString, bool, QString)),
// this, SLOT(setFilterSyntaxState(QString, bool, QString)));
// connect(syntax_thread, SIGNAL(finished()), syntax_worker_, SLOT(deleteLater()));
// syntax_thread->start();
} else {
setWindowTitle(wsApp->windowTitleString(tr("Display Filters")));
}
ui->filterTreeWidget->setItemDelegateForColumn(filter_col_, filter_tree_delegate_);
}
FilterDialog::~FilterDialog()
{
delete ui;
}
void FilterDialog::showEvent(QShowEvent *event)
{
ui->filterTreeWidget->clear();
GList *filter_list;
if (filter_type_ == CaptureFilter) {
filter_list = get_filter_list_first(CFILTER_LIST);
} else {
filter_list = get_filter_list_first(DFILTER_LIST);
}
for (GList *fl_item = filter_list; fl_item; fl_item = g_list_next(fl_item)) {
if (!fl_item->data) continue;
filter_def *fl_data = (filter_def *) fl_item->data;
if (!fl_data->name || !fl_data->strval) continue;
addFilter(fl_data->name, fl_data->strval);
}
if (!new_filter_.isEmpty()) {
addFilter(tr("New filter"), new_filter_, true);
new_filter_.clear();
}
ui->filterTreeWidget->resizeColumnToContents(name_col_);
ui->filterTreeWidget->resizeColumnToContents(filter_col_);
QDialog::showEvent(event);
}
void FilterDialog::addFilter(QString name, QString filter, bool start_editing)
{
QTreeWidgetItem *ti = new QTreeWidgetItem(ui->filterTreeWidget);
ti->setFlags(ti->flags() | Qt::ItemIsEditable);
ti->setFlags(ti->flags() & ~(Qt::ItemIsDropEnabled));
ti->setText(name_col_, name);
ti->setText(filter_col_, filter);
if (start_editing) {
ui->filterTreeWidget->setCurrentItem(ti);
updateWidgets();
ui->filterTreeWidget->editItem(ti, filter_col_);
}
}
void FilterDialog::updateWidgets()
{
int num_selected = ui->filterTreeWidget->selectedItems().count();
ui->copyToolButton->setEnabled(num_selected == 1);
ui->deleteToolButton->setEnabled(num_selected > 0);
}
//void FilterDialog::setFilterSyntaxState(QString filter, bool valid, QString err_msg)
//{
//}
void FilterDialog::on_filterTreeWidget_itemSelectionChanged()
{
updateWidgets();
}
void FilterDialog::on_newToolButton_clicked()
{
QString name;
QString filter;
if (filter_type_ == CaptureFilter) {
//: This text is automatically filled in when a new filter is created
name = tr("New capture filter");
filter = "ip host host.example.com";
} else {
//: This text is automatically filled in when a new filter is created
name = tr("New display filter");
filter = "ip.addr == host.example.com";
}
addFilter(name, filter, true);
}
void FilterDialog::on_deleteToolButton_clicked()
{
QList<QTreeWidgetItem*> selected = ui->filterTreeWidget->selectedItems();
foreach (QTreeWidgetItem *ti, selected) {
delete ti;
}
}
void FilterDialog::on_copyToolButton_clicked()
{
if (!ui->filterTreeWidget->currentItem()) return;
QTreeWidgetItem *ti = ui->filterTreeWidget->currentItem();
addFilter(ti->text(name_col_), ti->text(filter_col_), true);
}
void FilterDialog::on_buttonBox_accepted()
{
filter_list_type_t fl_type = filter_type_ == CaptureFilter ? CFILTER_LIST : DFILTER_LIST;
while (GList *fl_item = get_filter_list_first(fl_type)) {
remove_from_filter_list(fl_type, fl_item);
}
QTreeWidgetItemIterator it(ui->filterTreeWidget);
while (*it) {
add_to_filter_list(fl_type, (*it)->text(name_col_).toUtf8().constData(),
(*it)->text(filter_col_).toUtf8().constData());
++it;
}
char *pf_dir_path;
char *f_path;
int f_save_errno;
/* Create the directory that holds personal configuration files,
if necessary. */
if (create_persconffile_dir(&pf_dir_path) == -1) {
QMessageBox::warning(this, tr("Unable to create profile directory."),
tr("Unable to create directory\n\"%1\"\nfor filter files: %2.")
.arg(pf_dir_path)
.arg(g_strerror(errno)),
QMessageBox::Ok);
g_free(pf_dir_path);
return;
}
save_filter_list(fl_type, &f_path, &f_save_errno);
if (f_path != NULL) {
/* We had an error saving the filter. */
QString warning_title;
QString warning_msg;
if (fl_type == CFILTER_LIST) {
warning_title = tr("Unable to save capture filter settings.");
warning_msg = tr("Could not save to your capture filter file\n\"%1\": %2.")
.arg(f_path).arg(g_strerror(f_save_errno));
} else {
warning_title = tr("Unable to save display filter settings.");
warning_msg = tr("Could not save to your display filter file\n\"%1\": %2.")
.arg(f_path).arg(g_strerror(f_save_errno));
}
QMessageBox::warning(this, warning_title, warning_msg, QMessageBox::Ok);
g_free(f_path);
}
if (filter_type_ == CaptureFilter) {
wsApp->emitAppSignal(WiresharkApplication::CaptureFilterListChanged);
} else {
wsApp->emitAppSignal(WiresharkApplication::DisplayFilterListChanged);
}
}
void FilterDialog::on_buttonBox_helpRequested()
{
if (filter_type_ == CaptureFilter) {
wsApp->helpTopicAction(HELP_CAPTURE_FILTERS_DIALOG);
} else {
wsApp->helpTopicAction(HELP_DISPLAY_FILTERS_DIALOG);
}
}
//
// FilterTreeDelegate
// Delegate for editing capture and display filters.
//
QWidget *FilterTreeDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
if (index.column() != filter_col_) {
return QStyledItemDelegate::createEditor(parent, option, index);
}
QWidget *w;
if (filter_type_ == FilterDialog::CaptureFilter) {
w = new CaptureFilterEdit(parent, true);
} else {
w = new DisplayFilterEdit(parent, DisplayFilterToEnter);
}
return w;
}
/*
* Editor modelines
*
* Local Variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* ex: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/
|