|
1 /**************************************************************************** |
|
2 ** |
|
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
|
4 ** All rights reserved. |
|
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 ** |
|
7 ** This file is part of the Qt Mobility Components. |
|
8 ** |
|
9 ** $QT_BEGIN_LICENSE:LGPL$ |
|
10 ** No Commercial Usage |
|
11 ** This file contains pre-release code and may not be distributed. |
|
12 ** You may use this file in accordance with the terms and conditions |
|
13 ** contained in the Technology Preview License Agreement accompanying |
|
14 ** this package. |
|
15 ** |
|
16 ** GNU Lesser General Public License Usage |
|
17 ** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 ** General Public License version 2.1 as published by the Free Software |
|
19 ** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 ** packaging of this file. Please review the following information to |
|
21 ** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 ** |
|
24 ** In addition, as a special exception, Nokia gives you certain additional |
|
25 ** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 ** |
|
28 ** If you have questions regarding the use of this file, please contact |
|
29 ** Nokia at qt-info@nokia.com. |
|
30 ** |
|
31 ** |
|
32 ** |
|
33 ** |
|
34 ** |
|
35 ** |
|
36 ** |
|
37 ** |
|
38 ** $QT_END_LICENSE$ |
|
39 ** |
|
40 ****************************************************************************/ |
|
41 #include "sampleserviceplugin.h" |
|
42 |
|
43 #include <qservicecontext.h> |
|
44 #include <qabstractsecuritysession.h> |
|
45 |
|
46 #include <QtPlugin> |
|
47 #include <QSettings> |
|
48 |
|
49 SampleServicePlugin::~SampleServicePlugin() |
|
50 { |
|
51 } |
|
52 |
|
53 QObject* SampleServicePlugin::createInstance(const QServiceInterfaceDescriptor& descriptor, QServiceContext* context, QAbstractSecuritySession* session) |
|
54 { |
|
55 if ( descriptor.interfaceName() == "com.nokia.qt.bm.TestInterfaceA" ) { |
|
56 return new SampleServicePluginClass(descriptor, context, session); |
|
57 } else if (descriptor.interfaceName() == "com.nokia.qt.bm.TestInterfaceB") { |
|
58 return new DerivedSampleServicePluginClass(descriptor, context, session); |
|
59 } |
|
60 |
|
61 //As per service xml this plugin supports com.nokia.qt.TestInterfaceC as |
|
62 //well but we deliberately return 0 to test behavior on null pointers |
|
63 return 0; |
|
64 } |
|
65 |
|
66 void SampleServicePlugin::installService() |
|
67 { |
|
68 QSettings settings("com.nokia.qt.bm.serviceframework.tests", "SampleServicePlugin"); |
|
69 settings.setValue("installed", true); |
|
70 } |
|
71 |
|
72 void SampleServicePlugin::uninstallService() |
|
73 { |
|
74 QSettings settings("com.nokia.qt.bm.serviceframework.tests", "SampleServicePlugin"); |
|
75 settings.setValue("installed", false); |
|
76 } |
|
77 |
|
78 |
|
79 SampleServicePluginClass::SampleServicePluginClass(const QServiceInterfaceDescriptor& descriptor, QServiceContext* context, QAbstractSecuritySession* session) |
|
80 : m_descriptor(descriptor), |
|
81 m_context(context), |
|
82 m_security(session) |
|
83 { |
|
84 } |
|
85 |
|
86 void SampleServicePluginClass::testSlotOne() |
|
87 { |
|
88 //do something that accesses the internal data |
|
89 m_descriptor.interfaceName(); |
|
90 } |
|
91 |
|
92 DerivedSampleServicePluginClass::DerivedSampleServicePluginClass(const QServiceInterfaceDescriptor& descriptor, QServiceContext* context, QAbstractSecuritySession* session) |
|
93 : SampleServicePluginClass(descriptor,context,session) |
|
94 { |
|
95 } |
|
96 |
|
97 void DerivedSampleServicePluginClass::testSlotOne() |
|
98 { |
|
99 //do something that accesses the internal data |
|
100 m_descriptor.serviceName(); |
|
101 } |
|
102 |
|
103 |
|
104 QServiceInterfaceDescriptor SampleServicePluginClass::descriptor() const |
|
105 { |
|
106 return m_descriptor; |
|
107 } |
|
108 |
|
109 Q_EXPORT_PLUGIN2(sfw_sampleserviceplugin, SampleServicePlugin) |