boo/lib/x11/ApplicationUnix.cpp

73 lines
2.4 KiB
C++
Raw Normal View History

2015-05-06 00:50:57 +00:00
/* Meta-implementation for dynamically-constructing user's preferred
* platform interface
*/
2015-08-18 19:40:26 +00:00
#define APPLICATION_UNIX_CPP
#include "ApplicationXlib.hpp"
2015-08-18 19:40:26 +00:00
#include "ApplicationWayland.hpp"
2015-05-06 00:50:57 +00:00
2015-08-18 22:43:30 +00:00
#include <memory>
2015-05-13 22:21:13 +00:00
#include <dbus/dbus.h>
2017-12-29 07:54:26 +00:00
#include <cstdio>
2015-05-13 22:21:13 +00:00
2018-01-02 05:09:15 +00:00
/* No icon by default */
2018-12-08 05:17:51 +00:00
extern "C" const uint8_t MAINICON_NETWM[] __attribute__((weak)) = {};
extern "C" const size_t MAINICON_NETWM_SZ __attribute__((weak)) = 0;
2018-01-02 05:09:15 +00:00
2018-12-08 05:17:51 +00:00
DBusConnection* RegisterDBus(const char* appName, bool& isFirst) {
isFirst = true;
DBusError err = {};
dbus_error_init(&err);
2015-05-13 22:21:13 +00:00
2018-12-08 05:17:51 +00:00
/* connect to the bus and check for errors */
DBusConnection* conn = dbus_bus_get(DBUS_BUS_SESSION, &err);
if (dbus_error_is_set(&err)) {
fprintf(stderr, "DBus Connection Error (%s)\n", err.message);
dbus_error_free(&err);
}
if (NULL == conn)
return NULL;
2015-05-13 22:21:13 +00:00
2018-12-08 05:17:51 +00:00
/* request our name on the bus and check for errors */
char busName[256];
snprintf(busName, 256, "boo.%s.unique", appName);
int ret = dbus_bus_request_name(conn, busName, DBUS_NAME_FLAG_DO_NOT_QUEUE, &err);
if (dbus_error_is_set(&err)) {
fprintf(stderr, "DBus Name Error (%s)\n", err.message);
dbus_error_free(&err);
dbus_connection_close(conn);
return NULL;
}
if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret)
isFirst = false;
2015-05-13 22:21:13 +00:00
2018-12-08 05:17:51 +00:00
return conn;
2015-05-13 22:21:13 +00:00
}
2018-12-08 05:17:51 +00:00
namespace boo {
2015-05-06 00:50:57 +00:00
2018-05-20 06:11:49 +00:00
IApplication* APP = nullptr;
2018-12-08 05:17:51 +00:00
int ApplicationRun(IApplication::EPlatformType platform, IApplicationCallback& cb, std::string_view uniqueName,
std::string_view friendlyName, std::string_view pname, const std::vector<std::string>& args,
std::string_view gfxApi, uint32_t samples, uint32_t anisotropy, bool deepColor,
bool singleInstance) {
std::string thrName = std::string(friendlyName) + " Main";
logvisor::RegisterThreadName(thrName.c_str());
if (APP)
return 1;
if (platform == IApplication::EPlatformType::Wayland)
APP = new ApplicationWayland(cb, uniqueName, friendlyName, pname, args, gfxApi, samples, anisotropy, deepColor,
singleInstance);
else if (platform == IApplication::EPlatformType::Xlib || platform == IApplication::EPlatformType::Auto)
APP = new ApplicationXlib(cb, uniqueName, friendlyName, pname, args, gfxApi, samples, anisotropy, deepColor,
singleInstance);
else
return 1;
int ret = APP->run();
delete APP;
APP = nullptr;
return ret;
2015-05-06 00:50:57 +00:00
}
2018-12-08 05:17:51 +00:00
} // namespace boo