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
|
#include <cstdio>
#include <iostream>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "UpdateFactory.hpp"
extern void print_build_details(void)
{
std::cout << "[BUILD_DETAILS]" << std::endl
#ifdef UT_GITHASH
<< "git-hash..: " << UT_GITHASH << std::endl
#endif
#ifdef UT_BUILDGUI
<< "with-gui..: " << UT_BUILDGUI << std::endl
#endif
#ifdef UT_BUILDWIN
<< "windows...: " << UT_BUILDWIN << std::endl
#endif
#ifdef UT_CFLAGS
<< "ut-cflags.: " << UT_CFLAGS << std::endl
#endif
#ifdef UT_LIBS
<< "ut-libs...: " << UT_LIBS << std::endl
#endif
#ifdef WX_CFLAGS
<< "wx-cflags.: " << WX_CFLAGS << std::endl
#endif
#ifdef WX_LIBS
<< "wx-libs...: " << WX_LIBS << std::endl
#endif
#ifdef WX_VERSION
<< "wx-version: " << WX_VERSION << std::endl
#endif
<< std::endl;
}
#ifdef USE_GUI
#include "UpdateGUI.hpp"
wxIMPLEMENT_APP(UpdateGUI);
#ifdef WIN32
/* Windoze uses UTF-16 as preferred encoding, but is not limited to .. */
#ifdef _UNICODE
int wmain(int argc, wchar_t* argv[])
#else
int main(int argc, char* argv[])
#endif
{
wxEntryStart(argc, argv);
wxTheApp->CallOnInit();
wxTheApp->OnRun();
return 0;
}
#endif
#else
/* Command Line Interface (CLI) for UNIX/WIN */
int main(int argc, char *argv[])
{
size_t totalUpdates = 0, successUpdates = 0;
int rv;
std::vector<UpdateFactory*> uf;
std::string errstr, hostPorts;
print_build_details();
if (argc == 0)
return 1;
if (argc == 3) {
std::vector<std::string> error_list;
rv = loadUpdateFactoriesFromCSV(argv[1], argv[2], uf, error_list);
if (rv != UPDATE_OK) {
std::cerr << "CSV file read \"" << argv[1] << "\" failed with: " << rv << std::endl;
return 1;
}
for (auto& errstr : error_list) {
std::cerr << "CSV read error: " << errstr << std::endl;
}
} else
if (argc == 4) {
hostPorts = std::string(argv[1]);
loadUpdateFactoriesFromStr(hostPorts, argv[3], argv[2], uf);
} else {
std::cerr << "usage: " << argv[0]
<< " [update-csv-file]|[[hostname] [password]] [update-file]"
<< std::endl << std::endl;
return 1;
}
for (auto *u : uf) {
totalUpdates++;
std::cerr << "Connecting to '" << u->getHostname() << ":"
<< u->getPort() << "' with password '"
<< u->getPassword() << "'" << std::endl;
rv = u->doAuth();
mapEmcError(rv, errstr);
if (rv == UPDATE_OK) {
std::cerr << "loading file " << u->getUpdateFile() << std::endl;
rv = u->loadUpdateFile();
std::cerr << "firmware version: " << mapEmcVersion(u->getFwVersion()) << std::endl;
if (rv == UPDATE_OK) {
if (!isEmcVersionLowerThen(u->getEmcVersion(), u->getFwVersion())) {
std::cerr << "version mismatch (" << mapEmcVersion(u->getEmcVersion())
<< " >= " << mapEmcVersion(u->getFwVersion()) << ")" << std::endl;
continue;
}
std::cerr << "uploading file " << u->getUpdateFile() << std::endl;
rv = u->doUpdate();
if (rv == UPDATE_OK) {
successUpdates++;
std::cerr << "Update succeeded!" << std::endl;
} else {
mapEmcError(rv, errstr);
std::cerr << "doUpdate returned " << rv << ": " << errstr << std::endl;
}
} else {
mapEmcError(rv, errstr);
std::cerr << "load file returned " << rv << ": " << errstr << std::endl;
}
} else std::cerr << "doAuth returned " << rv << ": " << errstr << std::endl;
}
for (auto *u : uf) {
delete u;
}
std::cout << "-----------------------" << std::endl
<< "updates: " << totalUpdates << std::endl
<< "success: " << successUpdates << std::endl
<< "failed.: " << (totalUpdates - successUpdates) << std::endl
<< std::endl;
return 0;
}
/* Our Command Line Interface (CLI) wants UTF-16 support if target platform is Windoze .. */
#if defined(_UNICODE) && defined(WIN32)
int wmain(int argc, wchar_t* wargv[])
{
size_t len;
static char **argv = new char*[argc];
print_build_details();
/* convert wide character argvector to ASCII, dirty .. */
for (int i = 0; i < argc; ++i) {
len = wcslen(wargv[i]) * sizeof(wchar_t);
argv[i] = (char *) calloc(len+1, sizeof(char));
wcstombs(argv[i], wargv[i], len);
fprintf(stderr, "arg[%d]: %s\n", i, argv[i]);
}
return main(argc, argv);
}
#endif
#endif
|