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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
/* vi: set et sw=4 ts=4 cino=t0,(0: */
/*
* This file is part of libaccounts-qt
*
* Copyright (C) 2009-2011 Nokia Corporation.
* Copyright (C) 2012 Canonical Ltd.
* Copyright (C) 2012 Intel Corporation.
*
* Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
* Contact: Jussi Laako <jussi.laako@linux.intel.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "service.h"
#undef signals
#include <libaccounts-glib/ag-service.h>
using namespace Accounts;
namespace Accounts {
/*!
* @class Service
* @headerfile service.h Accounts/Service
*
* @brief Representation of an account service.
*
* @details The Service object represents an account service. It can be used to
* retrieve some basic properties of the service (such as name, type and
* provider) and to get access to the contents of the XML file which defines
* it.
*/
}; // namespace
Service::Service(AgService *service, ReferenceMode mode):
m_service(service),
m_tags(0)
{
if (m_service != 0 && mode == AddReference)
ag_service_ref(m_service);
}
/*!
* Construct an invalid service.
*/
Service::Service():
m_service(0),
m_tags(0)
{
}
/*!
* Copy constructor. Copying a Service object is very cheap, because the
* data is shared among copies.
*/
Service::Service(const Service &other):
m_service(other.m_service),
m_tags(0)
{
if (m_service != 0)
ag_service_ref(m_service);
}
Service &Service::operator=(const Service &other)
{
if (m_service == other.m_service) return *this;
if (m_service != 0)
ag_service_unref(m_service);
m_service = other.m_service;
if (m_service != 0)
ag_service_ref(m_service);
return *this;
}
Service::~Service()
{
if (m_service != 0) {
ag_service_unref(m_service);
m_service = 0;
}
if (m_tags != 0) {
delete m_tags;
m_tags = 0;
}
}
/*!
* Check whether this object represents a Service.
* @return true if the Service is a valid one.
*/
bool Service::isValid() const
{
return m_service != 0;
}
/*!
* Get the name of the service. This can be used as a unique identifier for
* this service.
* @return The unique name of the service.
*/
QString Service::name() const
{
if (Q_UNLIKELY(!isValid())) return QString();
return UTF8(ag_service_get_name(m_service));
}
/*!
* Get the display name of the service, untranslated.
* @return The display name of the service.
*/
QString Service::displayName() const
{
return UTF8(ag_service_get_display_name(m_service));
}
/*!
* Get the service type ID of the service.
* @return The service type of the service.
*/
QString Service::serviceType() const
{
return ASCII(ag_service_get_service_type(m_service));
}
/*!
* @return The translation catalog of the service.
*/
QString Service::trCatalog() const
{
return ASCII(ag_service_get_i18n_domain(m_service));
}
/*!
* Get the provider ID of the service.
* @return The provider of the service.
*/
QString Service::provider() const
{
return UTF8(ag_service_get_provider(m_service));
}
/*!
* Get the icon name for this service.
* @return The icon name.
*/
QString Service::iconName() const
{
return ASCII(ag_service_get_icon_name(m_service));
}
/*!
* Check if this service has a tag.
*
* @param tag Tag to look for
*
* @return Service has the tag?
*/
bool Service::hasTag(const QString &tag) const
{
return ag_service_has_tag(m_service, tag.toUtf8().constData());
}
/*!
* Return all tags of the service as a set.
*
* @return Set of tags
*/
QSet<QString> Service::tags() const
{
if (m_tags)
return *m_tags;
m_tags = new QSet<QString>;
GList *list = ag_service_get_tags(m_service);
GList *iter = list;
while (iter != NULL) {
m_tags->insert(UTF8(reinterpret_cast<const gchar *> (iter->data)));
iter = g_list_next(iter);
}
g_list_free(list);
return *m_tags;
}
/*!
* Get the contents of the service XML file.
* @return The DOM of the whole XML service file
*/
const QDomDocument Service::domDocument() const
{
const gchar *data;
ag_service_get_file_contents(m_service, &data, NULL);
QDomDocument doc;
QString errorStr;
int errorLine;
int errorColumn;
if (!doc.setContent(QByteArray(data), true,
&errorStr, &errorLine, &errorColumn))
{
QString message(ASCII("Parse error reading account service file "
"at line %1, column %2:\n%3"));
message.arg(errorLine).arg(errorColumn).arg(errorStr);
qWarning() << __PRETTY_FUNCTION__ << message;
}
return doc;
}
AgService *Service::service() const
{
return m_service;
}
|