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 170 171 172 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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
|
/*
* OpenRPT report writer and rendering engine
* Copyright (C) 2001-2014 by OpenMFG, LLC
*
* This library 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 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* Please contact info@openmfg.com with any questions on this license.
*/
#include <QApplication>
#include <QSqlDatabase>
#include <QMessageBox>
#include <QFile>
#include <QTextStream>
#include <xsqlquery.h>
#include <dbtools.h>
#include <login.h>
#include <parameter.h>
#include <xvariant.h>
#include <stdio.h>
#include "data.h"
#include "renderwindow.h"
typedef QPair<bool, QVariant> ParamPair;
int main(int argc, char *argv[])
{
QMap<QString,ParamPair> paramList;
QString username = "";
QString filename;
QString printerName;
bool haveUsername = false;
bool haveDatabaseURL = false;
bool loggedIn = false;
bool print = false;
bool printPreview = false;
bool close = false;
bool autoPrint = false; //AUTOPRINT
int numCopies = 1;
// BVI::Sednacom
// new options
bool pdfOutput = false;
QString pdfFileName;
// BVI::Sednacom
QString databaseURL = "";
QString loadFromDB = "";
QApplication app(argc, argv);
app.addLibraryPath(".");
OpenRPT::languages.addTranslationToDefault(":/common.qm");
OpenRPT::languages.addTranslationToDefault(":/wrtembed.qm");
OpenRPT::languages.addTranslationToDefault(":/renderer.qm");
OpenRPT::languages.addTranslationToDefault(":/renderapp.qm");
OpenRPT::languages.installSelected();
if (argc > 1)
{
haveUsername = false;
bool havePasswd = false;
QString passwd = "";
QStringList arguments;
QString firstArgument = QString( argv[ 1 ] );
if( firstArgument.startsWith("-fromStdin=", Qt::CaseInsensitive) ){
QFile file;
file.open(stdin, QIODevice::ReadOnly);
QTextStream in(&file);
in.setCodec( firstArgument.right( firstArgument.length() - 11 ).toLatin1() );
QString arg;
while( arg.compare("-launch") !=0 ){
arg = in.readLine();
arguments << arg;
}
file.close();
}
else{
for (int intCounter = 1; intCounter < argc; intCounter++){
arguments << QString (argv[intCounter]);
}
}
for ( QStringList::Iterator it = arguments.begin(); it != arguments.end(); ++it ) {
QString argument( *it );
if (argument.startsWith("-databaseURL=", Qt::CaseInsensitive)) {
haveDatabaseURL = true;
databaseURL = argument.right(argument.length() - 13);
}
else if (argument.startsWith("-username=", Qt::CaseInsensitive))
{
haveUsername = true;
username = argument.right(argument.length() - 10);
}
else if (argument.startsWith("-passwd=", Qt::CaseInsensitive))
{
havePasswd = true;
passwd = argument.right(argument.length() - 8);
}
else if (argument.toLower() == "-noauth")
{
haveUsername = true;
havePasswd = true;
}
else if (argument.startsWith("-numCopies=", Qt::CaseInsensitive)){
numCopies = argument.right( argument.length() - 11).toInt();
}
else if (argument.toLower() == "-print")
print = true;
else if (argument.toLower() == "-printpreview")
printPreview = true;
else if (argument.toLower() == "-close")
close = true;
else if (argument.startsWith("-printerName=", Qt::CaseInsensitive))
printerName = argument.right(argument.length() - 13);
else if (argument.startsWith("-param=", Qt::CaseInsensitive))
{
QString str = argument.right(argument.length() - 7);
bool active = true;
QString name;
QString type;
QString value;
QVariant var;
int sep = str.indexOf('=');
if(sep == -1)
name = str;
else
{
name = str.left(sep);
value = str.right(str.length() - (sep + 1));
}
str = name;
sep = str.indexOf(':');
if(sep != -1)
{
name = str.left(sep);
type = str.right(str.length() - (sep + 1));
}
if(name.startsWith("-"))
{
name = name.right(name.length() - 1);
active = false;
}
else if(name.startsWith("+"))
name = name.right(name.length() - 1);
if(!value.isEmpty())
var = XVariant::decode(type, value);
paramList[name] = ParamPair(active, var);
}
// BVI::Sednacom
// manage new arguments for CLI
else if (argument.startsWith("-pdf", Qt::CaseInsensitive)) {
pdfOutput = true ;
}
else if (argument.startsWith("-outpdf=", Qt::CaseInsensitive)) {
pdfFileName = argument.right(argument.length() - 8 ) ;
}
// BVI::Sednacom
else if (argument.startsWith("-loadfromdb=", Qt::CaseInsensitive))
loadFromDB = argument.right(argument.length() - 12);
else if (argument.toLower() == "-e")
XSqlQuery::setNameErrorValue("Missing");
else if (argument.toLower() == "-autoprint"){ //AUTOPRINT
print=true; //Auto print means they want to print.
autoPrint=true;
}
else if(!argument.startsWith("-"))
filename = argument;
}
if ( (haveDatabaseURL) && (haveUsername) && (havePasswd) )
{
QSqlDatabase db;
QString protocol;
QString hostName;
QString dbName;
QString port;
db = databaseFromURL( databaseURL );
if (!db.isValid())
{
QMessageBox::critical(0, QObject::tr("Can not load database driver"), QObject::tr("Unable to load the database driver. Please contact your systems administrator."));
QApplication::exit(-1);
}
db.setUserName(username);
db.setPassword(passwd);
if (!db.open())
{
QMessageBox::critical(0, QObject::tr("Unable to connect to database"), QObject::tr("Unable to connect to the database with the given information."));
QApplication::exit(-1);
}
else
loggedIn = true;
}
}
if(!loggedIn)
{
ParameterList params;
params.append("name", RenderWindow::name());
params.append("copyright", OpenRPT::copyright);
params.append("version", OpenRPT::version);
params.append("build", OpenRPT::build);
if (haveUsername)
params.append("username", username);
if (haveDatabaseURL)
params.append("databaseURL", databaseURL);
login newdlg(0, "", true);
newdlg.set(params, 0);
if (newdlg.exec() == QDialog::Rejected)
return -1;
}
// The following is code that works specifically with the xTuple ERP database
// This should be expanded to be usefull when not connecting to an xTuple ERP
// database as well. Command line option maybe?
XSqlQuery langq("SELECT * "
"FROM usr, locale LEFT OUTER JOIN"
" lang ON (locale_lang_id=lang_id) LEFT OUTER JOIN"
" country ON (locale_country_id=country_id) "
"WHERE ( (usr_username=CURRENT_USER)"
" AND (usr_locale_id=locale_id) );" );
if (langq.first())
{
QStringList paths;
paths << "dict";
paths << "";
paths << "../dict";
paths << app.applicationDirPath() + "/dict";
paths << app.applicationDirPath();
paths << app.applicationDirPath() + "/../dict";
#if defined Q_WS_MACX
paths << app.applicationDirPath() + "/../../../dict";
paths << app.applicationDirPath() + "/../../..";
#endif
QStringList files;
if (!langq.value("locale_lang_file").toString().isEmpty())
files << langq.value("locale_lang_file").toString();
QString langext;
if (!langq.value("lang_abbr2").toString().isEmpty() &&
!langq.value("country_abbr").toString().isEmpty())
{
langext = langq.value("lang_abbr2").toString() + "_" +
langq.value("country_abbr").toString().toLower();
}
else if (!langq.value("lang_abbr2").toString().isEmpty())
{
langext = langq.value("lang_abbr2").toString();
}
if(!langext.isEmpty())
{
files << "reports." + langext;
XSqlQuery pkglist("SELECT pkghead_name FROM pkghead WHERE packageIsEnabled(pkghead_name);");
while(pkglist.next())
{
files << pkglist.value("pkghead_name").toString() + "." + langext;
}
}
if (files.size() > 0)
{
QTranslator *translator = new QTranslator(&app);
for (QStringList::Iterator fit = files.begin(); fit != files.end(); ++fit)
{
for(QStringList::Iterator pit = paths.begin(); pit != paths.end(); ++pit)
{
qDebug("looking for %s in %s", (*fit).toLatin1().data(), (*pit).toLatin1().data());
if (translator->load(*fit, *pit))
{
app.installTranslator(translator);
qDebug("installed %s/%s", (*pit).toLatin1().data(), (*fit).toLatin1().data());
translator = new QTranslator(&app);
break;
}
}
}
}
}
// END language loading code
RenderWindow mainwin;
mainwin._printerName = printerName;
mainwin._autoPrint = autoPrint;
if(!filename.isEmpty())
mainwin.fileOpen(filename);
if(!loadFromDB.isEmpty())
mainwin.fileLoad(loadFromDB);
QMap<QString,ParamPair>::Iterator it;
for ( it = paramList.begin(); it != paramList.end(); ++it ) {
mainwin.updateParam(it.key(), it.value().second, it.value().first);
}
// BVI::Sednacom
// do not display window for PDF output
if (!pdfOutput && !autoPrint)
mainwin.show();
// BVI::Sednacom
if(print)
mainwin.filePrint( numCopies );
if(printPreview)
mainwin.filePreview( numCopies );
// BVI::Sednacom
// generate the PDF
if (pdfOutput)
mainwin.filePrintToPDF(pdfFileName);
// BVI::Sednacom
if(close)
{
mainwin.fileExit();
return 0;
}
return app.exec();
}
|