File: MatrixVisualizer.cpp

package info (click to toggle)
vite 1.2%2Bsvn%2Bgit4.c6c0ce7-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,544 kB
  • sloc: cpp: 32,343; makefile: 461; sh: 144; ansic: 67
file content (265 lines) | stat: -rw-r--r-- 7,027 bytes parent folder | download | duplicates (2)
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
#include "MatrixVisualizer.hpp"

#include "Configuration.hpp"
#include "common/Session.hpp"
#include <QFileDialog>

#define SESSION_FILENAME( fname ) QString::fromStdString( "plugins/mv/files/" + fname )

Matrix_visualizer*  Matrix_visualizer::s_plugin = nullptr;
SymbolParser        Matrix_visualizer::s_symbol_parser;
OrderParser         Matrix_visualizer::s_order_parser;
ValuesParser        Matrix_visualizer::s_values_parser;
Matrix_window*      Matrix_visualizer::s_matrix_window = nullptr;
symbol_matrix_t*    Matrix_visualizer::s_matrix = nullptr;

// Functions to initialize the plugin in ViTE
Plugin *create() { return Matrix_visualizer::get_instance(); }

Matrix_visualizer* Matrix_visualizer::get_instance()
{
    if (NULL == s_plugin)
    {
        s_plugin = new Matrix_visualizer();
    }

    return s_plugin;
}

void
Matrix_visualizer::set_line_edit_defaults( QLineEdit *le, std::string name, std::string def_name )
{
    Session &s = Session::getSession();
    QString lineedit_fname;
    QString session_fname;

    session_fname = SESSION_FILENAME( name );
    if (s.contains( session_fname ) ) {
        lineedit_fname = s.value( session_fname ).toString();
    }
    else {
        lineedit_fname = QString::fromStdString(def_name);
    }
    le->setText( lineedit_fname );
}

// Plugin implementation itself
Matrix_visualizer::Matrix_visualizer() {
    setupUi(this);
    s_plugin = this;

    set_line_edit_defaults( this->line_edit_symbol, "symbol", "symbol.sps" );
    set_line_edit_defaults( this->line_edit_order,  "order",  "order.ord"  );
    set_line_edit_defaults( this->line_edit_values, "values", "values.txt" );
}

Matrix_visualizer::~Matrix_visualizer(){
}

void Matrix_visualizer::init(){

}

void Matrix_visualizer::clear(){

}

void Matrix_visualizer::set_arguments(std::map<std::string /*argname*/, QVariant* /*argValue*/>){

}

std::string Matrix_visualizer::get_name(){
    return "Matrix visualizer";
}

int Matrix_visualizer::update_matrix( QString filepath )
{
    Session &s = Session::getSession();

    symbol_matrix_t *new_matrix;

    // Check if there is a symbol file
    if (filepath.size() == 0)
    {
        Helper::log(LogStatus::FATAL, "Empty filepath for symbol matrix file...");
        return -1;
    }

    // Parse the symbol file if any
    Helper::log(LogStatus::MESSAGE, "Parsing symbol file...");
    new_matrix = s_symbol_parser.parse( filepath.toStdString(), nullptr );

    if (new_matrix == nullptr)
    {
        Helper::log(LogStatus::FATAL, "Parsed matrix is empty");
        return -1;
    }
    s.setValue( "plugins/mv/files/symbol", filepath );

    if ( s_matrix != nullptr ) {
        symbol_matrix_deinit( s_matrix );
    }
    s_matrix = new_matrix;

    Helper::log(LogStatus::MESSAGE, "Successfully read symbol file");
    symbol_matrix_print_stats( s_matrix );

    return 0;
}

int Matrix_visualizer::update_order( QString filepath )
{
    void *rc;

    if ( s_matrix == nullptr )
    {
        Helper::log(LogStatus::FATAL, "No symbol matrix has been loaded");
        return -1;
    }

    // Check if there is a symbol file
    if (filepath.size() == 0)
    {
        Helper::log(LogStatus::FATAL, "Empty filepath for order file...");
        return -1;
    }

    // Parse the symbol file if any
    Helper::log(LogStatus::MESSAGE, "Parsing order file...");
    rc = s_order_parser.parse( filepath.toStdString(), s_matrix );

    if ( rc != nullptr )
    {
        Helper::log(LogStatus::FATAL, "Error parsing order file");
        return -1;
    }

    Helper::log(LogStatus::MESSAGE, "Successfully read order file");
    //symbol_matrix_print_stats(matrix);
    return 0;
}

int Matrix_visualizer::update_values( QString filepath )
{
    void *rc;

    if ( s_matrix == nullptr )
    {
        Helper::log(LogStatus::FATAL, "No symbol matrix has been loaded");
        return -1;
    }

    // Check if there is a symbol file
    if (filepath.size() == 0)
    {
        Helper::log(LogStatus::FATAL, "Empty filepath for values file...");
        return -1;
    }

    // Parse the symbol file if any
    Helper::log(LogStatus::MESSAGE, "Parsing values file...");
    rc = s_values_parser.parse( filepath.toStdString(), s_matrix );

    if ( rc != nullptr )
    {
        Helper::log(LogStatus::FATAL, "Error parsing values file");
        return -1;
    }

    Helper::log(LogStatus::MESSAGE, "Successfully read values file");
    //symbol_matrix_print_stats(matrix);
    return 0;
}

void Matrix_visualizer::execute(){
    QString symbol_filepath = this->line_edit_symbol->text();
    QString order_filepath  = this->line_edit_order->text();
    QString values_filepath = this->line_edit_values->text();

    update_matrix( this->line_edit_symbol->text() );
    update_order(  this->line_edit_order->text() );
    update_values( this->line_edit_values->text() );

    // Open window for opengl drawing
    if ( s_matrix != nullptr )
    {
        s_matrix_window = new Matrix_window(s_matrix);
        s_matrix_window->show();
    }
}

void Matrix_visualizer::log(LogStatus status, const char* format, va_list ap)
{
    char message[256] = {0};

    vsnprintf(message, 256, format, ap);

    QString previous_text = this->text_edit_logs->toPlainText();

    switch(status)
    {
    case WARNING:
        previous_text += "Warning: ";
        break;
    case FATAL:
        previous_text += "FATAL: ";
        break;
    default:
        break;
    }

    previous_text += message;
    previous_text += '\n';

    this->text_edit_logs->clear();
    this->text_edit_logs->setText(previous_text);
}

void Matrix_visualizer::set_infos(const char* format, va_list ap)
{
    char message[2048] = {0};

    vsnprintf(message, 2048, format, ap);

    QString to_print = message;

    this->text_edit_infos->clear();
    this->text_edit_infos->setText(to_print);
}

/***********************
 * Buttons
 **********************/
void Matrix_visualizer::on_tool_button_symbol_clicked()
{
    QString symbol_filepath = QFileDialog::getOpenFileName( s_plugin, tr("Open file"),
                                                            s_plugin->line_edit_symbol->text() );

    s_plugin->line_edit_symbol->setText(symbol_filepath);
}

void Matrix_visualizer::on_tool_button_order_clicked()
{
    QString order_filepath = QFileDialog::getOpenFileName( s_plugin, tr("Open file"),
                                                            s_plugin->line_edit_order->text() );

    s_plugin->line_edit_order->setText(order_filepath);
}

void Matrix_visualizer::on_tool_button_values_clicked()
{
    QString values_filepath = QFileDialog::getOpenFileName( s_plugin, tr("Open file"),
                                                            s_plugin->line_edit_values->text() );

    s_plugin->line_edit_values->setText(values_filepath);
}

void Matrix_visualizer::on_tool_button_infos_clicked()
{
    s_plugin->text_edit_infos->setText("");
}

void Matrix_visualizer::on_tool_button_logs_clicked()
{
    s_plugin->text_edit_logs->setText("");
}