Blame view

GUI/SW1/SRC/SW1_GUIApp.cpp 6.72 KB
886c558b   Steve Greedy   SACAMOS Public Re...
1
2
3
4
5
6
/////////////////////////////////////////////////////////////////////////////////
//
// This file is part of SACAMOS, cable models for EMI simulations in SPICE.
// It was developed by the University of Nottingham and the Netherlands Aerospace
// Centre (NLR) for ESA under contract number 4000112765/14/NL/HK.
//
7ba34678   Steve Greedy   Update Copyright ...
7
// Copyright (C) 2015 - 2018 University of Nottingham
886c558b   Steve Greedy   SACAMOS Public Re...
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
//
// SACAMOS 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 3 of the License, or (at your option) any later
// version.
//
// SACAMOS 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.
//
// A copy of the GNU General Public License version 3 can be found in the
// file GNU_GPL_v3 in the root or at <http://www.gnu.org/licenses/>.
//
// wxWidgets is currently licenced under the "wxWindows Library Licence".
// A copy of the wxWindows Library Licence, Version 3.1 can be found in the file
// wxWindows_Library_Licence_v3-1 in the root or at:
// <https://www.wxwidgets.org/about/licence/>
//
//
// The University of Nottingham can be contacted at: ggiemr@nottingham.ac.uk
//
// File Contents:
//
// NAME
//     SW1_GUIApp.cpp
//
f309591f   Steve Greedy   Update to SW1
35
// DESCRIPTIONbre
886c558b   Steve Greedy   SACAMOS Public Re...
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//     Main application GUI for SACAMOS
//
// AUTHOR(S)
//     Steve Greedy
//
/////////////////////////////////////////////////////////////////////////////////

#include "SW1_GUIApp.h"

//(*AppHeaders
#include "SW1_GUIMain.h"
#include <wx/image.h>
//*)

IMPLEMENT_APP(SW1_GUIApp);

bool SW1_GUIApp::OnInit()
{
f309591f   Steve Greedy   Update to SW1
54
55
56
57
58
59
60
61
62
63
64
65
66

    wxTextFile BuildFile;

    wxString systeminfo, buildtext, guiversion, cmdversion;

    wxDateTime DateToday = wxDateTime::Now();

    wxString   str = DateToday.Format(wxT("%d-%m-%y"), wxDateTime::Local );

    string Date = str.ToStdString();

    string updatemessage;

f309591f   Steve Greedy   Update to SW1
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
    Logger::instance().log(Date, Logger::kLogLevelHeader);
    Logger::instance().log("", Logger::kLogLevelHeader);
    Logger::instance().log("SACAMOS STARTED", Logger::kLogLevelHeader);
    Logger::instance().log("===============", Logger::kLogLevelHeader);

    Logger::instance().log("Host Information:", Logger::kLogLevelHeader);
    Logger::instance().log("", Logger::kLogLevelHeader);

    systeminfo = wxGetHostName();
    Logger::instance().log(systeminfo.ToStdString(), Logger::kLogLevelHeader);

    systeminfo =  wxPlatformInfo::Get().GetOperatingSystemDescription();
    Logger::instance().log(systeminfo.ToStdString(), Logger::kLogLevelHeader);

    Logger::instance().log("", Logger::kLogLevelHeader);
    Logger::instance().log("SACAMOS Build:", Logger::kLogLevelHeader);

    if (BuildFile.Open("resources/Build"))
    {
        for (int i = 0; i<8; i++)
        {
            buildtext = BuildFile[i];

            if (i==1) guiversion = BuildFile[i];

            if (i==5) cmdversion = BuildFile[i];

            Logger::instance().log(buildtext.ToStdString(), Logger::kLogLevelHeader);
        }
    }

    BuildFile.Close();

a399f76b   Steve Greedy   SW Updates
100
101
102
103
104
105
106
107
108
109
110
111
112
    wxString os_version = wxGetOsDescription();

    wxStringTokenizer tokenizer(os_version, " ");

    wxString os_type = tokenizer.GetNextToken();

    //(*AppInitialize
    bool wxsOK = true;
    wxInitAllImageHandlers();


    if ( wxsOK )
    {
a399f76b   Steve Greedy   SW Updates
113
114
115
116
117
118
        // Display splash screen

        if (splashimage.LoadFile("resources/Sacamos_About.png", wxBITMAP_TYPE_PNG))
        {
            wxSplashScreen *splashscrn = new wxSplashScreen(splashimage,
            wxSPLASH_CENTRE_ON_SCREEN|wxSPLASH_TIMEOUT,
00c8775f   Steve Greedy   Update SW1
119
            2000, NULL, wxID_ANY, wxDefaultPosition, wxDefaultSize,
a399f76b   Steve Greedy   SW Updates
120
121
122
123
124
125
126
            wxSIMPLE_BORDER|wxSTAY_ON_TOP);
        }

        if (os_type=="Windows")
        {
            wxYield();
            wxSleep(2);
00c8775f   Steve Greedy   Update SW1
127
            //Frame->Show(true);
a399f76b   Steve Greedy   SW Updates
128
129
130
        }
        else
        {
00c8775f   Steve Greedy   Update SW1
131
132
133
134
135
            for (int i=0;i<20;i++)
            {
                wxYield();
                wxMilliSleep(10);
            }
a399f76b   Steve Greedy   SW Updates
136
137
138
139
140
        }

    }
    //*)

f309591f   Steve Greedy   Update to SW1
141
    // Compare current version against latest release version
a399f76b   Steve Greedy   SW Updates
142
    Logger::instance().log("Checking for Software Update...", Logger::kLogLevelInfo);
f309591f   Steve Greedy   Update to SW1
143

00c8775f   Steve Greedy   Update SW1
144
145
    std::string latest_version,latest_version_number, latest_version_date;
    std::string current_version,current_version_number, current_version_date;
f309591f   Steve Greedy   Update to SW1
146
147
148
149
150

    wxString version_temp = "";

    wxStringOutputStream out_stream(&version_temp);

00c8775f   Steve Greedy   Update SW1
151
    wxHTTP checkupdate;
f309591f   Steve Greedy   Update to SW1
152
    checkupdate.SetHeader(_T("Content-type"), _T("text/html; charset=utf-8"));
00c8775f   Steve Greedy   Update SW1
153
154
    checkupdate.SetTimeout(5);
    checkupdate.Connect(_T("128.243.70.77"));
f309591f   Steve Greedy   Update to SW1
155

00c8775f   Steve Greedy   Update SW1
156
157
158
    wxApp::IsMainLoopRunning();

    wxInputStream *latest_versioninfo;
f309591f   Steve Greedy   Update to SW1
159

00c8775f   Steve Greedy   Update SW1
160
161
162
    latest_versioninfo = checkupdate.GetInputStream(_T("/UoN/SACAMOS/raw/master/version_information.inc"));

    if (checkupdate.GetError() == wxPROTO_NOERR)
f309591f   Steve Greedy   Update to SW1
163
164
165
    {
        Logger::instance().log("Connected to SACAMOS Repository", Logger::kLogLevelInfo);

f309591f   Steve Greedy   Update to SW1
166
167
168
        latest_versioninfo->Read(out_stream);

        latest_version = version_temp.ToStdString();
f309591f   Steve Greedy   Update to SW1
169
    }
00c8775f   Steve Greedy   Update SW1
170

f309591f   Steve Greedy   Update to SW1
171
172
173
    else
    {
        //fail silently & log event
a399f76b   Steve Greedy   SW Updates
174
        Logger::instance().log("Could not connect to SACAMOS Repository", Logger::kLogLevelInfo);
f309591f   Steve Greedy   Update to SW1
175
176
    }

00c8775f   Steve Greedy   Update SW1
177
178
    wxDELETE(latest_versioninfo);

f309591f   Steve Greedy   Update to SW1
179
180
    checkupdate.Close();

00c8775f   Steve Greedy   Update SW1
181
182
183
184
185
186
    if (wxsOK)
    {
        SW1_GUIFrame* Frame = new SW1_GUIFrame(0);
        Frame->Show(true);
    }

f309591f   Steve Greedy   Update to SW1
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
    std::istringstream stream{latest_version};

    if (latest_version != "")
    {
        std::getline(stream, latest_version_number);

        if (latest_version_number != SACAMOS_V_NUMBER)
        {
            size_t pos;

            string latest_version_number_trimmed;
            pos = latest_version_number.find("=");
            latest_version_number_trimmed = latest_version_number.substr(pos+2);
            latest_version_number_trimmed = latest_version_number_trimmed.substr(0,latest_version_number_trimmed.size()-1);

            string current_version_number_trimmed;
            pos = SACAMOS_V_NUMBER.find("=");
            current_version_number_trimmed = SACAMOS_V_NUMBER.substr(pos+2);
            current_version_number_trimmed = current_version_number_trimmed.substr(0,latest_version_number_trimmed.size());

            updatemessage = "You are running SACAMOS " + current_version_number_trimmed + "\n\n";
            updatemessage+= "The latest version is  " + latest_version_number_trimmed + "\n\n";
            updatemessage+= "Please visit www.sacamos.org to download the latest version.";

            wxString myString(updatemessage);
            wxMessageBox(updatemessage,"Please Update");

a399f76b   Steve Greedy   SW Updates
214
215
            Logger::instance().log("SACAMOS Update Available", Logger::kLogLevelInfo);

f309591f   Steve Greedy   Update to SW1
216
        }
00c8775f   Steve Greedy   Update SW1
217
218
219
220
        else
        {
            Logger::instance().log("SACAMOS Uptodate", Logger::kLogLevelInfo);
        }
f309591f   Steve Greedy   Update to SW1
221
222
    }

886c558b   Steve Greedy   SACAMOS Public Re...
223
224
225
    return wxsOK;

}