-
Notifications
You must be signed in to change notification settings - Fork 3
/
fix8log.h
154 lines (139 loc) · 6.01 KB
/
fix8log.h
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
//-------------------------------------------------------------------------------------------------
/*
Fix8logviewer is released under the GNU LESSER GENERAL PUBLIC LICENSE Version 3.
Fix8logviewer Open Source FIX Log Viewer.
Copyright (C) 2010-14 David N Boosalis [email protected], David L. Dight <[email protected]>
Fix8logviewer is free software: you can redistribute it and / or modify it under the terms of the
GNU Lesser General Public License as published by the Free Software Foundation, either
version 3 of the License, or (at your option) any later version.
Fix8logviewer 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.
You should have received a copy of the GNU Lesser General Public License along with Fix8.
If not, see <http://www.gnu.org/licenses/>.
BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO
THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE
COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO
THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT
HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED
ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR
THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH
HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*/
//-------------------------------------------------------------------------------------------------
#ifndef FIX8LOG_H
#define FIX8LOG_H
#include <QFutureWatcher>
#include <QObject>
#include <QtConcurrent/QtConcurrent>
#include <QMap>
#include <QString>
#include "fix8sharedlib.h"
#include "globals.h"
#include "mainwindow.h"
#include "messagefield.h"
#include "searchfunction.h"
#include "tableschema.h"
#include <qtsingleapplication.h>
#include <fix8/f8includes.hpp>
#include <fix8/field.hpp>
#include <fix8/message.hpp>
#include <fix8/f8types.hpp>
#include "fix8/traits.hpp"
class QStandardItemModel;
class QQuickView;
class Database;
class SchemaEditorDialog;
class FutureReadData;
class FixMimeData;
class NewWindowWizard;
class SearchDialog;
class WorkSheetModel;
FutureReadData * readLogFileInThread(const QString &fileName,QString &errorStr);
class Fix8Log : public QObject
{
Q_OBJECT
public:
explicit Fix8Log(QtSingleApplication *);
bool init();
bool init(QString fileNameToLoad);
void readFileInAnotherThread(const QString &fileName,QString &errorStr);
void readSettings();
void writeSettings();
public slots:
void aboutSlot();
void autoSaveOnSlot(bool);
void cancelSessionRestoreSlot();
void createNewWindowSlot(MainWindow *mw=0);
void copyWindowSlot(MainWindow *mw);
void deleteMainWindowSlot(MainWindow *mw);
void displayConsoleMessage(GUI::ConsoleMessage);
void displayConsoleMessage(QString, GUI::ConsoleMessage::ConsoleMessageType = GUI::ConsoleMessage::InfoMsg);
void editSchemaSlot(MainWindow *);
void exitAppSlot();
void finishedReadingDataFileSlot();
void lastWindowClosedSlot();
void modelDroppedSlot(FixMimeData *);
void newSchemaCreatedSlot(TableSchema *);
void newMainWindowWizardSlot();
void setTimeFormatSlot(GUI::Globals::TimeFormat);
void schemaDeletedSlot(int schemaID);
void schemaEditorFinishedSlot(int);
void schemaModifiedSlot(TableSchema *,bool nameAndOrDescriptionOnly);
void searchDialogAcceptedSlot();
void showSearchDialogSlot();
void showSearchDialogAddModeSlot(QString);
void showFilterDialogAddModeSlot(QString);
void filterDialogAcceptedSlot();
void showFilterDialogSlot();
void tableSchemaSelectedSlot(TableSchema *);
void toolButtonStyleModfiedSlot(Qt::ToolButtonStyle);
void updatedSearchFunctionsSlot(SearchFunctionList *sfl);
void updatedFilterFunctionsSlot(SearchFunctionList *sfl);
void wakeupSlot(const QString&);
protected:
// WorkSheetModel *readLogFile(const QString &fileName,QString &errorStr);
void saveSession();
void wireSignalAndSlots(MainWindow *mw);
QList <MainWindow *> mainWindows;
bool firstTimeToUse;
Database *database;
bool autoSaveOn;
QMap <QString, QStandardItemModel *> fileNameModelMap;
bool cancelSessionRestore;
SchemaEditorDialog *schemaEditorDialog;
TableSchemaList *tableSchemaList;
TableSchema *defaultTableSchema;
TableSchema *worldTableSchema;
MessageFieldList *messageFieldList;
FieldTraitVector fieldTraitV;
QList<QPair<QString ,FieldUse *>> fieldUsePairList;
QMap<QString, QBaseEntry *> baseMap;
QMultiMap <QString,FieldTrait *> fieldsInUseMap;
FieldUseList fieldUseList;
QStringList defaultHeaderStrs;
QBaseEntryList defaultHeaderItems;
QtSingleApplication *applicationInstance;
signals:
void notifyTimeFormatChanged(GUI::Globals::TimeFormat);
private:
bool copySampleFilesToUser();
bool createSharedLib(QString &fix8sharedlib,Fix8SharedLib **fixlib,
TableSchema *defaultTableSchema);
void initDatabase();
SearchDialog *searchDialog;
SearchDialog *filterDialog;
SearchFunctionList *searchFunctionList;
SearchFunctionList *filterFunctionList;
NewWindowWizard *newWindowWizard;
Fix8SharedLibList fix8ShareLibList;
QFile *dbFile;
QWidget *hiddenParent;
bool sampleFilesAvailable;
};
#endif // FIX8LOG_H