Blame view

GUI/SW1/SRC/SW1_GUIApp.cpp 6.46 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
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
    wxString os_version = wxGetOsDescription();

    wxStringTokenizer tokenizer(os_version, " ");

    wxString os_type = tokenizer.GetNextToken();

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


    if ( wxsOK )
    {
        SW1_GUIFrame* Frame = new SW1_GUIFrame(0);

        // Display splash screen

        if (splashimage.LoadFile("resources/Sacamos_About.png", wxBITMAP_TYPE_PNG))
        {
            wxSplashScreen *splashscrn = new wxSplashScreen(splashimage,
            wxSPLASH_CENTRE_ON_SCREEN|wxSPLASH_TIMEOUT,
            2000, Frame, wxID_ANY, wxDefaultPosition, wxDefaultSize,
            wxSIMPLE_BORDER|wxSTAY_ON_TOP);
        }

        if (os_type=="Windows")
        {
            wxYield();
            wxSleep(2);
            Frame->Show(true);
        }
        else
        {
            Frame->Show(true);
            wxYield();
            wxSleep(2);
        }

    }
    //*)

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
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

    wxHTTP checkupdate;

    wxInputStream *latest_versioninfo;

    wxString version_temp = "";

    wxStringOutputStream out_stream(&version_temp);

    checkupdate.SetHeader(_T("Content-type"), _T("text/html; charset=utf-8"));

    std::string latest_version,latest_version_number, latest_version_date;
    std::string current_version,current_version_number, current_version_date;

    if (checkupdate.Connect(_T("128.243.70.77")))  // only the server, no pages here yet ...
    {
        Logger::instance().log("Connected to SACAMOS Repository", Logger::kLogLevelInfo);

        latest_versioninfo = checkupdate.GetInputStream(_T("/UoN/SACAMOS/raw/master/version_information.inc"));

        latest_versioninfo->Read(out_stream);

        latest_version = version_temp.ToStdString();

        wxDELETE(latest_versioninfo);
    }
    else
    {
        //fail silently & log event
a399f76b   Steve Greedy   SW Updates
172
        Logger::instance().log("Could not connect to SACAMOS Repository", Logger::kLogLevelInfo);
f309591f   Steve Greedy   Update to SW1
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
    }

    checkupdate.Close();

    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
204
205
            Logger::instance().log("SACAMOS Update Available", Logger::kLogLevelInfo);

f309591f   Steve Greedy   Update to SW1
206
207
208
        }
    }

f309591f   Steve Greedy   Update to SW1
209

886c558b   Steve Greedy   SACAMOS Public Re...
210
211
212
    return wxsOK;

}