summaryrefslogtreecommitdiff
path: root/client/pracro.cc
blob: 9e383e95316ed68ea3e29a8b8ec9308a7ff924e1 (plain)
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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            main.cc
 *
 *  Fri Jul 13 12:38:45 CEST 2007
 *  Copyright 2007 Bent Bisballe Nyeng and Lars Bisballe Jensen
 *  deva@aasimon.org and elsenator@gmail.com
 ****************************************************************************/

/*
 *  This file is part of Pracro.
 *
 *  Pracro 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.
 *
 *  Pracro 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 Pracro; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include <QApplication>
#include <QObject>
#include <QEvent>
#include <QStringList>
#include <QSettings>

#include <QTranslator>

#include <QFontDatabase>
#include <QFont>

#include "netcom.h"
#include "mainwindow.h"
#include "launcherwindow.h"
#include "pcpviewer/pcpviewer.h"

#include "debug.h"

#define USER_DEFAULT "testuser"
#define CONFIG_DEFAULT "pracro.ini"

QString cpr;
QString user = USER_DEFAULT;
QString config = CONFIG_DEFAULT;
QString host;
quint16 port;

QFont *fixedfont = NULL;

#ifndef TESTING

static void print_usage()
{
  printf("Usage: pracro [params]\n");
  printf("Executes the requested Pracro MACRO using supplied CPR and USER.\n");
  printf("\n");
  printf("  -h, --help                Displays this help text.\n");
  printf("  -t, --template TEMPLATE   Requests template TEMPLATE from the Pracro \n"
         "                            Server.\n");
  printf("  -C  --course COURSE       Lists templates in COURSE.\n");
  printf("  -P, --patient PATIENTID   Defines the patientid for use with the macro.\n");
  printf("  -T, --title TITLE         Sets the string used in the mainwindow title.\n");
  printf("  -c, --config FILE         The configfile to use. Default is \""CONFIG_DEFAULT"\"\n");
  printf("  -u, -U, --user USER       Defines the requesting user(not the patient),\n"
         "                            defaults to \""USER_DEFAULT"\"\n");
  printf("  -V, --viewer              Show PCPraxis viewer.\n");
  printf("  -v, --version             Print version information and exit.\n");
  printf("  -d, --debug               Make debug console available.\n");
  printf("                            Show the viewer only (no pracro editor window) with TEMPLATES.\n");
}

static void print_version()
{
  printf("Pracro v"VERSION"\n");
}

static QString getParam(QStringList &args, QStringList::iterator &arg)
{
  arg++;
  if(arg == args.end() || arg->at(0) == '-') {
    print_usage();
    exit(1);
  }
  return *arg;
}

int main(int argc, char *argv[])
{
  QApplication app(argc, argv);

  QString macro;
  QString templ;
  QString course;
  QString templs;
  bool show_viewer = false;
  QString title;

  QStringList args = app.arguments();
  QStringList::iterator arg = args.begin();
  arg++; // Skip program name...
  while(arg != args.end()) {

    if(*arg == "--help" ||
       *arg == "-h") {
      print_usage();
      return 0;
    }
    else if(*arg == "--version" ||
            *arg == "-v") {
      print_version();
      return 0;
    }
    else if(*arg == "--viewer" ||
            *arg == "-V") {
      show_viewer = true;
    }
    else if(*arg == "--title" ||
            *arg == "-T") {
      title = getParam(args, arg);
    }
    else if(*arg == "--user" ||
            *arg == "-U" ||
            *arg == "-u") {
      user = getParam(args,arg); 
    }
    else if(*arg == "--template" ||
            *arg == "-t") {
      templ = getParam(args, arg);
    }
    else if(*arg == "--course" ||
            *arg == "-C") {
      course = getParam(args, arg);
    }
    else if(*arg == "--patientid" ||
            *arg == "-P") {
      cpr = getParam(args, arg); 
    }
    else if(*arg == "--config" ||
            *arg == "-c") {
      config = getParam(args, arg); 
    }
    else if(*arg == "--debug" ||
            *arg == "-d") {
      dbg_init();
    }
    else {
      print_version();
      print_usage();
      return 1;
    }

    arg++;
  }

  QSettings settings(config, QSettings::IniFormat);

  settings.beginGroup("server");
  host = settings.value("host").toString();
  port = settings.value("port").toInt();
  QString journalpath  = settings.value("journalpath").toString();
  settings.endGroup();

  QTranslator translator;
  if(translator.load("pracro_dk")) {
    app.installTranslator(&translator);
  }

  QFontDatabase fontdb;
  fontdb.addApplicationFont(":fonts/VeraMono.ttf");
  QFont f = fontdb.font("Bitstream Vera Sans Mono", "", 8);
  fixedfont = &f;

  /*
  if(cpr == "" || templ == "") {
    LauncherWindow lwnd(argv[0], cpr, templ);
    if(lwnd.exec() == QDialog::Accepted && lwnd.getCpr() != "") {
      cpr = lwnd.getCpr();
      templ = lwnd.getTemplate();
    } else {
      return 1;
    }
  }
  */

  MainWindow mainwindow(cpr, title, course, templ, host, port, user);

  PCPViewer *pcpviewer = NULL;
  if(show_viewer) {
    pcpviewer = new PCPViewer(cpr);
    pcpviewer->show();
    QObject::connect(&mainwindow, SIGNAL(isClosing()),
                     pcpviewer, SLOT(close()));
  }

  // Show last to gain focus.
  mainwindow.show();

  int ret = app.exec();

  if(pcpviewer) delete pcpviewer;

  return ret;
}

#endif/*TESTING*/