accounts-qt  1.2
service.cpp
1 /* vi: set et sw=4 ts=4 cino=t0,(0: */
2 /*
3  * This file is part of libaccounts-qt
4  *
5  * Copyright (C) 2009-2011 Nokia Corporation.
6  * Copyright (C) 2012 Canonical Ltd.
7  * Copyright (C) 2012 Intel Corporation.
8  *
9  * Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
10  * Contact: Jussi Laako <jussi.laako@linux.intel.com>
11  *
12  * This library is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public License
14  * version 2.1 as published by the Free Software Foundation.
15  *
16  * This library is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with this library; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24  * 02110-1301 USA
25  */
26 
27 #include "service.h"
28 
29 #undef signals
30 #include <libaccounts-glib/ag-service.h>
31 
32 using namespace Accounts;
33 
34 namespace Accounts {
46 }; // namespace
47 
48 Service::Service(AgService *service, ReferenceMode mode):
49  m_service(service),
50  m_tags(0)
51 {
52  if (m_service != 0 && mode == AddReference)
53  ag_service_ref(m_service);
54 }
55 
60  m_service(0),
61  m_tags(0)
62 {
63 }
64 
69 Service::Service(const Service &other):
70  m_service(other.m_service),
71  m_tags(0)
72 {
73  if (m_service != 0)
74  ag_service_ref(m_service);
75 }
76 
77 Service &Service::operator=(const Service &other)
78 {
79  if (m_service == other.m_service) return *this;
80  if (m_service != 0)
81  ag_service_unref(m_service);
82  m_service = other.m_service;
83  if (m_service != 0)
84  ag_service_ref(m_service);
85  return *this;
86 }
87 
88 Service::~Service()
89 {
90  TRACE();
91 
92  if (m_service != 0) {
93  ag_service_unref(m_service);
94  m_service = 0;
95  }
96  if (m_tags != 0) {
97  delete m_tags;
98  m_tags = 0;
99  }
100 }
101 
106 bool Service::isValid() const
107 {
108  return m_service != 0;
109 }
110 
116 QString Service::name() const
117 {
118  return UTF8(ag_service_get_name(m_service));
119 }
120 
125 QString Service::displayName() const
126 {
127  return UTF8(ag_service_get_display_name(m_service));
128 }
129 
134 QString Service::serviceType() const
135 {
136  return ASCII(ag_service_get_service_type(m_service));
137 }
138 
142 QString Service::trCatalog() const
143 {
144  return ASCII(ag_service_get_i18n_domain(m_service));
145 }
146 
151 QString Service::provider() const
152 {
153  return UTF8(ag_service_get_provider(m_service));
154 }
155 
160 QString Service::iconName() const
161 {
162  return ASCII(ag_service_get_icon_name(m_service));
163 }
164 
172 bool Service::hasTag(const QString &tag) const
173 {
174  return ag_service_has_tag(m_service, tag.toUtf8().constData());
175 }
176 
182 QSet<QString> Service::tags() const
183 {
184  if (m_tags)
185  return *m_tags;
186 
187  m_tags = new QSet<QString>;
188  GList *list = ag_service_get_tags(m_service);
189  GList *iter = list;
190  while (iter != NULL) {
191  m_tags->insert(UTF8(reinterpret_cast<const gchar *> (iter->data)));
192  iter = g_list_next(iter);
193  }
194  g_list_free(list);
195  return *m_tags;
196 }
197 
202 const QDomDocument Service::domDocument() const
203 {
204  const gchar *data;
205 
206  ag_service_get_file_contents(m_service, &data, NULL);
207 
208  QDomDocument doc;
209  QString errorStr;
210  int errorLine;
211  int errorColumn;
212  if (!doc.setContent(QByteArray(data), true,
213  &errorStr, &errorLine, &errorColumn))
214  {
215  QString message(ASCII("Parse error reading account service file "
216  "at line %1, column %2:\n%3"));
217  message.arg(errorLine).arg(errorColumn).arg(errorStr);
218  qWarning() << __PRETTY_FUNCTION__ << message;
219  }
220  return doc;
221 }
222 
223 AgService *Service::service() const
224 {
225  return m_service;
226 }
227