Parent: [621ae7] (diff)

Download this file

upplay.cpp    157 lines (133 with data), 4.7 kB

  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
/* Copyright (C) 2014 J.F.Dockes
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <iostream>
using namespace std;
#include <QApplication>
#include <QObject>
#include <QTimer>
#include <QStringList>
#include <QSettings>
#include <QMessageBox>
#include <libupnpp/upnpplib.hxx>
#include <libupnpp/upnpputils.hxx>
#include <libupnpp/log.hxx>
#include "application.h"
#include "upadapt/upputils.h"
using namespace UPnPP;
static const char *thisprog;
static int op_flags;
#define OPT_h 0x4
#define OPT_c 0x20
#define OPT_v 0x40
static const char usage [] =
"upplay [-h] [-v] : options: get help and version\n"
;
static void
versionInfo(FILE *fp)
{
fprintf(fp, "Upplay %s %s\n",
UPPLAY_VERSION, LibUPnP::versionString().c_str());
}
static void
Usage(void)
{
FILE *fp = (op_flags & OPT_h) ? stdout : stderr;
fprintf(fp, "%s: Usage: %s", thisprog, usage);
versionInfo(fp);
exit((op_flags & OPT_h)==0);
}
int main(int argc, char **argv)
{
QApplication app(argc, argv);
QCoreApplication::setOrganizationName("Upmpd.org");
QCoreApplication::setApplicationName("upplay");
thisprog = argv[0];
argc--; argv++;
while (argc > 0 && **argv == '-') {
(*argv)++;
if (!(**argv))
Usage();
while (**argv)
switch (*(*argv)++) {
case 'h': op_flags |= OPT_h; Usage(); break;
case 'v': op_flags |= OPT_v; versionInfo(stdout); exit(0); break;
default: Usage();
}
argc--; argv++;
}
if (argc > 0)
Usage();
if (Logger::getTheLog("stderr") == 0) {
cerr << "Can't initialize log" << endl;
return 1;
}
const char *cp;
if ((cp = getenv("UPPLAY_LOGLEVEL"))) {
Logger::getTheLog("")->setLogLevel(Logger::LogLevel(atoi(cp)));
}
QSettings settings;
string ifname = qs2utf8s(settings.value("netifname").toString().trimmed());
if (!ifname.empty()) {
cerr << "Initializing library with interface " << ifname << endl;
}
// Note that the lib init may fail here if ifname is wrong.
// The later discovery would call the lib init again (because
// the singleton is still null), which would retry the init,
// without an interface this time, which would probably succeed,
// so that things may still mostly work, which is confusing and the
// reason we do the retry here instead.
LibUPnP *mylib = LibUPnP::getLibUPnP(false, 0, ifname);
if (!mylib || !mylib->ok()) {
if (mylib)
cerr << mylib->errAsString("main", mylib->getInitError()) << endl;
if (ifname.empty()) {
QMessageBox::warning(0, "Upplay", app.tr("Lib init failed"));
return 1;
} else {
QMessageBox::warning(0, "Upplay",
app.tr("Lib init failed for ") +
settings.value("netifname").toString() +
app.tr(". Retrying with null interface"));
mylib = LibUPnP::getLibUPnP();
if (!mylib || !mylib->ok()) {
QMessageBox::warning(0, "Upplay", app.tr("Lib init failed"));
return 1;
}
}
}
if ((cp = getenv("UPPLAY_UPNPLOGFILENAME"))) {
char *cp1 = getenv("UPPLAY_UPNPLOGLEVEL");
int loglevel = LibUPnP::LogLevelNone;
if (cp1) {
loglevel = atoi(cp1);
}
loglevel = loglevel < 0 ? 0: loglevel;
loglevel = loglevel > int(LibUPnP::LogLevelDebug) ?
int(LibUPnP::LogLevelDebug) : loglevel;
if (loglevel != LibUPnP::LogLevelNone) {
if (mylib)
mylib->setLogFileName(cp, LibUPnP::LogLevel(loglevel));
}
}
Application application(&app);
if(!application.is_initialized())
return 1;
return app.exec();
}