summaryrefslogtreecommitdiff
path: root/core/qws/main.cpp
blob: 1c3c6213e7d12e298b78e429d05ca4180dfa289b (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

#include "oqwsserver.h"

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h> 

#include <syslog.h>
#include <stdio.h>

#define APPNAME "op-qws"

void toSyslog(QtMsgType type, const char *msg)
{
    int level = LOG_INFO;
    switch (type) {
        case QtDebugMsg:
            level = LOG_DEBUG;
            break;
        case QtWarningMsg:
            level = LOG_WARNING;
            break;
        case QtFatalMsg:
            level = LOG_ERR;
            break;
    }
    syslog (LOG_DAEMON | level, msg);
}

int daemon_init(void)
{
    pid_t pid;

    if ((pid = fork()) < 0)
        return(-1);
    else if (pid != 0)
        exit(0);

    setsid();

    chdir("/");	

    umask(0);

    fclose(stdout);
    fclose(stderr);
    fclose(stdin);

    return(0);
}

int main( int argc, char ** argv )
{
    while (argc > 1) {
        if (strcmp(argv[--argc], "-d") == 0) {
            // daemonize
            openlog(APPNAME, 0, LOG_DAEMON);
            qInstallMsgHandler(toSyslog);
            if (daemon_init() != 0) {
                fprintf(stderr, "%s: Error: Unable to daemonize\n", APPNAME);
                return 1;
	    }
	}
    }

    OQWSServer a(argc, argv, QApplication::GuiServer);
    return a.exec();
}