2015-12-16 20:01:03 +00:00
|
|
|
/*
|
|
|
|
* This file Copyright (C) 2015 Mnemosyne LLC
|
|
|
|
*
|
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QVariant>
|
|
|
|
|
|
|
|
#include "InteropHelper.h"
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
bool InteropHelper::isConnected() const
|
2015-12-16 20:01:03 +00:00
|
|
|
{
|
|
|
|
#ifdef ENABLE_DBUS_INTEROP
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (myDbusClient.isConnected())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-16 20:01:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_COM_INTEROP
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (myComClient.isConnected())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-16 20:01:03 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
return false;
|
2015-12-16 20:01:03 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool InteropHelper::addMetainfo(QString const& metainfo)
|
2015-12-16 20:01:03 +00:00
|
|
|
{
|
|
|
|
#ifdef ENABLE_DBUS_INTEROP
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
QVariant const response = myDbusClient.addMetainfo(metainfo);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (response.isValid() && response.toBool())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-16 20:01:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_COM_INTEROP
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
QVariant const response = myComClient.addMetainfo(metainfo);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (response.isValid() && response.toBool())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-16 20:01:03 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
return false;
|
2015-12-16 20:01:03 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void InteropHelper::initialize()
|
2015-12-16 20:01:03 +00:00
|
|
|
{
|
|
|
|
#ifdef ENABLE_COM_INTEROP
|
2017-04-19 12:04:45 +00:00
|
|
|
ComInteropHelper::initialize();
|
2015-12-16 20:01:03 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void InteropHelper::registerObject(QObject* parent)
|
2015-12-16 20:01:03 +00:00
|
|
|
{
|
|
|
|
#ifdef ENABLE_DBUS_INTEROP
|
2017-04-19 12:04:45 +00:00
|
|
|
DBusInteropHelper::registerObject(parent);
|
2015-12-16 20:01:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_COM_INTEROP
|
2017-04-19 12:04:45 +00:00
|
|
|
ComInteropHelper::registerObject(parent);
|
2015-12-16 20:01:03 +00:00
|
|
|
#endif
|
|
|
|
}
|