OpenCPN Partial API docs
Loading...
Searching...
No Matches
ipc_factories.cpp
Go to the documentation of this file.
1/***************************************************************************
2 * Copyright (C) 2023 Alec Leamas *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 **************************************************************************/
19
28#include <stdlib.h>
29
30#include "model/ipc_api.h"
31#include "model/wx_instance_chk.h"
32
33#if defined(__linux__) && !defined(__ANDROID__)
34#include "model/dbus_client.h"
35#include "model/dbus_server.h"
36#endif
37
38static InstanceCheck& GetWxInstanceChk() {
39 static WxInstanceCheck wx_check;
40 return wx_check;
41}
42
43#ifdef __ANDROID__
44
45std::unique_ptr<LocalClientApi> LocalClientApi::GetClient() {
46 return std::unique_ptr<LocalClientApi>(new DummyIpcClient());
47}
48
50 return DummyIpcServer::GetInstance();
51}
52
54
56 return DummyInstanceChk::GetInstance();
57}
58
59#elif defined(__linux__)
60static bool UseDbus() {
61 return getenv("FLATPAK_ID") != 0 || getenv("OCPN_FORCE_DBUS");
62}
63
64std::unique_ptr<LocalClientApi> LocalClientApi::GetClient() {
65 if (UseDbus()) {
66 return std::unique_ptr<LocalClientApi>(new DbusLocalClient);
67 } else {
68 return std::unique_ptr<LocalClientApi>(new IpcClient);
69 }
70}
71
73 return UseDbus() ? DbusServer::GetInstance() : IpcConnection::GetInstance();
74}
75
77
79 if (UseDbus())
80 return DbusServer::GetInstance();
81 else
82 return GetWxInstanceChk();
83}
84
85#else // __linux__ nor __ANDROID__
86std::unique_ptr<LocalClientApi> LocalClientApi::GetClient() {
87 return std::unique_ptr<LocalClientApi>(new IpcClient());
88}
89
91 return IpcConnection::GetInstance();
92}
93
94void LocalServerApi::ReleaseInstance() { IpcConnection::ReleaseInstance(); }
95
96InstanceCheck& InstanceCheck::GetInstance() { return GetWxInstanceChk(); }
97
98#endif // __linux__
Implement LocalClientApi on linux using Dbus mechanisms.
Definition dbus_client.h:33
Common interface for all instance checkers.
static InstanceCheck & GetInstance()
Started by IpcServer on filesystem fifo/socket connects.
Definition ipc_api.h:68
Base interface for local server command handling.
Definition local_api.h:61
static void ReleaseInstance()
Release Instance.
static LocalServerApi & GetInstance()
Thin wrapper for wxSingleInstanceChecker implementing InstanceCheck.
DBus interface header file.
Server and client CLI api implementations.