File: singleapp.cpp

package info (click to toggle)
screengrab 1.101-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,504 kB
  • sloc: cpp: 4,744; makefile: 11
file content (103 lines) | stat: -rw-r--r-- 3,971 bytes parent folder | download
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
/***************************************************************************
 *   Copyright (C) 2010 - 2013 by Artem 'DOOMer' Galichkin                 *
 *   doomer3d@gmail.com                                                    *
 *                                                                         *
 *   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, see <http://www.gnu.org/licenses/>. *
 ***************************************************************************/

#include <QTimer>
#include <QByteArray>

#include <QLocalSocket>
#include "singleapp.h"

/*!
    Creates of sungle application object
    \param argc Nuber of command line arguments
    \param argv Array of command line argwuments
    \param uniqueKey String key fo unicue shared data indefier
 */
SingleApp::SingleApp(int& argc, char* argv[], const QString &keyString) : QApplication(argc, argv), uniqueKey(keyString)
{
        sharedMemory.setKey(uniqueKey);
        if (sharedMemory.attach())
                runned = true;
        else
        {
                runned = false;
                // create shared memory.
                if (!sharedMemory.create(1))
                {
                        qDebug("Unable to create single instance.");
                        return;
                }
                // create local server and listen to incomming messages from other instances.
                localServer = new QLocalServer(this);
                connect(localServer, SIGNAL(newConnection()), this, SLOT(receiveMessage()));
                localServer->listen(uniqueKey);
        }
}

// public slots.

void SingleApp::receiveMessage()
{
        QLocalSocket *localSocket = localServer->nextPendingConnection();
        if (!localSocket->waitForReadyRead(timeout))
        {
                qDebug("%s", qPrintable(localSocket->errorString().toLatin1()));
                return;
        }
        QByteArray byteArray = localSocket->readAll();
        QString message = QString::fromUtf8(byteArray.constData());
        emit messageReceived(message);
        localSocket->disconnectFromServer();
}

// public functions.

/*!
    Checking instance application
    \return bool Return tue is another instance running
 */
bool SingleApp::isRunning()
{
        return runned;
}

/*1 
    Sending message to another running instance of application
    \param message String dended message
    \tryitn bool Return status ofsending message process
 */
bool SingleApp::sendMessage(const QString &message)
{
        if (!runned)
                return false;
        QLocalSocket localSocket(this);
        localSocket.connectToServer(uniqueKey, QIODevice::WriteOnly);
        if (!localSocket.waitForConnected(timeout))
        {
                qDebug("%s",qPrintable(localSocket.errorString().toLatin1()));
                return false;
        }
        localSocket.write(message.toUtf8());
        if (!localSocket.waitForBytesWritten(timeout))
        {
                qDebug("%s",qPrintable(localSocket.errorString().toLatin1()));
                return false;
        }
        localSocket.disconnectFromServer();
        return true;
}