author | harlekin <harlekin> | 2004-05-29 17:11:23 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-05-29 17:11:23 (UTC) |
commit | f568ff9c68bdc61cbc4482f9b2c6e1096cecaae0 (patch) (unidiff) | |
tree | 656b1216596c578ba672c2c0d25782d24110406a | |
parent | e163b479be800d0b388cf52d046adfc83f5cc1d8 (diff) | |
download | opie-f568ff9c68bdc61cbc4482f9b2c6e1096cecaae0.zip opie-f568ff9c68bdc61cbc4482f9b2c6e1096cecaae0.tar.gz opie-f568ff9c68bdc61cbc4482f9b2c6e1096cecaae0.tar.bz2 |
fix path handling
-rw-r--r-- | libopie2/opiecore/opluginloader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie2/opiecore/opluginloader.cpp b/libopie2/opiecore/opluginloader.cpp index c2dc239..3d286e5 100644 --- a/libopie2/opiecore/opluginloader.cpp +++ b/libopie2/opiecore/opluginloader.cpp | |||
@@ -1,481 +1,481 @@ | |||
1 | /* | 1 | /* |
2 | * LGPLv2 or later | 2 | * LGPLv2 or later |
3 | * zecke@handhelds.org | 3 | * zecke@handhelds.org |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "opluginloader.h" | 6 | #include "opluginloader.h" |
7 | #include "oconfig.h" | 7 | #include "oconfig.h" |
8 | 8 | ||
9 | #include <qpe/qpeapplication.h> | 9 | #include <qpe/qpeapplication.h> |
10 | 10 | ||
11 | #include <qdir.h> | 11 | #include <qdir.h> |
12 | #include <qdict.h> | 12 | #include <qdict.h> |
13 | #include <qtl.h> | 13 | #include <qtl.h> |
14 | #include <qfile.h> | 14 | #include <qfile.h> |
15 | 15 | ||
16 | #include <stdlib.h> | 16 | #include <stdlib.h> |
17 | 17 | ||
18 | 18 | ||
19 | 19 | ||
20 | namespace Opie { | 20 | namespace Opie { |
21 | namespace Core { | 21 | namespace Core { |
22 | namespace Internal { | 22 | namespace Internal { |
23 | struct OPluginLibraryHolder { | 23 | struct OPluginLibraryHolder { |
24 | static OPluginLibraryHolder *self(); | 24 | static OPluginLibraryHolder *self(); |
25 | QLibrary *ref( const QString& ); | 25 | QLibrary *ref( const QString& ); |
26 | void deref( QLibrary* ); | 26 | void deref( QLibrary* ); |
27 | private: | 27 | private: |
28 | 28 | ||
29 | OPluginLibraryHolder(); | 29 | OPluginLibraryHolder(); |
30 | ~OPluginLibraryHolder(); | 30 | ~OPluginLibraryHolder(); |
31 | QDict<QLibrary> m_libs; | 31 | QDict<QLibrary> m_libs; |
32 | static OPluginLibraryHolder* m_self; | 32 | static OPluginLibraryHolder* m_self; |
33 | }; | 33 | }; |
34 | 34 | ||
35 | OPluginLibraryHolder* OPluginLibraryHolder::m_self = 0; | 35 | OPluginLibraryHolder* OPluginLibraryHolder::m_self = 0; |
36 | OPluginLibraryHolder* OPluginLibraryHolder::self() { | 36 | OPluginLibraryHolder* OPluginLibraryHolder::self() { |
37 | if ( !m_self ) | 37 | if ( !m_self ) |
38 | m_self = new OPluginLibraryHolder; | 38 | m_self = new OPluginLibraryHolder; |
39 | 39 | ||
40 | return m_self; | 40 | return m_self; |
41 | } | 41 | } |
42 | 42 | ||
43 | OPluginLibraryHolder::OPluginLibraryHolder() {} | 43 | OPluginLibraryHolder::OPluginLibraryHolder() {} |
44 | OPluginLibraryHolder::~OPluginLibraryHolder() {} | 44 | OPluginLibraryHolder::~OPluginLibraryHolder() {} |
45 | 45 | ||
46 | /* | 46 | /* |
47 | * We do simple ref counting... We will add the QLibrary again | 47 | * We do simple ref counting... We will add the QLibrary again |
48 | * and again to the dictionary and on deref we will pop and pop it | 48 | * and again to the dictionary and on deref we will pop and pop it |
49 | * until there are no more library and we will unload and delete the library | 49 | * until there are no more library and we will unload and delete the library |
50 | * luckily dlopen does some ref counting as well so we don't need | 50 | * luckily dlopen does some ref counting as well so we don't need |
51 | * to hack QPEApplication | 51 | * to hack QPEApplication |
52 | */ | 52 | */ |
53 | QLibrary* OPluginLibraryHolder::ref(const QString& str) { | 53 | QLibrary* OPluginLibraryHolder::ref(const QString& str) { |
54 | QLibrary *lib = m_libs[str]; | 54 | QLibrary *lib = m_libs[str]; |
55 | 55 | ||
56 | /* if not in the dict try to load it */ | 56 | /* if not in the dict try to load it */ |
57 | if ( !lib ) { | 57 | if ( !lib ) { |
58 | lib = new QLibrary( str, QLibrary::Immediately ); | 58 | lib = new QLibrary( str, QLibrary::Immediately ); |
59 | if ( !lib->isLoaded() ) { | 59 | if ( !lib->isLoaded() ) { |
60 | delete lib; | 60 | delete lib; |
61 | return 0l; | 61 | return 0l; |
62 | } | 62 | } |
63 | } | 63 | } |
64 | 64 | ||
65 | /* now refcount one up */ | 65 | /* now refcount one up */ |
66 | m_libs.insert( str, lib ); | 66 | m_libs.insert( str, lib ); |
67 | return lib; | 67 | return lib; |
68 | } | 68 | } |
69 | 69 | ||
70 | /* | 70 | /* |
71 | * 'unshadow' the items until we're the last then unload and delete | 71 | * 'unshadow' the items until we're the last then unload and delete |
72 | */ | 72 | */ |
73 | void OPluginLibraryHolder::deref( QLibrary* lib ) { | 73 | void OPluginLibraryHolder::deref( QLibrary* lib ) { |
74 | if ( !lib ) | 74 | if ( !lib ) |
75 | return; | 75 | return; |
76 | 76 | ||
77 | QString str = lib->library(); | 77 | QString str = lib->library(); |
78 | /* no need to check if the lib was inserted or such */ | 78 | /* no need to check if the lib was inserted or such */ |
79 | (void) m_libs.take( str ); | 79 | (void) m_libs.take( str ); |
80 | if ( !m_libs[str] ) { | 80 | if ( !m_libs[str] ) { |
81 | lib->unload(); | 81 | lib->unload(); |
82 | delete lib; | 82 | delete lib; |
83 | } | 83 | } |
84 | } | 84 | } |
85 | } | 85 | } |
86 | 86 | ||
87 | /** | 87 | /** |
88 | * We want values with 30,29,28 at the beginning of the list | 88 | * We want values with 30,29,28 at the beginning of the list |
89 | */ | 89 | */ |
90 | 90 | ||
91 | bool operator<( const OPluginItem& l, const OPluginItem& r ) { | 91 | bool operator<( const OPluginItem& l, const OPluginItem& r ) { |
92 | return l.position() > r.position(); | 92 | return l.position() > r.position(); |
93 | } | 93 | } |
94 | 94 | ||
95 | bool operator>( const OPluginItem& l, const OPluginItem& r ) { | 95 | bool operator>( const OPluginItem& l, const OPluginItem& r ) { |
96 | return l.position() < r.position(); | 96 | return l.position() < r.position(); |
97 | } | 97 | } |
98 | 98 | ||
99 | bool operator<=( const OPluginItem& l, const OPluginItem& r ) { | 99 | bool operator<=( const OPluginItem& l, const OPluginItem& r ) { |
100 | return l.position() >= r.position(); | 100 | return l.position() >= r.position(); |
101 | } | 101 | } |
102 | 102 | ||
103 | /** | 103 | /** |
104 | * \brief Creates an Empty OPluginItem | 104 | * \brief Creates an Empty OPluginItem |
105 | * | 105 | * |
106 | * create an empty pluginitem. Position is set to -1 and the | 106 | * create an empty pluginitem. Position is set to -1 and the |
107 | * other things are used with the default ctors | 107 | * other things are used with the default ctors |
108 | */ | 108 | */ |
109 | OPluginItem::OPluginItem() | 109 | OPluginItem::OPluginItem() |
110 | : m_pos( -1 ) { | 110 | : m_pos( -1 ) { |
111 | } | 111 | } |
112 | 112 | ||
113 | /** | 113 | /** |
114 | * @todo Create Internal name so we can have the plugin names translated. Or only for the gui? I'm not yet sure | 114 | * @todo Create Internal name so we can have the plugin names translated. Or only for the gui? I'm not yet sure |
115 | * \brief Create an OPluginItem | 115 | * \brief Create an OPluginItem |
116 | * | 116 | * |
117 | * Create a Plugin Item with all information. If you for some reasons | 117 | * Create a Plugin Item with all information. If you for some reasons |
118 | * need to create your own OPluginItems make sure that 'name' is always the same | 118 | * need to create your own OPluginItems make sure that 'name' is always the same |
119 | * as it if used for positions and exclude list. | 119 | * as it if used for positions and exclude list. |
120 | * | 120 | * |
121 | * @param name The if available translated Name | 121 | * @param name The if available translated Name |
122 | * @param path The path to the plugin must be absolute. | 122 | * @param path The path to the plugin must be absolute. |
123 | * @param b If the OPluginItem is enabled or not | 123 | * @param b If the OPluginItem is enabled or not |
124 | * @param pos The position of the plugin if used for sorting | 124 | * @param pos The position of the plugin if used for sorting |
125 | * | 125 | * |
126 | */ | 126 | */ |
127 | OPluginItem::OPluginItem( const QString& name, const QString& path, bool b, int pos ) | 127 | OPluginItem::OPluginItem( const QString& name, const QString& path, bool b, int pos ) |
128 | : m_name( name ), m_path( path ), m_enabled( b ), m_pos( pos ) | 128 | : m_name( name ), m_path( path ), m_enabled( b ), m_pos( pos ) |
129 | {} | 129 | {} |
130 | 130 | ||
131 | /** | 131 | /** |
132 | * \brief simple d'tor | 132 | * \brief simple d'tor |
133 | */ | 133 | */ |
134 | OPluginItem::~OPluginItem() { | 134 | OPluginItem::~OPluginItem() { |
135 | } | 135 | } |
136 | 136 | ||
137 | /** | 137 | /** |
138 | * \brief Test if this Item is Empty and does not represent a loadable plugin | 138 | * \brief Test if this Item is Empty and does not represent a loadable plugin |
139 | * Test if a OPluginItem is empty. A OPluginItem is empty if name and path are empty | 139 | * Test if a OPluginItem is empty. A OPluginItem is empty if name and path are empty |
140 | * ,pos equals -1 and the item is disabled | 140 | * ,pos equals -1 and the item is disabled |
141 | * | 141 | * |
142 | * @see QString::isEmpty() | 142 | * @see QString::isEmpty() |
143 | * | 143 | * |
144 | */ | 144 | */ |
145 | bool OPluginItem::isEmpty()const { | 145 | bool OPluginItem::isEmpty()const { |
146 | if ( m_pos != -1 ) return false; | 146 | if ( m_pos != -1 ) return false; |
147 | if ( m_enabled ) return false; | 147 | if ( m_enabled ) return false; |
148 | if ( !m_name.isEmpty() ) return false; | 148 | if ( !m_name.isEmpty() ) return false; |
149 | if ( !m_path.isEmpty() ) return false; | 149 | if ( !m_path.isEmpty() ) return false; |
150 | 150 | ||
151 | return true; | 151 | return true; |
152 | } | 152 | } |
153 | 153 | ||
154 | /** | 154 | /** |
155 | * \brief test equality | 155 | * \brief test equality |
156 | * operator to test equalness of two OPluginItem | 156 | * operator to test equalness of two OPluginItem |
157 | */ | 157 | */ |
158 | bool OPluginItem::operator==( const OPluginItem& r )const{ | 158 | bool OPluginItem::operator==( const OPluginItem& r )const{ |
159 | if ( m_pos != r.m_pos ) return false; | 159 | if ( m_pos != r.m_pos ) return false; |
160 | if ( m_enabled != r.m_enabled) return false; | 160 | if ( m_enabled != r.m_enabled) return false; |
161 | if ( m_name != r.m_name ) return false; | 161 | if ( m_name != r.m_name ) return false; |
162 | if ( m_path != r.m_path ) return false; | 162 | if ( m_path != r.m_path ) return false; |
163 | return true; | 163 | return true; |
164 | } | 164 | } |
165 | 165 | ||
166 | /** | 166 | /** |
167 | * \brief test non equality | 167 | * \brief test non equality |
168 | * operator to test non-equalness of two OPluginItem | 168 | * operator to test non-equalness of two OPluginItem |
169 | */ | 169 | */ |
170 | bool OPluginItem::operator!=( const OPluginItem& r )const{ | 170 | bool OPluginItem::operator!=( const OPluginItem& r )const{ |
171 | return !( *this == r ); | 171 | return !( *this == r ); |
172 | } | 172 | } |
173 | 173 | ||
174 | /** | 174 | /** |
175 | * \brief returns the name of the plugin | 175 | * \brief returns the name of the plugin |
176 | * return the name of this Plugin | 176 | * return the name of this Plugin |
177 | */ | 177 | */ |
178 | QString OPluginItem::name()const { | 178 | QString OPluginItem::name()const { |
179 | return m_name; | 179 | return m_name; |
180 | } | 180 | } |
181 | 181 | ||
182 | /** | 182 | /** |
183 | * \brief return the path of the plugin | 183 | * \brief return the path of the plugin |
184 | */ | 184 | */ |
185 | QString OPluginItem::path()const { | 185 | QString OPluginItem::path()const { |
186 | return m_path; | 186 | return m_path; |
187 | } | 187 | } |
188 | 188 | ||
189 | /** | 189 | /** |
190 | * \brief Return if this item is enabled. | 190 | * \brief Return if this item is enabled. |
191 | */ | 191 | */ |
192 | bool OPluginItem::isEnabled()const { | 192 | bool OPluginItem::isEnabled()const { |
193 | return m_enabled; | 193 | return m_enabled; |
194 | } | 194 | } |
195 | 195 | ||
196 | /** | 196 | /** |
197 | * \brief return the position of a plugin. | 197 | * \brief return the position of a plugin. |
198 | * return the position of the item | 198 | * return the position of the item |
199 | * -1 is the default value and means normally that the whole items are unsorted. | 199 | * -1 is the default value and means normally that the whole items are unsorted. |
200 | * Higher numbers belong to an upper position. With plugins with the postions 20,19,5,3 | 200 | * Higher numbers belong to an upper position. With plugins with the postions 20,19,5,3 |
201 | * the item with pos 20 would be the first in the list returned by the OGenericPluginLoader | 201 | * the item with pos 20 would be the first in the list returned by the OGenericPluginLoader |
202 | * | 202 | * |
203 | * @see OGenericPluginLoader::allAvailable | 203 | * @see OGenericPluginLoader::allAvailable |
204 | * @see OGenericPluginLoader::filtered | 204 | * @see OGenericPluginLoader::filtered |
205 | */ | 205 | */ |
206 | int OPluginItem::position()const{ | 206 | int OPluginItem::position()const{ |
207 | return m_pos; | 207 | return m_pos; |
208 | } | 208 | } |
209 | 209 | ||
210 | /** | 210 | /** |
211 | * \brief set the name of a plugin | 211 | * \brief set the name of a plugin |
212 | * Set the name of the Plugin Item | 212 | * Set the name of the Plugin Item |
213 | * @param name | 213 | * @param name |
214 | */ | 214 | */ |
215 | void OPluginItem::setName( const QString& name ) { | 215 | void OPluginItem::setName( const QString& name ) { |
216 | m_name = name; | 216 | m_name = name; |
217 | } | 217 | } |
218 | 218 | ||
219 | /** | 219 | /** |
220 | * \brief set the path of a plugin | 220 | * \brief set the path of a plugin |
221 | * Set the path of Plugin Item. The path must be absolute. | 221 | * Set the path of Plugin Item. The path must be absolute. |
222 | * @param name The path of the plugin | 222 | * @param name The path of the plugin |
223 | */ | 223 | */ |
224 | void OPluginItem::setPath( const QString& name ) { | 224 | void OPluginItem::setPath( const QString& name ) { |
225 | m_name = name; | 225 | m_path = name; |
226 | } | 226 | } |
227 | 227 | ||
228 | /** | 228 | /** |
229 | * \brief enable or disable the to load attribute | 229 | * \brief enable or disable the to load attribute |
230 | * Set the Enabled attribute. Such changes won't be saved. If you want to save it | 230 | * Set the Enabled attribute. Such changes won't be saved. If you want to save it |
231 | * use a OPluginManager to configure your plugins manually or Opie::Ui::OPluginConfig | 231 | * use a OPluginManager to configure your plugins manually or Opie::Ui::OPluginConfig |
232 | * for a graphical frontend. | 232 | * for a graphical frontend. |
233 | * | 233 | * |
234 | * @param enabled Enable or Disable the Enabled Attribute | 234 | * @param enabled Enable or Disable the Enabled Attribute |
235 | */ | 235 | */ |
236 | void OPluginItem::setEnabled( bool enabled ) { | 236 | void OPluginItem::setEnabled( bool enabled ) { |
237 | m_enabled = enabled; | 237 | m_enabled = enabled; |
238 | } | 238 | } |
239 | 239 | ||
240 | /** | 240 | /** |
241 | * \brief Set the position. | 241 | * \brief Set the position. |
242 | * Set the position | 242 | * Set the position |
243 | * @param pos The position | 243 | * @param pos The position |
244 | * | 244 | * |
245 | * @see position() | 245 | * @see position() |
246 | */ | 246 | */ |
247 | void OPluginItem::setPosition( int pos ) { | 247 | void OPluginItem::setPosition( int pos ) { |
248 | m_pos = pos; | 248 | m_pos = pos; |
249 | } | 249 | } |
250 | 250 | ||
251 | 251 | ||
252 | 252 | ||
253 | /** | 253 | /** |
254 | * \brief create a PluginLoader | 254 | * \brief create a PluginLoader |
255 | * | 255 | * |
256 | * Create a PluginLoader autoDelete is set to false | 256 | * Create a PluginLoader autoDelete is set to false |
257 | * | 257 | * |
258 | * \code | 258 | * \code |
259 | * Opie::Core::OGenericPluginLoader loader("myapp-plugin"); | 259 | * Opie::Core::OGenericPluginLoader loader("myapp-plugin"); |
260 | * Opie::Core::OPluginItem::List lst = loader.filtered(); | 260 | * Opie::Core::OPluginItem::List lst = loader.filtered(); |
261 | * for(Opie::Core::OPluginItem::List::Iterator it = lst.begin(); it!=lst.end();++it){ | 261 | * for(Opie::Core::OPluginItem::List::Iterator it = lst.begin(); it!=lst.end();++it){ |
262 | * MyIface* iface = static_cast<MyIface*>(loader.load(*it,IID_MyIface)); | 262 | * MyIface* iface = static_cast<MyIface*>(loader.load(*it,IID_MyIface)); |
263 | * } | 263 | * } |
264 | * \endcode | 264 | * \endcode |
265 | * | 265 | * |
266 | * \code | 266 | * \code |
267 | * Opie::Core::OGenericPluginLoader loader("myapp-plugin"); | 267 | * Opie::Core::OGenericPluginLoader loader("myapp-plugin"); |
268 | * Opie::Core::OPluginItem::List lst = loader.filtered(); | 268 | * Opie::Core::OPluginItem::List lst = loader.filtered(); |
269 | * for(Opie::Core::OPluginItem::List::Iterator it = lst.begin(); it!=lst.end();++it){ | 269 | * for(Opie::Core::OPluginItem::List::Iterator it = lst.begin(); it!=lst.end();++it){ |
270 | * MyIface* iface = static_cast<MyIface*>(loader.load(*it,IID_MyIface)); | 270 | * MyIface* iface = static_cast<MyIface*>(loader.load(*it,IID_MyIface)); |
271 | * } | 271 | * } |
272 | * ... | 272 | * ... |
273 | * loader.clear(); | 273 | * loader.clear(); |
274 | * | 274 | * |
275 | * \endcode | 275 | * \endcode |
276 | * | 276 | * |
277 | * @param name The name of the plugin directory. | 277 | * @param name The name of the plugin directory. |
278 | * @param isSorted Tell the PluginLoader if your Plugins are sorted | 278 | * @param isSorted Tell the PluginLoader if your Plugins are sorted |
279 | */ | 279 | */ |
280 | OGenericPluginLoader::OGenericPluginLoader( const QString& name, bool isSorted) | 280 | OGenericPluginLoader::OGenericPluginLoader( const QString& name, bool isSorted) |
281 | : m_dir( name ), m_autoDelete( false ), m_isSafeMode( false ), | 281 | : m_dir( name ), m_autoDelete( false ), m_isSafeMode( false ), |
282 | m_isSorted( isSorted ) | 282 | m_isSorted( isSorted ) |
283 | { | 283 | { |
284 | setPluginDir( QPEApplication::qpeDir() + "/plugins/"+name ); | 284 | setPluginDir( QPEApplication::qpeDir() + "/plugins/"+name ); |
285 | readConfig(); | 285 | readConfig(); |
286 | } | 286 | } |
287 | 287 | ||
288 | 288 | ||
289 | /** | 289 | /** |
290 | * \brief simple d'tor that cleans up depending on autoDelete | 290 | * \brief simple d'tor that cleans up depending on autoDelete |
291 | * | 291 | * |
292 | * calls clear if autoDelete is true. This will release all interfaces | 292 | * calls clear if autoDelete is true. This will release all interfaces |
293 | * and remove the library from this process if the refcount falls to zero | 293 | * and remove the library from this process if the refcount falls to zero |
294 | */ | 294 | */ |
295 | OGenericPluginLoader::~OGenericPluginLoader() { | 295 | OGenericPluginLoader::~OGenericPluginLoader() { |
296 | if ( m_autoDelete ) | 296 | if ( m_autoDelete ) |
297 | clear(); | 297 | clear(); |
298 | } | 298 | } |
299 | 299 | ||
300 | /** | 300 | /** |
301 | * \brief Enable or disable autoDelete on destruction | 301 | * \brief Enable or disable autoDelete on destruction |
302 | * | 302 | * |
303 | * enable autoDelete. This will call clear on the d'tor | 303 | * enable autoDelete. This will call clear on the d'tor |
304 | * | 304 | * |
305 | * @see ~OGenericPluginLoader | 305 | * @see ~OGenericPluginLoader |
306 | * @see clear() | 306 | * @see clear() |
307 | */ | 307 | */ |
308 | void OGenericPluginLoader::setAutoDelete( bool t ) { | 308 | void OGenericPluginLoader::setAutoDelete( bool t ) { |
309 | m_autoDelete = t; | 309 | m_autoDelete = t; |
310 | } | 310 | } |
311 | 311 | ||
312 | /** | 312 | /** |
313 | * \brief See if autoDelete is enabled. | 313 | * \brief See if autoDelete is enabled. |
314 | */ | 314 | */ |
315 | bool OGenericPluginLoader::autoDelete()const{ | 315 | bool OGenericPluginLoader::autoDelete()const{ |
316 | return m_autoDelete; | 316 | return m_autoDelete; |
317 | } | 317 | } |
318 | 318 | ||
319 | /** | 319 | /** |
320 | * \brief unload all loaded Plugins | 320 | * \brief unload all loaded Plugins |
321 | * | 321 | * |
322 | * This will unload all returned QUnknownInterfaces by load. Unload | 322 | * This will unload all returned QUnknownInterfaces by load. Unload |
323 | * will be called. | 323 | * will be called. |
324 | */ | 324 | */ |
325 | void OGenericPluginLoader::clear() { | 325 | void OGenericPluginLoader::clear() { |
326 | QPtrDictIterator<QLibrary> it( m_library ); | 326 | QPtrDictIterator<QLibrary> it( m_library ); |
327 | for ( ;it.current(); ) | 327 | for ( ;it.current(); ) |
328 | unload( static_cast<QUnknownInterface*>( it.currentKey() ) ); | 328 | unload( static_cast<QUnknownInterface*>( it.currentKey() ) ); |
329 | } | 329 | } |
330 | 330 | ||
331 | /** | 331 | /** |
332 | * \brief unload the Plugin and the accompanied Resources. | 332 | * \brief unload the Plugin and the accompanied Resources. |
333 | * | 333 | * |
334 | * This will take the iface from the internal QPtrDict, Release it, | 334 | * This will take the iface from the internal QPtrDict, Release it, |
335 | * and deref the libray used. | 335 | * and deref the libray used. |
336 | * The visibility depends on the QPtrDict. | 336 | * The visibility depends on the QPtrDict. |
337 | * @see QPtrDict::insert | 337 | * @see QPtrDict::insert |
338 | */ | 338 | */ |
339 | void OGenericPluginLoader::unload( QUnknownInterface* iface ) { | 339 | void OGenericPluginLoader::unload( QUnknownInterface* iface ) { |
340 | if ( !iface ) | 340 | if ( !iface ) |
341 | return; | 341 | return; |
342 | 342 | ||
343 | iface->release(); | 343 | iface->release(); |
344 | Internal::OPluginLibraryHolder::self()->deref( m_library.take( iface ) ); | 344 | Internal::OPluginLibraryHolder::self()->deref( m_library.take( iface ) ); |
345 | } | 345 | } |
346 | 346 | ||
347 | /** | 347 | /** |
348 | * \brief The name of the plugins. | 348 | * \brief The name of the plugins. |
349 | * | 349 | * |
350 | * Return the name/type you specified in the constructor. | 350 | * Return the name/type you specified in the constructor. |
351 | * This is at least used by the OPluginManager to find the right config | 351 | * This is at least used by the OPluginManager to find the right config |
352 | */ | 352 | */ |
353 | QString OGenericPluginLoader::name()const { | 353 | QString OGenericPluginLoader::name()const { |
354 | return m_dir; | 354 | return m_dir; |
355 | } | 355 | } |
356 | 356 | ||
357 | 357 | ||
358 | /** | 358 | /** |
359 | * \brief See if loading of a plugin segfaulted | 359 | * \brief See if loading of a plugin segfaulted |
360 | * This tells you | 360 | * This tells you |
361 | * if by previous tries to load, loading crashed your application. | 361 | * if by previous tries to load, loading crashed your application. |
362 | * If isInSafeMode you can use the GUI to configure the plugins prior to loading | 362 | * If isInSafeMode you can use the GUI to configure the plugins prior to loading |
363 | * | 363 | * |
364 | * @return true if prior loading failed | 364 | * @return true if prior loading failed |
365 | */ | 365 | */ |
366 | bool OGenericPluginLoader::isInSafeMode()const { | 366 | bool OGenericPluginLoader::isInSafeMode()const { |
367 | return m_isSafeMode; | 367 | return m_isSafeMode; |
368 | } | 368 | } |
369 | 369 | ||
370 | 370 | ||
371 | /** | 371 | /** |
372 | * \brief Return all Plugins found in the plugins dirs. | 372 | * \brief Return all Plugins found in the plugins dirs. |
373 | * Return the list of all available plugins. This will go through all plugin | 373 | * Return the list of all available plugins. This will go through all plugin |
374 | * directories and search for your type of plugins ( by subdir ) | 374 | * directories and search for your type of plugins ( by subdir ) |
375 | * | 375 | * |
376 | * @param sorted Tell if you want to have the positions sorted. This only makes sense if you | 376 | * @param sorted Tell if you want to have the positions sorted. This only makes sense if you |
377 | */ | 377 | */ |
378 | OPluginItem::List OGenericPluginLoader::allAvailable( bool sorted )const { | 378 | OPluginItem::List OGenericPluginLoader::allAvailable( bool sorted )const { |
379 | OPluginItem::List lst; | 379 | OPluginItem::List lst; |
380 | for ( QStringList::ConstIterator it = m_plugDirs.begin(); it != m_plugDirs.end(); ++it ) | 380 | for ( QStringList::ConstIterator it = m_plugDirs.begin(); it != m_plugDirs.end(); ++it ) |
381 | lst += plugins( *it, sorted, false ); | 381 | lst += plugins( *it, sorted, false ); |
382 | 382 | ||
383 | if ( sorted ) | 383 | if ( sorted ) |
384 | qHeapSort( lst ); | 384 | qHeapSort( lst ); |
385 | return lst; | 385 | return lst; |
386 | } | 386 | } |
387 | 387 | ||
388 | /** | 388 | /** |
389 | * \brief Return only the enabled plugins | 389 | * \brief Return only the enabled plugins |
390 | * Return only activated plugins. | 390 | * Return only activated plugins. |
391 | * | 391 | * |
392 | * @param sorted If the list should be sorted | 392 | * @param sorted If the list should be sorted |
393 | */ | 393 | */ |
394 | OPluginItem::List OGenericPluginLoader::filtered( bool sorted )const { | 394 | OPluginItem::List OGenericPluginLoader::filtered( bool sorted )const { |
395 | OPluginItem::List lst; | 395 | OPluginItem::List lst; |
396 | for ( QStringList::ConstIterator it = m_plugDirs.begin(); it != m_plugDirs.end(); ++it ) | 396 | for ( QStringList::ConstIterator it = m_plugDirs.begin(); it != m_plugDirs.end(); ++it ) |
397 | lst += plugins( *it, sorted, true ); | 397 | lst += plugins( *it, sorted, true ); |
398 | 398 | ||
399 | if ( sorted ) | 399 | if ( sorted ) |
400 | qHeapSort( lst ); | 400 | qHeapSort( lst ); |
401 | return lst; | 401 | return lst; |
402 | } | 402 | } |
403 | 403 | ||
404 | 404 | ||
405 | /** | 405 | /** |
406 | * \brief Load a OPluginItem for the specified interface | 406 | * \brief Load a OPluginItem for the specified interface |
407 | * This will open the resource of the OPluginItem::path() and then will query | 407 | * This will open the resource of the OPluginItem::path() and then will query |
408 | * if the Interface specified in the uuid is available and then will manage the | 408 | * if the Interface specified in the uuid is available and then will manage the |
409 | * resource and Interface. | 409 | * resource and Interface. |
410 | * | 410 | * |
411 | * @param item The OPluginItem that should be loaded | 411 | * @param item The OPluginItem that should be loaded |
412 | * @param uuid The Interface to query for | 412 | * @param uuid The Interface to query for |
413 | * | 413 | * |
414 | * @return Either 0 in case of failure or the Plugin as QUnknownInterface* | 414 | * @return Either 0 in case of failure or the Plugin as QUnknownInterface* |
415 | */ | 415 | */ |
416 | QUnknownInterface* OGenericPluginLoader::load( const OPluginItem& item, const QUuid& uuid) { | 416 | QUnknownInterface* OGenericPluginLoader::load( const OPluginItem& item, const QUuid& uuid) { |
417 | /* | 417 | /* |
418 | * Check if there could be a library | 418 | * Check if there could be a library |
419 | */ | 419 | */ |
420 | QString pa = item.path(); | 420 | QString pa = item.path(); |
421 | if ( pa.isEmpty() ) | 421 | if ( pa.isEmpty() ) |
422 | return 0l; | 422 | return 0l; |
423 | 423 | ||
424 | /* | 424 | /* |
425 | * See if we get a library | 425 | * See if we get a library |
426 | * return if we've none | 426 | * return if we've none |
427 | */ | 427 | */ |
428 | setSafeMode( pa, true ); | 428 | setSafeMode( pa, true ); |
429 | QLibrary *lib = Internal::OPluginLibraryHolder::self()->ref( pa ); | 429 | QLibrary *lib = Internal::OPluginLibraryHolder::self()->ref( pa ); |
430 | if ( !lib ) { | 430 | if ( !lib ) { |
431 | setSafeMode(); | 431 | setSafeMode(); |
432 | return 0l; | 432 | return 0l; |
433 | } | 433 | } |
434 | 434 | ||
435 | /** | 435 | /** |
436 | * try to load the plugin and just in case initialize the pointer to a pointer again | 436 | * try to load the plugin and just in case initialize the pointer to a pointer again |
437 | */ | 437 | */ |
438 | QUnknownInterface* iface=0; | 438 | QUnknownInterface* iface=0; |
439 | if ( lib->queryInterface( uuid, &iface ) == QS_OK ) { | 439 | if ( lib->queryInterface( uuid, &iface ) == QS_OK ) { |
440 | installTranslators(pa.left( pa.find("."))); | 440 | installTranslators(pa.left( pa.find("."))); |
441 | m_library.insert( iface, lib ); | 441 | m_library.insert( iface, lib ); |
442 | }else | 442 | }else |
443 | iface = 0; | 443 | iface = 0; |
444 | 444 | ||
445 | setSafeMode(); | 445 | setSafeMode(); |
446 | 446 | ||
447 | return iface; | 447 | return iface; |
448 | } | 448 | } |
449 | 449 | ||
450 | /** | 450 | /** |
451 | * @internal and reads in the safe mode | 451 | * @internal and reads in the safe mode |
452 | */ | 452 | */ |
453 | void OGenericPluginLoader::readConfig() { | 453 | void OGenericPluginLoader::readConfig() { |
454 | 454 | ||
455 | 455 | ||
456 | /* read the config for SafeMode */ | 456 | /* read the config for SafeMode */ |
457 | OConfig conf( m_dir + "-odpplugins" ); | 457 | OConfig conf( m_dir + "-odpplugins" ); |
458 | conf.setGroup( "General" ); | 458 | conf.setGroup( "General" ); |
459 | m_isSafeMode = conf.readBoolEntry( "SafeMode", false ); | 459 | m_isSafeMode = conf.readBoolEntry( "SafeMode", false ); |
460 | } | 460 | } |
461 | 461 | ||
462 | /** | 462 | /** |
463 | * @internal Enter or leave SafeMode | 463 | * @internal Enter or leave SafeMode |
464 | */ | 464 | */ |
465 | void OGenericPluginLoader::setSafeMode(const QString& str, bool b) { | 465 | void OGenericPluginLoader::setSafeMode(const QString& str, bool b) { |
466 | OConfig conf( m_dir + "-odpplugins" ); | 466 | OConfig conf( m_dir + "-odpplugins" ); |
467 | conf.setGroup( "General" ); | 467 | conf.setGroup( "General" ); |
468 | conf.writeEntry( "SafeMode", b ); | 468 | conf.writeEntry( "SafeMode", b ); |
469 | conf.writeEntry( "CrashedPlugin", str ); | 469 | conf.writeEntry( "CrashedPlugin", str ); |
470 | } | 470 | } |
471 | 471 | ||
472 | /** | 472 | /** |
473 | * @internal | 473 | * @internal |
474 | * | 474 | * |
475 | * Set the List of Plugin Dirs to lst. Currently only QPEApplication::qpeDir()+"/plugins/"+mytype | 475 | * Set the List of Plugin Dirs to lst. Currently only QPEApplication::qpeDir()+"/plugins/"+mytype |
476 | * is used as plugin dir | 476 | * is used as plugin dir |
477 | */ | 477 | */ |
478 | void OGenericPluginLoader::setPluginDirs( const QStringList& lst ) { | 478 | void OGenericPluginLoader::setPluginDirs( const QStringList& lst ) { |
479 | m_plugDirs = lst; | 479 | m_plugDirs = lst; |
480 | } | 480 | } |
481 | 481 | ||
@@ -570,321 +570,321 @@ OPluginItem::List OGenericPluginLoader::plugins( const QString& _dir, bool sorte | |||
570 | OPluginItem item( str, _dir + "/" + *it ); | 570 | OPluginItem item( str, _dir + "/" + *it ); |
571 | 571 | ||
572 | bool ex = excludedMap.contains( str ); | 572 | bool ex = excludedMap.contains( str ); |
573 | /* | 573 | /* |
574 | * if disabled but we should show all mark it as disabled | 574 | * if disabled but we should show all mark it as disabled |
575 | * else continue because we don't want to add the item | 575 | * else continue because we don't want to add the item |
576 | * else if sorted we assign the right position | 576 | * else if sorted we assign the right position |
577 | */ | 577 | */ |
578 | if ( ex && !disabled) | 578 | if ( ex && !disabled) |
579 | item.setEnabled( false ); | 579 | item.setEnabled( false ); |
580 | else if ( ex && disabled ) | 580 | else if ( ex && disabled ) |
581 | continue; | 581 | continue; |
582 | else if ( sorted ) | 582 | else if ( sorted ) |
583 | item.setPosition( positionMap[str] ); | 583 | item.setPosition( positionMap[str] ); |
584 | 584 | ||
585 | lst.append( item ); | 585 | lst.append( item ); |
586 | } | 586 | } |
587 | 587 | ||
588 | return lst; | 588 | return lst; |
589 | } | 589 | } |
590 | 590 | ||
591 | /** | 591 | /** |
592 | * @internal generate a list of languages from $LANG | 592 | * @internal generate a list of languages from $LANG |
593 | */ | 593 | */ |
594 | QStringList OGenericPluginLoader::languageList() { | 594 | QStringList OGenericPluginLoader::languageList() { |
595 | if ( m_languages.isEmpty() ) { | 595 | if ( m_languages.isEmpty() ) { |
596 | /* | 596 | /* |
597 | * be_BY.CP1251 We will add, be_BY.CP1251,be_BY,be | 597 | * be_BY.CP1251 We will add, be_BY.CP1251,be_BY,be |
598 | * to our list of languages. | 598 | * to our list of languages. |
599 | */ | 599 | */ |
600 | QString str = ::getenv( "LANG" ); | 600 | QString str = ::getenv( "LANG" ); |
601 | m_languages += str; | 601 | m_languages += str; |
602 | int pos = str.find( '.' ); | 602 | int pos = str.find( '.' ); |
603 | 603 | ||
604 | if ( pos > 0 ) | 604 | if ( pos > 0 ) |
605 | m_languages += str.left( pos ); | 605 | m_languages += str.left( pos ); |
606 | 606 | ||
607 | int n_pos = str.find( '_' ); | 607 | int n_pos = str.find( '_' ); |
608 | if ( pos > 0 && n_pos >= pos ) | 608 | if ( pos > 0 && n_pos >= pos ) |
609 | m_languages += str.left( n_pos ); | 609 | m_languages += str.left( n_pos ); |
610 | 610 | ||
611 | } | 611 | } |
612 | return m_languages; | 612 | return m_languages; |
613 | } | 613 | } |
614 | 614 | ||
615 | /** | 615 | /** |
616 | * @internal | 616 | * @internal |
617 | * Tries to install languages using the languageList for the type | 617 | * Tries to install languages using the languageList for the type |
618 | */ | 618 | */ |
619 | void OGenericPluginLoader::installTranslators(const QString& type) { | 619 | void OGenericPluginLoader::installTranslators(const QString& type) { |
620 | QStringList lst = languageList(); | 620 | QStringList lst = languageList(); |
621 | 621 | ||
622 | /* | 622 | /* |
623 | * for each language and maybe later for each language dir... | 623 | * for each language and maybe later for each language dir... |
624 | * try to load a Translator | 624 | * try to load a Translator |
625 | */ | 625 | */ |
626 | for ( QStringList::Iterator it = lst.begin(); it != lst.end(); ++it ) { | 626 | for ( QStringList::Iterator it = lst.begin(); it != lst.end(); ++it ) { |
627 | QTranslator* trans = new QTranslator( qApp ); | 627 | QTranslator* trans = new QTranslator( qApp ); |
628 | QString tfn = QPEApplication::qpeDir()+"/i18n/" + *it + "/" + type + ".qm" ; | 628 | QString tfn = QPEApplication::qpeDir()+"/i18n/" + *it + "/" + type + ".qm" ; |
629 | 629 | ||
630 | /* | 630 | /* |
631 | * If loaded then install else clean up and don't leak | 631 | * If loaded then install else clean up and don't leak |
632 | */ | 632 | */ |
633 | if ( trans->load( tfn ) ) | 633 | if ( trans->load( tfn ) ) |
634 | qApp->installTranslator( trans ); | 634 | qApp->installTranslator( trans ); |
635 | else | 635 | else |
636 | delete trans; | 636 | delete trans; |
637 | } | 637 | } |
638 | } | 638 | } |
639 | 639 | ||
640 | /** | 640 | /** |
641 | * \brief Simple c'tor. | 641 | * \brief Simple c'tor. |
642 | * | 642 | * |
643 | * Simple C'tor same as the one of the base class. Additional this | 643 | * Simple C'tor same as the one of the base class. Additional this |
644 | * class can cast for you if you nee it. | 644 | * class can cast for you if you nee it. |
645 | * | 645 | * |
646 | * | 646 | * |
647 | * @param name The name of your plugin class | 647 | * @param name The name of your plugin class |
648 | * @param sorted If plugins are sorted | 648 | * @param sorted If plugins are sorted |
649 | * | 649 | * |
650 | * @see OGenericPluginLoader | 650 | * @see OGenericPluginLoader |
651 | */ | 651 | */ |
652 | OPluginLoader::OPluginLoader( const QString& name, bool sorted ) | 652 | OPluginLoader::OPluginLoader( const QString& name, bool sorted ) |
653 | : OGenericPluginLoader( name, sorted ) | 653 | : OGenericPluginLoader( name, sorted ) |
654 | { | 654 | { |
655 | } | 655 | } |
656 | 656 | ||
657 | /** | 657 | /** |
658 | * d'tor | 658 | * d'tor |
659 | * @see OGenericPluginLoader::~OGenericPluginLoader | 659 | * @see OGenericPluginLoader::~OGenericPluginLoader |
660 | */ | 660 | */ |
661 | OPluginLoader::~OPluginLoader() { | 661 | OPluginLoader::~OPluginLoader() { |
662 | } | 662 | } |
663 | 663 | ||
664 | /** | 664 | /** |
665 | * \brief C'Tor using a OGenericPluginLoader | 665 | * \brief C'Tor using a OGenericPluginLoader |
666 | * The C'tor. Pass your OGenericPluginLoader to manage | 666 | * The C'tor. Pass your OGenericPluginLoader to manage |
667 | * OGenericPluginLoader::allAvailable plugins. | 667 | * OGenericPluginLoader::allAvailable plugins. |
668 | * | 668 | * |
669 | * | 669 | * |
670 | * @param loader A Pointer to your OGenericPluginLoader | 670 | * @param loader A Pointer to your OGenericPluginLoader |
671 | * @param name The name | 671 | * @param name The name |
672 | */ | 672 | */ |
673 | OPluginManager::OPluginManager( OGenericPluginLoader* loader) | 673 | OPluginManager::OPluginManager( OGenericPluginLoader* loader) |
674 | : m_loader( loader ), m_isSorted( false ) | 674 | : m_loader( loader ), m_isSorted( false ) |
675 | { | 675 | { |
676 | } | 676 | } |
677 | 677 | ||
678 | /** | 678 | /** |
679 | * \brief Overloaded c'tor using a List of Plugins and a type name | 679 | * \brief Overloaded c'tor using a List of Plugins and a type name |
680 | * Overloaded Constructor to work with a 'Type' of plugins | 680 | * Overloaded Constructor to work with a 'Type' of plugins |
681 | * and a correspending list of those. In this case calling load | 681 | * and a correspending list of those. In this case calling load |
682 | * is a no operation. | 682 | * is a no operation. |
683 | * | 683 | * |
684 | * @param name The name of your plugin ('today','inputmethods','applets') | 684 | * @param name The name of your plugin ('today','inputmethods','applets') |
685 | * @param lst A List with plugins of your type to manage | 685 | * @param lst A List with plugins of your type to manage |
686 | * @param isSorted If the List should be treated sorted | 686 | * @param isSorted If the List should be treated sorted |
687 | */ | 687 | */ |
688 | OPluginManager::OPluginManager( const QString& name, const OPluginItem::List& lst, bool isSorted) | 688 | OPluginManager::OPluginManager( const QString& name, const OPluginItem::List& lst, bool isSorted) |
689 | : m_loader( 0l ), m_cfgName( name ), m_plugins( lst ), m_isSorted( isSorted ) | 689 | : m_loader( 0l ), m_cfgName( name ), m_plugins( lst ), m_isSorted( isSorted ) |
690 | { | 690 | { |
691 | } | 691 | } |
692 | 692 | ||
693 | /** | 693 | /** |
694 | * \brief A simple d'tor | 694 | * \brief A simple d'tor |
695 | */ | 695 | */ |
696 | OPluginManager::~OPluginManager() { | 696 | OPluginManager::~OPluginManager() { |
697 | } | 697 | } |
698 | 698 | ||
699 | /** | 699 | /** |
700 | * \brief Return the OPluginItem where loading is likely to have crashed on. | 700 | * \brief Return the OPluginItem where loading is likely to have crashed on. |
701 | 701 | ||
702 | * Return the Item that made the OGenericPluginLoader crash | 702 | * Return the Item that made the OGenericPluginLoader crash |
703 | * the returned OPluginItem could be empty if no crash occured | 703 | * the returned OPluginItem could be empty if no crash occured |
704 | * which should apply most of the time. It could also be empty if the crashed | 704 | * which should apply most of the time. It could also be empty if the crashed |
705 | * plugin is not in the current list of available/managed plugins | 705 | * plugin is not in the current list of available/managed plugins |
706 | * | 706 | * |
707 | * @see OPluginItem::isEmpty | 707 | * @see OPluginItem::isEmpty |
708 | * @return OPluginItem that crashed the loader | 708 | * @return OPluginItem that crashed the loader |
709 | */ | 709 | */ |
710 | OPluginItem OPluginManager::crashedPlugin()const { | 710 | OPluginItem OPluginManager::crashedPlugin()const { |
711 | return m_crashed; | 711 | return m_crashed; |
712 | } | 712 | } |
713 | 713 | ||
714 | /** | 714 | /** |
715 | * \brief Return a list of plugins that are managed by this OPluginManager | 715 | * \brief Return a list of plugins that are managed by this OPluginManager |
716 | * | 716 | * |
717 | * Return the list of managed plugins. This could either result | 717 | * Return the list of managed plugins. This could either result |
718 | * from passing a OGenericPluginLoader and calling load or by | 718 | * from passing a OGenericPluginLoader and calling load or by |
719 | * giving name and a list of plugins. | 719 | * giving name and a list of plugins. |
720 | */ | 720 | */ |
721 | OPluginItem::List OPluginManager::managedPlugins()const { | 721 | OPluginItem::List OPluginManager::managedPlugins()const { |
722 | return m_plugins; | 722 | return m_plugins; |
723 | } | 723 | } |
724 | 724 | ||
725 | /** | 725 | /** |
726 | * \brief Set the position of the items | 726 | * \brief Set the position of the items |
727 | * | 727 | * |
728 | * Replace the OPluginItem with the name and path and this way | 728 | * Replace the OPluginItem with the name and path and this way |
729 | * apply the new position. The search is linear and this way O(n/2) | 729 | * apply the new position. The search is linear and this way O(n/2) |
730 | * You still need to call save() to make your changes effective. After saving | 730 | * You still need to call save() to make your changes effective. After saving |
731 | * a call to OGenericPluginLoader::filtered() returns the newly configured order and items | 731 | * a call to OGenericPluginLoader::filtered() returns the newly configured order and items |
732 | * | 732 | * |
733 | * @param item The OPluginItem to be replaced internall | 733 | * @param item The OPluginItem to be replaced internall |
734 | * | 734 | * |
735 | */ | 735 | */ |
736 | void OPluginManager::setPosition( const OPluginItem& item) { | 736 | void OPluginManager::setPosition( const OPluginItem& item) { |
737 | replace( item ); | 737 | replace( item ); |
738 | } | 738 | } |
739 | 739 | ||
740 | /** | 740 | /** |
741 | * \brief Enable the item specified as argument | 741 | * \brief Enable the item specified as argument |
742 | * | 742 | * |
743 | * This will make sure that OPluginItem::setEnabled is called and then will replace | 743 | * This will make sure that OPluginItem::setEnabled is called and then will replace |
744 | * the item with one that matches name and path internally. | 744 | * the item with one that matches name and path internally. |
745 | * @see setPosition | 745 | * @see setPosition |
746 | * | 746 | * |
747 | * @param the Item to enable | 747 | * @param the Item to enable |
748 | */ | 748 | */ |
749 | void OPluginManager::enable( const OPluginItem& item ) { | 749 | void OPluginManager::enable( const OPluginItem& item ) { |
750 | setEnabled( item, true ); | 750 | setEnabled( item, true ); |
751 | } | 751 | } |
752 | 752 | ||
753 | /** | 753 | /** |
754 | * \brief disable the Item. | 754 | * \brief disable the Item. |
755 | * | 755 | * |
756 | * Disable the OPluginItem. Same applies as in | 756 | * Disable the OPluginItem. Same applies as in |
757 | * @see setPosition and @see enable | 757 | * @see setPosition and @see enable |
758 | * | 758 | * |
759 | * @param item Item to disable | 759 | * @param item Item to disable |
760 | */ | 760 | */ |
761 | void OPluginManager::disable( const OPluginItem& item) { | 761 | void OPluginManager::disable( const OPluginItem& item) { |
762 | setEnabled( item, false ); | 762 | setEnabled( item, false ); |
763 | } | 763 | } |
764 | 764 | ||
765 | /** | 765 | /** |
766 | * \brief Enable or disable the OPluginItem. | 766 | * \brief Enable or disable the OPluginItem. |
767 | * Depending on the value of the parameter this will either disable | 767 | * Depending on the value of the parameter this will either disable |
768 | * or enable the pluginitem. | 768 | * or enable the pluginitem. |
769 | * Beside that same as in @see disable, @see enable, @see setPosition | 769 | * Beside that same as in @see disable, @see enable, @see setPosition |
770 | * applies. | 770 | * applies. |
771 | * | 771 | * |
772 | * @param _item The OPluginItem to enable or to disable. | 772 | * @param _item The OPluginItem to enable or to disable. |
773 | * @param b Enable or disable the plugin. | 773 | * @param b Enable or disable the plugin. |
774 | * | 774 | * |
775 | */ | 775 | */ |
776 | void OPluginManager::setEnabled( const OPluginItem& _item, bool b ) { | 776 | void OPluginManager::setEnabled( const OPluginItem& _item, bool b ) { |
777 | OPluginItem item = _item; | 777 | OPluginItem item = _item; |
778 | item.setEnabled( b ); | 778 | item.setEnabled( b ); |
779 | replace( item ); | 779 | replace( item ); |
780 | } | 780 | } |
781 | 781 | ||
782 | /** | 782 | /** |
783 | * \brief Load necessary information after constructing the object | 783 | * \brief Load necessary information after constructing the object |
784 | * If you speified a OGenericPluginLoader you need to call this method | 784 | * If you speified a OGenericPluginLoader you need to call this method |
785 | * so that this manager knows what to manage and have a right value for \sa crashedPlugin | 785 | * so that this manager knows what to manage and have a right value for \sa crashedPlugin |
786 | * For the name and the list of plugins this does only try to find out the crashed plugin | 786 | * For the name and the list of plugins this does only try to find out the crashed plugin |
787 | */ | 787 | */ |
788 | void OPluginManager::load() { | 788 | void OPluginManager::load() { |
789 | OConfig cfg( configName() ); | 789 | OConfig cfg( configName() ); |
790 | cfg.setGroup( "General" ); | 790 | cfg.setGroup( "General" ); |
791 | QString crashedPath = cfg.readEntry( "CrashedPlugin" ); | 791 | QString crashedPath = cfg.readEntry( "CrashedPlugin" ); |
792 | 792 | ||
793 | /* if we've a loader this applies if we were called from the first part */ | 793 | /* if we've a loader this applies if we were called from the first part */ |
794 | if ( m_loader ) | 794 | if ( m_loader ) |
795 | m_plugins = m_loader->allAvailable( m_loader->isSorted() ); | 795 | m_plugins = m_loader->allAvailable( m_loader->isSorted() ); |
796 | 796 | ||
797 | /* fast and normal route if we did not crash... */ | 797 | /* fast and normal route if we did not crash... */ |
798 | if ( crashedPath.isEmpty() ) | 798 | if ( crashedPath.isEmpty() ) |
799 | return; | 799 | return; |
800 | 800 | ||
801 | /* lets try to find the plugin path and this way the associated item */ | 801 | /* lets try to find the plugin path and this way the associated item */ |
802 | for ( OPluginItem::List::Iterator it = m_plugins.begin(); it != m_plugins.end(); ++it ) | 802 | for ( OPluginItem::List::Iterator it = m_plugins.begin(); it != m_plugins.end(); ++it ) |
803 | if ( (*it).path() == crashedPath ) { | 803 | if ( (*it).path() == crashedPath ) { |
804 | m_crashed = *it; | 804 | m_crashed = *it; |
805 | break; | 805 | break; |
806 | } | 806 | } |
807 | } | 807 | } |
808 | 808 | ||
809 | 809 | ||
810 | /** | 810 | /** |
811 | * \brief Save the values and this way make it available. | 811 | * \brief Save the values and this way make it available. |
812 | * | 812 | * |
813 | * Save the current set of data. A call to @see OGenericPluginLoader::filtered | 813 | * Save the current set of data. A call to @see OGenericPluginLoader::filtered |
814 | * now would return your saved changes. | 814 | * now would return your saved changes. |
815 | */ | 815 | */ |
816 | void OPluginManager::save() { | 816 | void OPluginManager::save() { |
817 | QMap<QString, QStringList> excluded; // map for path to excluded name | 817 | QMap<QString, QStringList> excluded; // map for path to excluded name |
818 | QMap<QString, QStringList> positions; // if positions matter contains splitted up by dirs | 818 | QMap<QString, QStringList> positions; // if positions matter contains splitted up by dirs |
819 | bool sorted = m_loader ? m_loader->isSorted() : m_isSorted; | 819 | bool sorted = m_loader ? m_loader->isSorted() : m_isSorted; |
820 | 820 | ||
821 | /* | 821 | /* |
822 | * We will create some maps for the groups to include positions a | 822 | * We will create some maps for the groups to include positions a |
823 | */ | 823 | */ |
824 | for ( OPluginItem::List::Iterator it = m_plugins.begin(); it != m_plugins.end(); ++it ) { | 824 | for ( OPluginItem::List::Iterator it = m_plugins.begin(); it != m_plugins.end(); ++it ) { |
825 | OPluginItem item = *it; | 825 | OPluginItem item = *it; |
826 | QString path = QFileInfo( item.path() ).filePath(); | 826 | QString path = QFileInfo( item.path() ).dirPath(true); |
827 | if ( sorted ) { | 827 | if ( sorted ) { |
828 | positions[path].append( item.name() ); | 828 | positions[path].append( item.name() ); |
829 | positions[path].append( QString::number( item.position() ) ); | 829 | positions[path].append( QString::number( item.position() ) ); |
830 | } | 830 | } |
831 | 831 | ||
832 | if ( !item.isEnabled() ) | 832 | if ( !item.isEnabled() ) |
833 | excluded[path].append( item.name() ); | 833 | excluded[path].append( item.name() ); |
834 | } | 834 | } |
835 | 835 | ||
836 | /* | 836 | /* |
837 | * The code below wouldn't work because we can't delete groups/keys from the config | 837 | * The code below wouldn't work because we can't delete groups/keys from the config |
838 | * ### for ODP make Config right! | 838 | * ### for ODP make Config right! |
839 | */ | 839 | */ |
840 | // if ( excluded.isEmpty() && positions.isEmpty() ) return; | 840 | // if ( excluded.isEmpty() && positions.isEmpty() ) return; |
841 | /* | 841 | /* |
842 | * Now safe for each path | 842 | * Now safe for each path |
843 | */ | 843 | */ |
844 | OConfig cfg( configName() ); | 844 | OConfig cfg( configName() ); |
845 | 845 | ||
846 | /* safe excluded items */ | 846 | /* safe excluded items */ |
847 | for ( QMap<QString, QStringList>::Iterator it = excluded.begin(); it != excluded.end(); ++it ) { | 847 | for ( QMap<QString, QStringList>::Iterator it = excluded.begin(); it != excluded.end(); ++it ) { |
848 | OConfigGroupSaver saver( &cfg, it.key() ); | 848 | OConfigGroupSaver saver( &cfg, it.key() ); |
849 | cfg.writeEntry("Excluded", it.data(), ',' ); | 849 | cfg.writeEntry("Excluded", it.data(), ',' ); |
850 | } | 850 | } |
851 | 851 | ||
852 | /* safe positions we could also see if positions.contains(path) and remove/write in the above loop | 852 | /* safe positions we could also see if positions.contains(path) and remove/write in the above loop |
853 | * ### Write a Test Suite that can profile these runs... | 853 | * ### Write a Test Suite that can profile these runs... |
854 | */ | 854 | */ |
855 | for ( QMap<QString, QStringList>::Iterator it = positions.begin(); it != positions.end(); ++it ) { | 855 | for ( QMap<QString, QStringList>::Iterator it = positions.begin(); it != positions.end(); ++it ) { |
856 | OConfigGroupSaver saver( &cfg, it.key() ); | 856 | OConfigGroupSaver saver( &cfg, it.key() ); |
857 | cfg.writeEntry("Positions", it.data(), '.' ); | 857 | cfg.writeEntry("Positions", it.data(), '.' ); |
858 | } | 858 | } |
859 | } | 859 | } |
860 | 860 | ||
861 | /** | 861 | /** |
862 | * @internal | 862 | * @internal |
863 | */ | 863 | */ |
864 | QString OPluginManager::configName()const { | 864 | QString OPluginManager::configName()const { |
865 | QString str = m_loader ? m_loader->name() : m_cfgName; | 865 | QString str = m_loader ? m_loader->name() : m_cfgName; |
866 | return str + "-odpplugins"; | 866 | return str + "-odpplugins"; |
867 | } | 867 | } |
868 | 868 | ||
869 | /** | 869 | /** |
870 | * @internal.. replace in m_plugins by path... this is linear search O(n/2) | 870 | * @internal.. replace in m_plugins by path... this is linear search O(n/2) |
871 | */ | 871 | */ |
872 | void OPluginManager::replace( const OPluginItem& item ) { | 872 | void OPluginManager::replace( const OPluginItem& item ) { |
873 | OPluginItem _item; | 873 | OPluginItem _item; |
874 | 874 | ||
875 | /* for all plugins */ | 875 | /* for all plugins */ |
876 | for ( OPluginItem::List::Iterator it=m_plugins.begin();it != m_plugins.end(); ++it ) { | 876 | for ( OPluginItem::List::Iterator it=m_plugins.begin();it != m_plugins.end(); ++it ) { |
877 | _item = *it; | 877 | _item = *it; |
878 | /* if path and name are the same we will remove, readd and return */ | 878 | /* if path and name are the same we will remove, readd and return */ |
879 | if ( _item.path() == item.path() && | 879 | if ( _item.path() == item.path() && |
880 | _item.name() == item.name() ) { | 880 | _item.name() == item.name() ) { |
881 | it = m_plugins.remove( it ); | 881 | it = m_plugins.remove( it ); |
882 | m_plugins.append( item ); | 882 | m_plugins.append( item ); |
883 | return; | 883 | return; |
884 | } | 884 | } |
885 | 885 | ||
886 | } | 886 | } |
887 | } | 887 | } |
888 | 888 | ||
889 | } | 889 | } |
890 | } | 890 | } |