accounts-qt  1.6
provider.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  *
8  * Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public License
12  * version 2.1 as published by the Free Software Foundation.
13  *
14  * This library is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23  */
24 
25 #include "provider.h"
26 
27 #undef signals
28 #include <libaccounts-glib/ag-provider.h>
29 
30 
31 using namespace Accounts;
32 
33 namespace Accounts {
44 }; // namespace
45 
46 Provider::Provider(AgProvider *provider, ReferenceMode mode):
47  m_provider(provider)
48 {
49  if (m_provider != 0 && mode == AddReference)
50  ag_provider_ref(m_provider);
51 }
52 
57  m_provider(0)
58 {
59 }
60 
66  m_provider(other.m_provider)
67 {
68  if (m_provider != 0)
69  ag_provider_ref(m_provider);
70 }
71 
72 Provider &Provider::operator=(const Provider &other)
73 {
74  if (m_provider == other.m_provider) return *this;
75  if (m_provider != 0)
76  ag_provider_unref(m_provider);
77  m_provider = other.m_provider;
78  if (m_provider != 0)
79  ag_provider_ref(m_provider);
80  return *this;
81 }
82 
83 Provider::~Provider()
84 {
85  ag_provider_unref(m_provider);
86  m_provider = 0;
87 }
88 
93 bool Provider::isValid() const
94 {
95  return m_provider != 0;
96 }
97 
103 QString Provider::name() const
104 {
105  return UTF8(ag_provider_get_name(m_provider));
106 }
107 
112 QString Provider::displayName() const
113 {
114  return UTF8(ag_provider_get_display_name(m_provider));
115 }
116 
121 QString Provider::trCatalog() const
122 {
123  return ASCII(ag_provider_get_i18n_domain(m_provider));
124 }
125 
129 QString Provider::iconName() const
130 {
131  return ASCII(ag_provider_get_icon_name(m_provider));
132 }
133 
137 const QDomDocument Provider::domDocument() const
138 {
139  const gchar *data;
140 
141  ag_provider_get_file_contents(m_provider, &data);
142 
143  QDomDocument doc;
144  QString errorStr;
145  int errorLine;
146  int errorColumn;
147  if (!doc.setContent(QByteArray(data), true,
148  &errorStr, &errorLine, &errorColumn))
149  {
150  QString message(ASCII("Parse error reading account provider file "
151  "at line %1, column %2:\n%3"));
152  message.arg(errorLine).arg(errorColumn).arg(errorStr);
153  qWarning() << __PRETTY_FUNCTION__ << message;
154  }
155 
156  return doc;
157 }
158 
159 AgProvider *Provider::provider() const
160 {
161  return m_provider;
162 }
163