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
|
/*
Copyright (C) 2006 - 2019 Evan Teran
evan.teran@gmail.com
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, see <http://www.gnu.org/licenses/>.
*/
#include "ResultsModel.h"
#include "edb.h"
#include <algorithm>
namespace ProcessPropertiesPlugin {
/**
* @brief ResultsModel::ResultsModel
* @param parent
*/
ResultsModel::ResultsModel(QObject *parent)
: QAbstractItemModel(parent) {
}
/**
* @brief ResultsModel::headerData
* @param section
* @param orientation
* @param role
* @return
*/
QVariant ResultsModel::headerData(int section, Qt::Orientation orientation, int role) const {
if (role == Qt::DisplayRole && orientation == Qt::Horizontal) {
switch (section) {
case 0:
return tr("Address");
case 1:
return tr("Type");
case 2:
return tr("String");
}
}
return QVariant();
}
/**
* @brief ResultsModel::data
* @param index
* @param role
* @return
*/
QVariant ResultsModel::data(const QModelIndex &index, int role) const {
if (!index.isValid()) {
return QVariant();
}
const Result &result = results_[index.row()];
if (role == Qt::DisplayRole) {
switch (index.column()) {
case 0:
return edb::v1::format_pointer(result.address);
case 1:
switch (result.type) {
case Result::Ascii:
return tr("ASCII");
case Result::Utf8:
return tr("UTF8");
case Result::Utf16:
return tr("UTF16");
case Result::Utf32:
return tr("UTF32");
}
break;
case 2:
return result.string;
default:
return QVariant();
}
}
return QVariant();
}
/**
* @brief ResultsModel::addResult
* @param r
*/
void ResultsModel::addResult(const Result &r) {
beginInsertRows(QModelIndex(), rowCount(), rowCount());
results_.push_back(r);
endInsertRows();
}
/**
* @brief ResultsModel::index
* @param row
* @param column
* @param parent
* @return
*/
QModelIndex ResultsModel::index(int row, int column, const QModelIndex &parent) const {
Q_UNUSED(parent)
if (row >= results_.size()) {
return QModelIndex();
}
if (column >= 3) {
return QModelIndex();
}
if (row >= 0) {
return createIndex(row, column, const_cast<Result *>(&results_[row]));
} else {
return createIndex(row, column);
}
}
/**
* @brief ResultsModel::parent
* @param index
* @return
*/
QModelIndex ResultsModel::parent(const QModelIndex &index) const {
Q_UNUSED(index)
return QModelIndex();
}
/**
* @brief ResultsModel::rowCount
* @param parent
* @return
*/
int ResultsModel::rowCount(const QModelIndex &parent) const {
Q_UNUSED(parent)
return results_.size();
}
/**
* @brief ResultsModel::columnCount
* @param parent
* @return
*/
int ResultsModel::columnCount(const QModelIndex &parent) const {
Q_UNUSED(parent)
return 3;
}
/**
* @brief ResultsModel::sort
* @param column
* @param order
*/
void ResultsModel::sort(int column, Qt::SortOrder order) {
if (order == Qt::AscendingOrder) {
switch (column) {
case 0:
std::sort(results_.begin(), results_.end(), [](const Result &s1, const Result &s2) { return s1.address < s2.address; });
break;
case 1:
std::sort(results_.begin(), results_.end(), [](const Result &s1, const Result &s2) { return s1.type < s2.type; });
break;
case 2:
std::sort(results_.begin(), results_.end(), [](const Result &s1, const Result &s2) { return s1.string < s2.string; });
break;
}
} else {
switch (column) {
case 0:
std::sort(results_.begin(), results_.end(), [](const Result &s1, const Result &s2) { return s1.address > s2.address; });
break;
case 1:
std::sort(results_.begin(), results_.end(), [](const Result &s1, const Result &s2) { return s1.type > s2.type; });
break;
case 2:
std::sort(results_.begin(), results_.end(), [](const Result &s1, const Result &s2) { return s1.string < s2.string; });
break;
}
}
Q_EMIT dataChanged(createIndex(0, 0, nullptr), createIndex(-1, -1, nullptr));
}
}
|