Branch data Line data Source code
1 : : /***************************************************************************
2 : : qgsstyle.cpp
3 : : ---------------------
4 : : begin : November 2009
5 : : copyright : (C) 2009 by Martin Dobias
6 : : email : wonder dot sk at gmail dot com
7 : : ***************************************************************************
8 : : * *
9 : : * This program is free software; you can redistribute it and/or modify *
10 : : * it under the terms of the GNU General Public License as published by *
11 : : * the Free Software Foundation; either version 2 of the License, or *
12 : : * (at your option) any later version. *
13 : : * *
14 : : ***************************************************************************/
15 : :
16 : : #include "qgsstyle.h"
17 : :
18 : : #include "qgssymbol.h"
19 : : #include "qgscolorramp.h"
20 : : #include "qgssymbollayerregistry.h"
21 : : #include "qgsapplication.h"
22 : : #include "qgslogger.h"
23 : : #include "qgsreadwritecontext.h"
24 : : #include "qgssettings.h"
25 : : #include "qgslegendpatchshape.h"
26 : : #include "qgslinestring.h"
27 : : #include "qgspolygon.h"
28 : : #include "qgsmarkersymbollayer.h"
29 : : #include "qgslinesymbollayer.h"
30 : : #include "qgsfillsymbollayer.h"
31 : : #include "qgsruntimeprofiler.h"
32 : : #include "qgsabstract3dsymbol.h"
33 : : #include "qgs3dsymbolregistry.h"
34 : :
35 : : #include <QDomDocument>
36 : : #include <QDomElement>
37 : : #include <QDomNode>
38 : : #include <QDomNodeList>
39 : : #include <QFile>
40 : : #include <QTextStream>
41 : : #include <QByteArray>
42 : : #include <QFileInfo>
43 : :
44 : : #include <sqlite3.h>
45 : : #include "qgssqliteutils.h"
46 : :
47 : : #define STYLE_CURRENT_VERSION "2"
48 : :
49 : : /**
50 : : * Columns available in the legend patch table.
51 : : */
52 : : enum LegendPatchTable
53 : : {
54 : : LegendPatchTableId, //!< Legend patch ID
55 : : LegendPatchTableName, //!< Legend patch name
56 : : LegendPatchTableXML, //!< Legend patch definition (as XML)
57 : : LegendPatchTableFavoriteId, //!< Legend patch is favorite flag
58 : : };
59 : :
60 : : /**
61 : : * Columns available in the 3d symbol table.
62 : : */
63 : : enum Symbol3DTable
64 : : {
65 : : Symbol3DTableId, //!< 3d symbol ID
66 : : Symbol3DTableName, //!< 3d symbol name
67 : : Symbol3DTableXML, //!< 3d symbol definition (as XML)
68 : : Symbol3DTableFavoriteId, //!< 3d symbol is favorite flag
69 : : };
70 : :
71 : :
72 : : QgsStyle *QgsStyle::sDefaultStyle = nullptr;
73 : :
74 : 5 : QgsStyle::QgsStyle()
75 : 10 : {
76 : 10 : std::unique_ptr< QgsSimpleMarkerSymbolLayer > simpleMarker = std::make_unique< QgsSimpleMarkerSymbolLayer >( QgsSimpleMarkerSymbolLayerBase::Circle,
77 : 5 : 1.6, 0, QgsSymbol::ScaleArea, QColor( 84, 176, 74 ), QColor( 61, 128, 53 ) );
78 : 5 : simpleMarker->setStrokeWidth( 0.4 );
79 : 5 : mPatchMarkerSymbol = std::make_unique< QgsMarkerSymbol >( QgsSymbolLayerList() << simpleMarker.release() );
80 : :
81 : 5 : std::unique_ptr< QgsSimpleLineSymbolLayer > simpleLine = std::make_unique< QgsSimpleLineSymbolLayer >( QColor( 84, 176, 74 ), 0.6 );
82 : 5 : mPatchLineSymbol = std::make_unique< QgsLineSymbol >( QgsSymbolLayerList() << simpleLine.release() );
83 : :
84 : 5 : std::unique_ptr< QgsGradientFillSymbolLayer > gradientFill = std::make_unique< QgsGradientFillSymbolLayer >( QColor( 66, 150, 63 ), QColor( 84, 176, 74 ) );
85 : 5 : std::unique_ptr< QgsSimpleLineSymbolLayer > simpleOutline = std::make_unique< QgsSimpleLineSymbolLayer >( QColor( 56, 128, 54 ), 0.26 );
86 : 5 : mPatchFillSymbol = std::make_unique< QgsFillSymbol >( QgsSymbolLayerList() << gradientFill.release() << simpleOutline.release() );
87 : 5 : }
88 : :
89 : 6 : QgsStyle::~QgsStyle()
90 : 6 : {
91 : 3 : clear();
92 : 6 : }
93 : :
94 : 0 : bool QgsStyle::addEntity( const QString &name, const QgsStyleEntityInterface *entity, bool update )
95 : : {
96 : 0 : switch ( entity->type() )
97 : : {
98 : : case SymbolEntity:
99 : 0 : if ( !static_cast< const QgsStyleSymbolEntity * >( entity )->symbol() )
100 : 0 : return false;
101 : 0 : return addSymbol( name, static_cast< const QgsStyleSymbolEntity * >( entity )->symbol()->clone(), update );
102 : :
103 : : case ColorrampEntity:
104 : 0 : if ( !static_cast< const QgsStyleColorRampEntity * >( entity )->ramp() )
105 : 0 : return false;
106 : 0 : return addColorRamp( name, static_cast< const QgsStyleColorRampEntity * >( entity )->ramp()->clone(), update );
107 : :
108 : : case TextFormatEntity:
109 : 0 : return addTextFormat( name, static_cast< const QgsStyleTextFormatEntity * >( entity )->format(), update );
110 : :
111 : : case LabelSettingsEntity:
112 : 0 : return addLabelSettings( name, static_cast< const QgsStyleLabelSettingsEntity * >( entity )->settings(), update );
113 : :
114 : : case LegendPatchShapeEntity:
115 : 0 : return addLegendPatchShape( name, static_cast< const QgsStyleLegendPatchShapeEntity * >( entity )->shape(), update );
116 : :
117 : : case Symbol3DEntity:
118 : 0 : return addSymbol3D( name, static_cast< const QgsStyleSymbol3DEntity * >( entity )->symbol()->clone(), update );
119 : :
120 : : case TagEntity:
121 : : case SmartgroupEntity:
122 : 0 : break;
123 : :
124 : : }
125 : 0 : return false;
126 : 0 : }
127 : :
128 : 5 : QgsStyle *QgsStyle::defaultStyle() // static
129 : : {
130 : 5 : if ( !sDefaultStyle )
131 : : {
132 : 5 : QgsScopedRuntimeProfile profile( tr( "Load default style database" ) );
133 : 5 : QString styleFilename = QgsApplication::userStylePath();
134 : :
135 : : // copy default style if user style doesn't exist
136 : 5 : if ( !QFile::exists( styleFilename ) )
137 : : {
138 : 0 : sDefaultStyle = new QgsStyle;
139 : 0 : sDefaultStyle->createDatabase( styleFilename );
140 : 0 : if ( QFile::exists( QgsApplication::defaultStylePath() ) )
141 : : {
142 : 0 : sDefaultStyle->importXml( QgsApplication::defaultStylePath() );
143 : 0 : }
144 : 0 : }
145 : : else
146 : : {
147 : 5 : sDefaultStyle = new QgsStyle;
148 : 5 : if ( sDefaultStyle->load( styleFilename ) )
149 : : {
150 : 5 : sDefaultStyle->upgradeIfRequired();
151 : 5 : }
152 : : }
153 : 5 : }
154 : 5 : return sDefaultStyle;
155 : 0 : }
156 : :
157 : 3 : void QgsStyle::cleanDefaultStyle() // static
158 : : {
159 : 3 : delete sDefaultStyle;
160 : 3 : sDefaultStyle = nullptr;
161 : 3 : }
162 : :
163 : 3 : void QgsStyle::clear()
164 : : {
165 : 3 : qDeleteAll( mSymbols );
166 : 3 : qDeleteAll( mColorRamps );
167 : 3 : qDeleteAll( m3dSymbols );
168 : :
169 : 3 : mSymbols.clear();
170 : 3 : mColorRamps.clear();
171 : 3 : mTextFormats.clear();
172 : 3 : m3dSymbols.clear();
173 : :
174 : 3 : mCachedTags.clear();
175 : 3 : mCachedFavorites.clear();
176 : 3 : }
177 : :
178 : 0 : bool QgsStyle::addSymbol( const QString &name, QgsSymbol *symbol, bool update )
179 : : {
180 : 0 : if ( !symbol || name.isEmpty() )
181 : 0 : return false;
182 : :
183 : : // delete previous symbol (if any)
184 : 0 : if ( mSymbols.contains( name ) )
185 : : {
186 : : // TODO remove groups and tags?
187 : 0 : delete mSymbols.value( name );
188 : 0 : mSymbols.insert( name, symbol );
189 : 0 : if ( update )
190 : 0 : updateSymbol( SymbolEntity, name );
191 : 0 : }
192 : : else
193 : : {
194 : 0 : mSymbols.insert( name, symbol );
195 : 0 : if ( update )
196 : 0 : saveSymbol( name, symbol, false, QStringList() );
197 : : }
198 : :
199 : 0 : return true;
200 : 0 : }
201 : :
202 : 0 : bool QgsStyle::saveSymbol( const QString &name, QgsSymbol *symbol, bool favorite, const QStringList &tags )
203 : : {
204 : : // TODO add support for groups
205 : 0 : QDomDocument doc( QStringLiteral( "dummy" ) );
206 : 0 : QDomElement symEl = QgsSymbolLayerUtils::saveSymbol( name, symbol, doc, QgsReadWriteContext() );
207 : 0 : if ( symEl.isNull() )
208 : : {
209 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert symbol to valid XML!" ) );
210 : 0 : return false;
211 : : }
212 : :
213 : 0 : QByteArray xmlArray;
214 : 0 : QTextStream stream( &xmlArray );
215 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
216 : 0 : stream.setCodec( "UTF-8" );
217 : : #endif
218 : 0 : symEl.save( stream, 4 );
219 : 0 : QString query = qgs_sqlite3_mprintf( "INSERT INTO symbol VALUES (NULL, '%q', '%q', %d);",
220 : 0 : name.toUtf8().constData(), xmlArray.constData(), ( favorite ? 1 : 0 ) );
221 : :
222 : 0 : if ( !runEmptyQuery( query ) )
223 : : {
224 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't insert symbol into the database!" ) );
225 : 0 : return false;
226 : : }
227 : :
228 : 0 : mCachedFavorites[ SymbolEntity ].insert( name, favorite );
229 : :
230 : 0 : tagSymbol( SymbolEntity, name, tags );
231 : :
232 : 0 : emit symbolSaved( name, symbol );
233 : 0 : emit entityAdded( SymbolEntity, name );
234 : :
235 : 0 : return true;
236 : 0 : }
237 : :
238 : 0 : bool QgsStyle::removeSymbol( const QString &name )
239 : : {
240 : 0 : return removeEntityByName( SymbolEntity, name );
241 : : }
242 : :
243 : 0 : bool QgsStyle::renameEntity( QgsStyle::StyleEntity type, const QString &oldName, const QString &newName )
244 : : {
245 : 0 : switch ( type )
246 : : {
247 : : case SymbolEntity:
248 : 0 : return renameSymbol( oldName, newName );
249 : :
250 : : case ColorrampEntity:
251 : 0 : return renameColorRamp( oldName, newName );
252 : :
253 : : case TextFormatEntity:
254 : 0 : return renameTextFormat( oldName, newName );
255 : :
256 : : case LabelSettingsEntity:
257 : 0 : return renameLabelSettings( oldName, newName );
258 : :
259 : : case LegendPatchShapeEntity:
260 : 0 : return renameLegendPatchShape( oldName, newName );
261 : :
262 : : case Symbol3DEntity:
263 : 0 : return renameSymbol3D( oldName, newName );
264 : :
265 : : case TagEntity:
266 : : case SmartgroupEntity:
267 : 0 : return false;
268 : : }
269 : 0 : return false;
270 : 0 : }
271 : :
272 : 0 : QgsSymbol *QgsStyle::symbol( const QString &name )
273 : : {
274 : 0 : const QgsSymbol *symbol = symbolRef( name );
275 : 0 : return symbol ? symbol->clone() : nullptr;
276 : : }
277 : :
278 : 0 : const QgsSymbol *QgsStyle::symbolRef( const QString &name ) const
279 : : {
280 : 0 : return mSymbols.value( name );
281 : : }
282 : :
283 : 0 : int QgsStyle::symbolCount()
284 : : {
285 : 0 : return mSymbols.count();
286 : : }
287 : :
288 : 5 : QStringList QgsStyle::symbolNames() const
289 : : {
290 : 5 : return mSymbols.keys();
291 : : }
292 : :
293 : :
294 : 0 : bool QgsStyle::addColorRamp( const QString &name, QgsColorRamp *colorRamp, bool update )
295 : : {
296 : 0 : if ( !colorRamp || name.isEmpty() )
297 : 0 : return false;
298 : :
299 : : // delete previous color ramps (if any)
300 : 0 : if ( mColorRamps.contains( name ) )
301 : : {
302 : : // TODO remove groups and tags?
303 : 0 : delete mColorRamps.value( name );
304 : 0 : mColorRamps.insert( name, colorRamp );
305 : 0 : if ( update )
306 : 0 : updateSymbol( ColorrampEntity, name );
307 : 0 : }
308 : : else
309 : : {
310 : 0 : mColorRamps.insert( name, colorRamp );
311 : 0 : if ( update )
312 : 0 : saveColorRamp( name, colorRamp, false, QStringList() );
313 : : }
314 : :
315 : 0 : return true;
316 : 0 : }
317 : :
318 : 0 : bool QgsStyle::addTextFormat( const QString &name, const QgsTextFormat &format, bool update )
319 : : {
320 : : // delete previous text format (if any)
321 : 0 : if ( mTextFormats.contains( name ) )
322 : : {
323 : : // TODO remove groups and tags?
324 : 0 : mTextFormats.remove( name );
325 : 0 : mTextFormats.insert( name, format );
326 : 0 : if ( update )
327 : 0 : updateSymbol( TextFormatEntity, name );
328 : 0 : }
329 : : else
330 : : {
331 : 0 : mTextFormats.insert( name, format );
332 : 0 : if ( update )
333 : 0 : saveTextFormat( name, format, false, QStringList() );
334 : : }
335 : :
336 : 0 : return true;
337 : 0 : }
338 : :
339 : 0 : bool QgsStyle::addLabelSettings( const QString &name, const QgsPalLayerSettings &settings, bool update )
340 : : {
341 : : // delete previous label settings (if any)
342 : 0 : if ( mLabelSettings.contains( name ) )
343 : : {
344 : : // TODO remove groups and tags?
345 : 0 : mLabelSettings.remove( name );
346 : 0 : mLabelSettings.insert( name, settings );
347 : 0 : if ( update )
348 : 0 : updateSymbol( LabelSettingsEntity, name );
349 : 0 : }
350 : : else
351 : : {
352 : 0 : mLabelSettings.insert( name, settings );
353 : 0 : if ( update )
354 : 0 : saveLabelSettings( name, settings, false, QStringList() );
355 : : }
356 : :
357 : 0 : return true;
358 : 0 : }
359 : :
360 : 0 : bool QgsStyle::addLegendPatchShape( const QString &name, const QgsLegendPatchShape &shape, bool update )
361 : : {
362 : : // delete previous legend patch shape (if any)
363 : 0 : if ( mLegendPatchShapes.contains( name ) )
364 : : {
365 : : // TODO remove groups and tags?
366 : 0 : mLegendPatchShapes.remove( name );
367 : 0 : mLegendPatchShapes.insert( name, shape );
368 : 0 : if ( update )
369 : 0 : updateSymbol( LegendPatchShapeEntity, name );
370 : 0 : }
371 : : else
372 : : {
373 : 0 : mLegendPatchShapes.insert( name, shape );
374 : 0 : if ( update )
375 : 0 : saveLegendPatchShape( name, shape, false, QStringList() );
376 : : }
377 : :
378 : 0 : return true;
379 : 0 : }
380 : :
381 : 0 : bool QgsStyle::addSymbol3D( const QString &name, QgsAbstract3DSymbol *symbol, bool update )
382 : : {
383 : : // delete previous symbol (if any)
384 : 0 : if ( m3dSymbols.contains( name ) )
385 : : {
386 : : // TODO remove groups and tags?
387 : 0 : delete m3dSymbols.take( name );
388 : 0 : m3dSymbols.insert( name, symbol );
389 : 0 : if ( update )
390 : 0 : updateSymbol( Symbol3DEntity, name );
391 : 0 : }
392 : : else
393 : : {
394 : 0 : m3dSymbols.insert( name, symbol );
395 : 0 : if ( update )
396 : 0 : saveSymbol3D( name, symbol, false, QStringList() );
397 : : }
398 : :
399 : 0 : return true;
400 : 0 : }
401 : :
402 : 0 : bool QgsStyle::saveColorRamp( const QString &name, QgsColorRamp *ramp, bool favorite, const QStringList &tags )
403 : : {
404 : : // insert it into the database
405 : 0 : QDomDocument doc( QStringLiteral( "dummy" ) );
406 : 0 : QDomElement rampEl = QgsSymbolLayerUtils::saveColorRamp( name, ramp, doc );
407 : :
408 : 0 : if ( rampEl.isNull() )
409 : : {
410 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert color ramp to valid XML!" ) );
411 : 0 : return false;
412 : : }
413 : :
414 : 0 : QByteArray xmlArray;
415 : 0 : QTextStream stream( &xmlArray );
416 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
417 : 0 : stream.setCodec( "UTF-8" );
418 : : #endif
419 : 0 : rampEl.save( stream, 4 );
420 : 0 : QString query = qgs_sqlite3_mprintf( "INSERT INTO colorramp VALUES (NULL, '%q', '%q', %d);",
421 : 0 : name.toUtf8().constData(), xmlArray.constData(), ( favorite ? 1 : 0 ) );
422 : 0 : if ( !runEmptyQuery( query ) )
423 : : {
424 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't insert colorramp into the database!" ) );
425 : 0 : return false;
426 : : }
427 : :
428 : 0 : mCachedFavorites[ ColorrampEntity ].insert( name, favorite );
429 : :
430 : 0 : tagSymbol( ColorrampEntity, name, tags );
431 : :
432 : 0 : emit rampAdded( name );
433 : 0 : emit entityAdded( ColorrampEntity, name );
434 : :
435 : 0 : return true;
436 : 0 : }
437 : :
438 : 0 : bool QgsStyle::removeColorRamp( const QString &name )
439 : : {
440 : 0 : return removeEntityByName( ColorrampEntity, name );
441 : : }
442 : :
443 : 0 : QgsColorRamp *QgsStyle::colorRamp( const QString &name ) const
444 : : {
445 : 0 : const QgsColorRamp *ramp = colorRampRef( name );
446 : 0 : return ramp ? ramp->clone() : nullptr;
447 : : }
448 : :
449 : 0 : const QgsColorRamp *QgsStyle::colorRampRef( const QString &name ) const
450 : : {
451 : 0 : return mColorRamps.value( name );
452 : : }
453 : :
454 : 0 : int QgsStyle::colorRampCount()
455 : : {
456 : 0 : return mColorRamps.count();
457 : : }
458 : :
459 : 5 : QStringList QgsStyle::colorRampNames() const
460 : : {
461 : 5 : return mColorRamps.keys();
462 : : }
463 : :
464 : 0 : void QgsStyle::handleDeferred3DSymbolCreation()
465 : : {
466 : 0 : for ( auto it = mDeferred3DsymbolElements.constBegin(); it != mDeferred3DsymbolElements.constEnd(); ++it )
467 : : {
468 : 0 : const QString symbolType = it.value().attribute( QStringLiteral( "type" ) );
469 : 0 : std::unique_ptr< QgsAbstract3DSymbol > symbol( QgsApplication::symbol3DRegistry()->createSymbol( symbolType ) );
470 : 0 : if ( symbol )
471 : : {
472 : 0 : symbol->readXml( it.value(), QgsReadWriteContext() );
473 : 0 : addSymbol3D( it.key(), symbol.release(), false );
474 : 0 : emit entityAdded( Symbol3DEntity, it.key() );
475 : 0 : }
476 : : else
477 : : {
478 : 0 : QgsDebugMsg( "Cannot open 3d symbol " + it.key() );
479 : 0 : continue;
480 : : }
481 : 0 : }
482 : 0 : mDeferred3DsymbolElements.clear();
483 : 0 : }
484 : :
485 : 5 : bool QgsStyle::openDatabase( const QString &filename )
486 : : {
487 : 5 : int rc = mCurrentDB.open( filename );
488 : 5 : if ( rc )
489 : : {
490 : 0 : mErrorString = QStringLiteral( "Couldn't open the style database: %1" ).arg( mCurrentDB.errorMessage() );
491 : 0 : return false;
492 : : }
493 : :
494 : 5 : return true;
495 : 5 : }
496 : :
497 : 0 : bool QgsStyle::createDatabase( const QString &filename )
498 : : {
499 : 0 : mErrorString.clear();
500 : 0 : if ( !openDatabase( filename ) )
501 : : {
502 : 0 : mErrorString = QStringLiteral( "Unable to create database" );
503 : 0 : QgsDebugMsg( mErrorString );
504 : 0 : return false;
505 : : }
506 : :
507 : 0 : createTables();
508 : :
509 : 0 : return true;
510 : 0 : }
511 : :
512 : 0 : bool QgsStyle::createMemoryDatabase()
513 : : {
514 : 0 : mErrorString.clear();
515 : 0 : if ( !openDatabase( QStringLiteral( ":memory:" ) ) )
516 : : {
517 : 0 : mErrorString = QStringLiteral( "Unable to create temporary memory database" );
518 : 0 : QgsDebugMsg( mErrorString );
519 : 0 : return false;
520 : : }
521 : :
522 : 0 : createTables();
523 : :
524 : 0 : return true;
525 : 0 : }
526 : :
527 : 0 : void QgsStyle::createTables()
528 : : {
529 : 0 : QString query = qgs_sqlite3_mprintf( "CREATE TABLE symbol("\
530 : : "id INTEGER PRIMARY KEY,"\
531 : : "name TEXT UNIQUE,"\
532 : : "xml TEXT,"\
533 : : "favorite INTEGER);"\
534 : : "CREATE TABLE colorramp("\
535 : : "id INTEGER PRIMARY KEY,"\
536 : : "name TEXT UNIQUE,"\
537 : : "xml TEXT,"\
538 : : "favorite INTEGER);"\
539 : : "CREATE TABLE textformat("\
540 : : "id INTEGER PRIMARY KEY,"\
541 : : "name TEXT UNIQUE,"\
542 : : "xml TEXT,"\
543 : : "favorite INTEGER);"\
544 : : "CREATE TABLE labelsettings("\
545 : : "id INTEGER PRIMARY KEY,"\
546 : : "name TEXT UNIQUE,"\
547 : : "xml TEXT,"\
548 : : "favorite INTEGER);"\
549 : : "CREATE TABLE legendpatchshapes("\
550 : : "id INTEGER PRIMARY KEY,"\
551 : : "name TEXT UNIQUE,"\
552 : : "xml TEXT,"\
553 : : "favorite INTEGER);"\
554 : : "CREATE TABLE symbol3d("\
555 : : "id INTEGER PRIMARY KEY,"\
556 : : "name TEXT UNIQUE,"\
557 : : "xml TEXT,"\
558 : : "favorite INTEGER);"\
559 : : "CREATE TABLE tag("\
560 : : "id INTEGER PRIMARY KEY,"\
561 : : "name TEXT);"\
562 : : "CREATE TABLE tagmap("\
563 : : "tag_id INTEGER NOT NULL,"\
564 : : "symbol_id INTEGER);"\
565 : : "CREATE TABLE ctagmap("\
566 : : "tag_id INTEGER NOT NULL,"\
567 : : "colorramp_id INTEGER);"\
568 : : "CREATE TABLE tftagmap("\
569 : : "tag_id INTEGER NOT NULL,"\
570 : : "textformat_id INTEGER);"\
571 : : "CREATE TABLE lstagmap("\
572 : : "tag_id INTEGER NOT NULL,"\
573 : : "labelsettings_id INTEGER);"\
574 : : "CREATE TABLE lpstagmap("\
575 : : "tag_id INTEGER NOT NULL,"\
576 : : "legendpatchshape_id INTEGER);"\
577 : : "CREATE TABLE symbol3dtagmap("\
578 : : "tag_id INTEGER NOT NULL,"\
579 : : "symbol3d_id INTEGER);"\
580 : : "CREATE TABLE smartgroup("\
581 : : "id INTEGER PRIMARY KEY,"\
582 : : "name TEXT,"\
583 : : "xml TEXT);" );
584 : 0 : runEmptyQuery( query );
585 : 0 : }
586 : :
587 : 5 : bool QgsStyle::load( const QString &filename )
588 : : {
589 : 5 : mErrorString.clear();
590 : :
591 : : // Open the sqlite database
592 : 5 : if ( !openDatabase( filename ) )
593 : : {
594 : 0 : mErrorString = QStringLiteral( "Unable to open database file specified" );
595 : 0 : QgsDebugMsg( mErrorString );
596 : 0 : return false;
597 : : }
598 : :
599 : : // make sure text format table exists
600 : 5 : QString query = qgs_sqlite3_mprintf( "SELECT name FROM sqlite_master WHERE name='textformat'" );
601 : 5 : sqlite3_statement_unique_ptr statement;
602 : : int rc;
603 : 5 : statement = mCurrentDB.prepare( query, rc );
604 : 5 : if ( rc != SQLITE_OK || sqlite3_step( statement.get() ) != SQLITE_ROW )
605 : : {
606 : 0 : query = qgs_sqlite3_mprintf( "CREATE TABLE textformat("\
607 : : "id INTEGER PRIMARY KEY,"\
608 : : "name TEXT UNIQUE,"\
609 : : "xml TEXT,"\
610 : : "favorite INTEGER);"\
611 : : "CREATE TABLE tftagmap("\
612 : : "tag_id INTEGER NOT NULL,"\
613 : : "textformat_id INTEGER);" );
614 : 0 : runEmptyQuery( query );
615 : 0 : }
616 : : // make sure label settings table exists
617 : 5 : query = qgs_sqlite3_mprintf( "SELECT name FROM sqlite_master WHERE name='labelsettings'" );
618 : 5 : statement = mCurrentDB.prepare( query, rc );
619 : 5 : if ( rc != SQLITE_OK || sqlite3_step( statement.get() ) != SQLITE_ROW )
620 : : {
621 : 0 : query = qgs_sqlite3_mprintf( "CREATE TABLE labelsettings("\
622 : : "id INTEGER PRIMARY KEY,"\
623 : : "name TEXT UNIQUE,"\
624 : : "xml TEXT,"\
625 : : "favorite INTEGER);"\
626 : : "CREATE TABLE lstagmap("\
627 : : "tag_id INTEGER NOT NULL,"\
628 : : "labelsettings_id INTEGER);" );
629 : 0 : runEmptyQuery( query );
630 : 0 : }
631 : : // make sure legend patch shape table exists
632 : 5 : query = qgs_sqlite3_mprintf( "SELECT name FROM sqlite_master WHERE name='legendpatchshapes'" );
633 : 5 : statement = mCurrentDB.prepare( query, rc );
634 : 5 : if ( rc != SQLITE_OK || sqlite3_step( statement.get() ) != SQLITE_ROW )
635 : : {
636 : 0 : query = qgs_sqlite3_mprintf( "CREATE TABLE legendpatchshapes("\
637 : : "id INTEGER PRIMARY KEY,"\
638 : : "name TEXT UNIQUE,"\
639 : : "xml TEXT,"\
640 : : "favorite INTEGER);"\
641 : : "CREATE TABLE lpstagmap("\
642 : : "tag_id INTEGER NOT NULL,"\
643 : : "legendpatchshape_id INTEGER);" );
644 : 0 : runEmptyQuery( query );
645 : 0 : }
646 : : // make sure 3d symbol table exists
647 : 5 : query = qgs_sqlite3_mprintf( "SELECT name FROM sqlite_master WHERE name='symbol3d'" );
648 : 5 : statement = mCurrentDB.prepare( query, rc );
649 : 5 : if ( rc != SQLITE_OK || sqlite3_step( statement.get() ) != SQLITE_ROW )
650 : : {
651 : 0 : query = qgs_sqlite3_mprintf( "CREATE TABLE symbol3d("\
652 : : "id INTEGER PRIMARY KEY,"\
653 : : "name TEXT UNIQUE,"\
654 : : "xml TEXT,"\
655 : : "favorite INTEGER);"\
656 : : "CREATE TABLE symbol3dtagmap("\
657 : : "tag_id INTEGER NOT NULL,"\
658 : : "symbol3d_id INTEGER);" );
659 : 0 : runEmptyQuery( query );
660 : 0 : }
661 : :
662 : : // Make sure there are no Null fields in parenting symbols and groups
663 : 5 : query = qgs_sqlite3_mprintf( "UPDATE symbol SET favorite=0 WHERE favorite IS NULL;"
664 : : "UPDATE colorramp SET favorite=0 WHERE favorite IS NULL;"
665 : : "UPDATE textformat SET favorite=0 WHERE favorite IS NULL;"
666 : : "UPDATE labelsettings SET favorite=0 WHERE favorite IS NULL;"
667 : : "UPDATE legendpatchshapes SET favorite=0 WHERE favorite IS NULL;"
668 : : "UPDATE symbol3d SET favorite=0 WHERE favorite IS NULL;"
669 : : );
670 : 5 : runEmptyQuery( query );
671 : :
672 : : {
673 : 5 : QgsScopedRuntimeProfile profile( tr( "Load symbols" ) );
674 : : // First create all the main symbols
675 : 5 : query = qgs_sqlite3_mprintf( "SELECT * FROM symbol" );
676 : 5 : statement = mCurrentDB.prepare( query, rc );
677 : :
678 : 580 : while ( rc == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
679 : : {
680 : 575 : QDomDocument doc;
681 : 575 : QString symbolName = statement.columnAsText( SymbolName );
682 : 575 : QgsScopedRuntimeProfile profile( symbolName );
683 : 575 : QString xmlstring = statement.columnAsText( SymbolXML );
684 : 575 : if ( !doc.setContent( xmlstring ) )
685 : : {
686 : 0 : QgsDebugMsg( "Cannot open symbol " + symbolName );
687 : 0 : continue;
688 : : }
689 : :
690 : 575 : QDomElement symElement = doc.documentElement();
691 : 575 : QgsSymbol *symbol = QgsSymbolLayerUtils::loadSymbol( symElement, QgsReadWriteContext() );
692 : 575 : if ( symbol )
693 : 575 : mSymbols.insert( symbolName, symbol );
694 : 575 : }
695 : 5 : }
696 : :
697 : : {
698 : 5 : QgsScopedRuntimeProfile profile( tr( "Load color ramps" ) );
699 : 5 : query = qgs_sqlite3_mprintf( "SELECT * FROM colorramp" );
700 : 5 : statement = mCurrentDB.prepare( query, rc );
701 : 160 : while ( rc == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
702 : : {
703 : 155 : QDomDocument doc;
704 : 155 : const QString rampName = statement.columnAsText( ColorrampName );
705 : 155 : QgsScopedRuntimeProfile profile( rampName );
706 : 155 : QString xmlstring = statement.columnAsText( ColorrampXML );
707 : 155 : if ( !doc.setContent( xmlstring ) )
708 : : {
709 : 0 : QgsDebugMsg( "Cannot open symbol " + rampName );
710 : 0 : continue;
711 : : }
712 : 155 : QDomElement rampElement = doc.documentElement();
713 : 155 : QgsColorRamp *ramp = QgsSymbolLayerUtils::loadColorRamp( rampElement );
714 : 155 : if ( ramp )
715 : 155 : mColorRamps.insert( rampName, ramp );
716 : 155 : }
717 : 5 : }
718 : :
719 : : {
720 : 5 : QgsScopedRuntimeProfile profile( tr( "Load text formats" ) );
721 : 5 : query = qgs_sqlite3_mprintf( "SELECT * FROM textformat" );
722 : 5 : statement = mCurrentDB.prepare( query, rc );
723 : 5 : while ( rc == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
724 : : {
725 : 0 : QDomDocument doc;
726 : 0 : const QString formatName = statement.columnAsText( TextFormatName );
727 : 0 : QgsScopedRuntimeProfile profile( formatName );
728 : 0 : const QString xmlstring = statement.columnAsText( TextFormatXML );
729 : 0 : if ( !doc.setContent( xmlstring ) )
730 : : {
731 : 0 : QgsDebugMsg( "Cannot open text format " + formatName );
732 : 0 : continue;
733 : : }
734 : 0 : QDomElement formatElement = doc.documentElement();
735 : 0 : QgsTextFormat format;
736 : 0 : format.readXml( formatElement, QgsReadWriteContext() );
737 : 0 : mTextFormats.insert( formatName, format );
738 : 0 : }
739 : 5 : }
740 : :
741 : : {
742 : 5 : QgsScopedRuntimeProfile profile( tr( "Load label settings" ) );
743 : 5 : query = qgs_sqlite3_mprintf( "SELECT * FROM labelsettings" );
744 : 5 : statement = mCurrentDB.prepare( query, rc );
745 : 5 : while ( rc == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
746 : : {
747 : 0 : QDomDocument doc;
748 : 0 : const QString settingsName = statement.columnAsText( LabelSettingsName );
749 : 0 : QgsScopedRuntimeProfile profile( settingsName );
750 : 0 : const QString xmlstring = statement.columnAsText( LabelSettingsXML );
751 : 0 : if ( !doc.setContent( xmlstring ) )
752 : : {
753 : 0 : QgsDebugMsg( "Cannot open label settings " + settingsName );
754 : 0 : continue;
755 : : }
756 : 0 : QDomElement settingsElement = doc.documentElement();
757 : 0 : QgsPalLayerSettings settings;
758 : 0 : settings.readXml( settingsElement, QgsReadWriteContext() );
759 : 0 : mLabelSettings.insert( settingsName, settings );
760 : 0 : }
761 : 5 : }
762 : :
763 : : {
764 : 5 : QgsScopedRuntimeProfile profile( tr( "Load legend patch shapes" ) );
765 : 5 : query = qgs_sqlite3_mprintf( "SELECT * FROM legendpatchshapes" );
766 : 5 : statement = mCurrentDB.prepare( query, rc );
767 : 5 : while ( rc == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
768 : : {
769 : 0 : QDomDocument doc;
770 : 0 : const QString settingsName = statement.columnAsText( LegendPatchTableName );
771 : 0 : QgsScopedRuntimeProfile profile( settingsName );
772 : 0 : const QString xmlstring = statement.columnAsText( LegendPatchTableXML );
773 : 0 : if ( !doc.setContent( xmlstring ) )
774 : : {
775 : 0 : QgsDebugMsg( "Cannot open legend patch shape " + settingsName );
776 : 0 : continue;
777 : : }
778 : 0 : QDomElement settingsElement = doc.documentElement();
779 : 0 : QgsLegendPatchShape shape;
780 : 0 : shape.readXml( settingsElement, QgsReadWriteContext() );
781 : 0 : mLegendPatchShapes.insert( settingsName, shape );
782 : 0 : }
783 : 5 : }
784 : :
785 : : {
786 : 5 : QgsScopedRuntimeProfile profile( tr( "Load 3D symbols shapes" ) );
787 : 5 : query = qgs_sqlite3_mprintf( "SELECT * FROM symbol3d" );
788 : 5 : statement = mCurrentDB.prepare( query, rc );
789 : :
790 : 5 : const bool registry3dPopulated = !QgsApplication::symbol3DRegistry()->symbolTypes().empty();
791 : :
792 : 5 : while ( rc == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
793 : : {
794 : 0 : QDomDocument doc;
795 : 0 : const QString settingsName = statement.columnAsText( Symbol3DTableName );
796 : 0 : QgsScopedRuntimeProfile profile( settingsName );
797 : 0 : const QString xmlstring = statement.columnAsText( Symbol3DTableXML );
798 : 0 : if ( !doc.setContent( xmlstring ) )
799 : : {
800 : 0 : QgsDebugMsg( "Cannot open 3d symbol " + settingsName );
801 : 0 : continue;
802 : : }
803 : 0 : QDomElement settingsElement = doc.documentElement();
804 : :
805 : 0 : if ( !registry3dPopulated )
806 : : {
807 : 0 : mDeferred3DsymbolElements.insert( settingsName, settingsElement );
808 : 0 : }
809 : : else
810 : : {
811 : 0 : const QString symbolType = settingsElement.attribute( QStringLiteral( "type" ) );
812 : 0 : std::unique_ptr< QgsAbstract3DSymbol > symbol( QgsApplication::symbol3DRegistry()->createSymbol( symbolType ) );
813 : 0 : if ( symbol )
814 : : {
815 : 0 : symbol->readXml( settingsElement, QgsReadWriteContext() );
816 : 0 : m3dSymbols.insert( settingsName, symbol.release() );
817 : 0 : }
818 : : else
819 : : {
820 : 0 : QgsDebugMsg( "Cannot open 3d symbol " + settingsName );
821 : 0 : continue;
822 : : }
823 : 0 : }
824 : 0 : }
825 : 5 : }
826 : :
827 : 5 : mFileName = filename;
828 : 5 : return true;
829 : 5 : }
830 : :
831 : :
832 : :
833 : 0 : bool QgsStyle::save( QString filename )
834 : : {
835 : 0 : mErrorString.clear();
836 : :
837 : 0 : if ( filename.isEmpty() )
838 : 0 : filename = mFileName;
839 : :
840 : : // TODO evaluate the requirement of this function and change implementation accordingly
841 : : // TODO remove QEXPECT_FAIL from TestStyle::testSaveLoad() when done
842 : : #if 0
843 : : QDomDocument doc( "qgis_style" );
844 : : QDomElement root = doc.createElement( "qgis_style" );
845 : : root.setAttribute( "version", STYLE_CURRENT_VERSION );
846 : : doc.appendChild( root );
847 : :
848 : : QDomElement symbolsElem = QgsSymbolLayerUtils::saveSymbols( mSymbols, "symbols", doc );
849 : :
850 : : QDomElement rampsElem = doc.createElement( "colorramps" );
851 : :
852 : : // save color ramps
853 : : for ( QMap<QString, QgsColorRamp *>::iterator itr = mColorRamps.begin(); itr != mColorRamps.end(); ++itr )
854 : : {
855 : : QDomElement rampEl = QgsSymbolLayerUtils::saveColorRamp( itr.key(), itr.value(), doc );
856 : : rampsElem.appendChild( rampEl );
857 : : }
858 : :
859 : : root.appendChild( symbolsElem );
860 : : root.appendChild( rampsElem );
861 : :
862 : : // save
863 : : QFile f( filename );
864 : : if ( !f.open( QFile::WriteOnly ) )
865 : : {
866 : : mErrorString = "Couldn't open file for writing: " + filename;
867 : : return false;
868 : : }
869 : : QTextStream ts( &f );
870 : : ts.setCodec( "UTF-8" );
871 : : doc.save( ts, 2 );
872 : : f.close();
873 : : #endif
874 : :
875 : 0 : mFileName = filename;
876 : 0 : return true;
877 : : }
878 : :
879 : 0 : bool QgsStyle::renameSymbol( const QString &oldName, const QString &newName )
880 : : {
881 : 0 : if ( mSymbols.contains( newName ) )
882 : : {
883 : 0 : QgsDebugMsg( QStringLiteral( "Symbol of new name already exists" ) );
884 : 0 : return false;
885 : : }
886 : :
887 : 0 : QgsSymbol *symbol = mSymbols.take( oldName );
888 : 0 : if ( !symbol )
889 : 0 : return false;
890 : :
891 : 0 : mSymbols.insert( newName, symbol );
892 : :
893 : 0 : if ( !mCurrentDB )
894 : : {
895 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database to tag." ) );
896 : 0 : return false;
897 : : }
898 : :
899 : 0 : int symbolid = symbolId( oldName );
900 : 0 : if ( !symbolid )
901 : : {
902 : 0 : QgsDebugMsg( QStringLiteral( "No such symbol for tagging in database: " ) + oldName );
903 : 0 : return false;
904 : : }
905 : :
906 : 0 : mCachedTags[ SymbolEntity ].remove( oldName );
907 : 0 : mCachedFavorites[ SymbolEntity ].remove( oldName );
908 : :
909 : 0 : const bool result = rename( SymbolEntity, symbolid, newName );
910 : 0 : if ( result )
911 : : {
912 : 0 : emit symbolRenamed( oldName, newName );
913 : 0 : emit entityRenamed( SymbolEntity, oldName, newName );
914 : 0 : }
915 : :
916 : 0 : return result;
917 : 0 : }
918 : :
919 : 0 : bool QgsStyle::renameColorRamp( const QString &oldName, const QString &newName )
920 : : {
921 : 0 : if ( mColorRamps.contains( newName ) )
922 : : {
923 : 0 : QgsDebugMsg( QStringLiteral( "Color ramp of new name already exists." ) );
924 : 0 : return false;
925 : : }
926 : :
927 : 0 : QgsColorRamp *ramp = mColorRamps.take( oldName );
928 : 0 : if ( !ramp )
929 : 0 : return false;
930 : :
931 : 0 : mColorRamps.insert( newName, ramp );
932 : 0 : mCachedTags[ ColorrampEntity ].remove( oldName );
933 : 0 : mCachedFavorites[ ColorrampEntity ].remove( oldName );
934 : :
935 : 0 : int rampid = 0;
936 : 0 : sqlite3_statement_unique_ptr statement;
937 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT id FROM colorramp WHERE name='%q'", oldName.toUtf8().constData() );
938 : : int nErr;
939 : 0 : statement = mCurrentDB.prepare( query, nErr );
940 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
941 : : {
942 : 0 : rampid = sqlite3_column_int( statement.get(), 0 );
943 : 0 : }
944 : 0 : const bool result = rename( ColorrampEntity, rampid, newName );
945 : 0 : if ( result )
946 : : {
947 : 0 : emit rampRenamed( oldName, newName );
948 : 0 : emit entityRenamed( ColorrampEntity, oldName, newName );
949 : 0 : }
950 : :
951 : 0 : return result;
952 : 0 : }
953 : :
954 : 0 : bool QgsStyle::saveTextFormat( const QString &name, const QgsTextFormat &format, bool favorite, const QStringList &tags )
955 : : {
956 : : // insert it into the database
957 : 0 : QDomDocument doc( QStringLiteral( "dummy" ) );
958 : 0 : QDomElement formatElem = format.writeXml( doc, QgsReadWriteContext() );
959 : :
960 : 0 : if ( formatElem.isNull() )
961 : : {
962 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert text format to valid XML!" ) );
963 : 0 : return false;
964 : : }
965 : :
966 : 0 : QByteArray xmlArray;
967 : 0 : QTextStream stream( &xmlArray );
968 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
969 : 0 : stream.setCodec( "UTF-8" );
970 : : #endif
971 : 0 : formatElem.save( stream, 4 );
972 : 0 : QString query = qgs_sqlite3_mprintf( "INSERT INTO textformat VALUES (NULL, '%q', '%q', %d);",
973 : 0 : name.toUtf8().constData(), xmlArray.constData(), ( favorite ? 1 : 0 ) );
974 : 0 : if ( !runEmptyQuery( query ) )
975 : : {
976 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't insert text format into the database!" ) );
977 : 0 : return false;
978 : : }
979 : :
980 : 0 : mCachedFavorites[ TextFormatEntity ].insert( name, favorite );
981 : :
982 : 0 : tagSymbol( TextFormatEntity, name, tags );
983 : :
984 : 0 : emit textFormatAdded( name );
985 : 0 : emit entityAdded( TextFormatEntity, name );
986 : :
987 : 0 : return true;
988 : 0 : }
989 : :
990 : 0 : bool QgsStyle::removeTextFormat( const QString &name )
991 : : {
992 : 0 : return removeEntityByName( TextFormatEntity, name );
993 : : }
994 : :
995 : 0 : bool QgsStyle::renameTextFormat( const QString &oldName, const QString &newName )
996 : : {
997 : 0 : if ( mTextFormats.contains( newName ) )
998 : : {
999 : 0 : QgsDebugMsg( QStringLiteral( "Text format of new name already exists." ) );
1000 : 0 : return false;
1001 : : }
1002 : :
1003 : 0 : if ( !mTextFormats.contains( oldName ) )
1004 : 0 : return false;
1005 : 0 : QgsTextFormat format = mTextFormats.take( oldName );
1006 : :
1007 : 0 : mTextFormats.insert( newName, format );
1008 : 0 : mCachedTags[ TextFormatEntity ].remove( oldName );
1009 : 0 : mCachedFavorites[ TextFormatEntity ].remove( oldName );
1010 : :
1011 : 0 : int textFormatId = 0;
1012 : 0 : sqlite3_statement_unique_ptr statement;
1013 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT id FROM textformat WHERE name='%q'", oldName.toUtf8().constData() );
1014 : : int nErr;
1015 : 0 : statement = mCurrentDB.prepare( query, nErr );
1016 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1017 : : {
1018 : 0 : textFormatId = sqlite3_column_int( statement.get(), 0 );
1019 : 0 : }
1020 : 0 : const bool result = rename( TextFormatEntity, textFormatId, newName );
1021 : 0 : if ( result )
1022 : : {
1023 : 0 : emit textFormatRenamed( oldName, newName );
1024 : 0 : emit entityRenamed( TextFormatEntity, oldName, newName );
1025 : 0 : }
1026 : :
1027 : 0 : return result;
1028 : 0 : }
1029 : :
1030 : 0 : bool QgsStyle::saveLabelSettings( const QString &name, const QgsPalLayerSettings &settings, bool favorite, const QStringList &tags )
1031 : : {
1032 : : // insert it into the database
1033 : 0 : QDomDocument doc( QStringLiteral( "dummy" ) );
1034 : 0 : QDomElement settingsElem = settings.writeXml( doc, QgsReadWriteContext() );
1035 : :
1036 : 0 : if ( settingsElem.isNull() )
1037 : : {
1038 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert label settings to valid XML!" ) );
1039 : 0 : return false;
1040 : : }
1041 : :
1042 : 0 : QByteArray xmlArray;
1043 : 0 : QTextStream stream( &xmlArray );
1044 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
1045 : 0 : stream.setCodec( "UTF-8" );
1046 : : #endif
1047 : 0 : settingsElem.save( stream, 4 );
1048 : 0 : QString query = qgs_sqlite3_mprintf( "INSERT INTO labelsettings VALUES (NULL, '%q', '%q', %d);",
1049 : 0 : name.toUtf8().constData(), xmlArray.constData(), ( favorite ? 1 : 0 ) );
1050 : 0 : if ( !runEmptyQuery( query ) )
1051 : : {
1052 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't insert label settings into the database!" ) );
1053 : 0 : return false;
1054 : : }
1055 : :
1056 : 0 : mCachedFavorites[ LabelSettingsEntity ].insert( name, favorite );
1057 : :
1058 : 0 : tagSymbol( LabelSettingsEntity, name, tags );
1059 : :
1060 : 0 : emit labelSettingsAdded( name );
1061 : 0 : emit entityAdded( LabelSettingsEntity, name );
1062 : :
1063 : 0 : return true;
1064 : 0 : }
1065 : :
1066 : 0 : bool QgsStyle::removeLabelSettings( const QString &name )
1067 : : {
1068 : 0 : return removeEntityByName( LabelSettingsEntity, name );
1069 : : }
1070 : :
1071 : 0 : bool QgsStyle::renameLabelSettings( const QString &oldName, const QString &newName )
1072 : : {
1073 : 0 : if ( mLabelSettings.contains( newName ) )
1074 : : {
1075 : 0 : QgsDebugMsg( QStringLiteral( "Label settings of new name already exists." ) );
1076 : 0 : return false;
1077 : : }
1078 : :
1079 : 0 : if ( !mLabelSettings.contains( oldName ) )
1080 : 0 : return false;
1081 : 0 : QgsPalLayerSettings settings = mLabelSettings.take( oldName );
1082 : :
1083 : 0 : mLabelSettings.insert( newName, settings );
1084 : 0 : mCachedTags[ LabelSettingsEntity ].remove( oldName );
1085 : 0 : mCachedFavorites[ LabelSettingsEntity ].remove( oldName );
1086 : :
1087 : 0 : int labelSettingsId = 0;
1088 : 0 : sqlite3_statement_unique_ptr statement;
1089 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT id FROM labelsettings WHERE name='%q'", oldName.toUtf8().constData() );
1090 : : int nErr;
1091 : 0 : statement = mCurrentDB.prepare( query, nErr );
1092 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1093 : : {
1094 : 0 : labelSettingsId = sqlite3_column_int( statement.get(), 0 );
1095 : 0 : }
1096 : 0 : const bool result = rename( LabelSettingsEntity, labelSettingsId, newName );
1097 : 0 : if ( result )
1098 : : {
1099 : 0 : emit labelSettingsRenamed( oldName, newName );
1100 : 0 : emit entityRenamed( LabelSettingsEntity, oldName, newName );
1101 : 0 : }
1102 : :
1103 : 0 : return result;
1104 : 0 : }
1105 : :
1106 : 0 : bool QgsStyle::saveLegendPatchShape( const QString &name, const QgsLegendPatchShape &shape, bool favorite, const QStringList &tags )
1107 : : {
1108 : : // insert it into the database
1109 : 0 : QDomDocument doc( QStringLiteral( "dummy" ) );
1110 : 0 : QDomElement shapeElem = doc.createElement( QStringLiteral( "shape" ) );
1111 : 0 : shape.writeXml( shapeElem, doc, QgsReadWriteContext() );
1112 : :
1113 : 0 : QByteArray xmlArray;
1114 : 0 : QTextStream stream( &xmlArray );
1115 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
1116 : 0 : stream.setCodec( "UTF-8" );
1117 : : #endif
1118 : 0 : shapeElem.save( stream, 4 );
1119 : 0 : QString query = qgs_sqlite3_mprintf( "INSERT INTO legendpatchshapes VALUES (NULL, '%q', '%q', %d);",
1120 : 0 : name.toUtf8().constData(), xmlArray.constData(), ( favorite ? 1 : 0 ) );
1121 : 0 : if ( !runEmptyQuery( query ) )
1122 : : {
1123 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't insert legend patch shape into the database!" ) );
1124 : 0 : return false;
1125 : : }
1126 : :
1127 : 0 : mCachedFavorites[ LegendPatchShapeEntity ].insert( name, favorite );
1128 : :
1129 : 0 : tagSymbol( LegendPatchShapeEntity, name, tags );
1130 : :
1131 : 0 : emit entityAdded( LegendPatchShapeEntity, name );
1132 : :
1133 : 0 : return true;
1134 : 0 : }
1135 : :
1136 : 0 : bool QgsStyle::renameLegendPatchShape( const QString &oldName, const QString &newName )
1137 : : {
1138 : 0 : if ( mLegendPatchShapes.contains( newName ) )
1139 : : {
1140 : 0 : QgsDebugMsg( QStringLiteral( "Legend patch shape of new name already exists." ) );
1141 : 0 : return false;
1142 : : }
1143 : :
1144 : 0 : if ( !mLegendPatchShapes.contains( oldName ) )
1145 : 0 : return false;
1146 : 0 : QgsLegendPatchShape shape = mLegendPatchShapes.take( oldName );
1147 : :
1148 : 0 : mLegendPatchShapes.insert( newName, shape );
1149 : 0 : mCachedTags[ LegendPatchShapeEntity ].remove( oldName );
1150 : 0 : mCachedFavorites[ LegendPatchShapeEntity ].remove( oldName );
1151 : :
1152 : 0 : int labelSettingsId = 0;
1153 : 0 : sqlite3_statement_unique_ptr statement;
1154 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT id FROM legendpatchshapes WHERE name='%q'", oldName.toUtf8().constData() );
1155 : : int nErr;
1156 : 0 : statement = mCurrentDB.prepare( query, nErr );
1157 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1158 : : {
1159 : 0 : labelSettingsId = sqlite3_column_int( statement.get(), 0 );
1160 : 0 : }
1161 : 0 : const bool result = rename( LegendPatchShapeEntity, labelSettingsId, newName );
1162 : 0 : if ( result )
1163 : : {
1164 : 0 : emit entityRenamed( LegendPatchShapeEntity, oldName, newName );
1165 : 0 : }
1166 : :
1167 : 0 : return result;
1168 : 0 : }
1169 : :
1170 : 0 : QgsLegendPatchShape QgsStyle::defaultPatch( QgsSymbol::SymbolType type, QSizeF size ) const
1171 : : {
1172 : 0 : if ( type == QgsSymbol::Hybrid )
1173 : 0 : return QgsLegendPatchShape();
1174 : :
1175 : 0 : if ( mDefaultPatchCache[ type ].contains( size ) )
1176 : 0 : return mDefaultPatchCache[ type ].value( size );
1177 : :
1178 : 0 : QgsGeometry geom;
1179 : 0 : switch ( type )
1180 : : {
1181 : : case QgsSymbol::Marker:
1182 : 0 : geom = QgsGeometry( std::make_unique< QgsPoint >( static_cast< int >( size.width() ) / 2, static_cast< int >( size.height() ) / 2 ) );
1183 : 0 : break;
1184 : :
1185 : : case QgsSymbol::Line:
1186 : : {
1187 : : // we're adding 0.5 to get rid of blurred preview:
1188 : : // drawing antialiased lines of width 1 at (x,0)-(x,100) creates 2px line
1189 : 0 : double y = static_cast< int >( size.height() ) / 2 + 0.5;
1190 : 0 : geom = QgsGeometry( std::make_unique< QgsLineString >( ( QVector< double >() << 0 << size.width() ),
1191 : 0 : ( QVector< double >() << y << y ) ) );
1192 : 0 : break;
1193 : : }
1194 : :
1195 : : case QgsSymbol::Fill:
1196 : : {
1197 : 0 : geom = QgsGeometry( std::make_unique< QgsPolygon >(
1198 : 0 : new QgsLineString( QVector< double >() << 0 << static_cast< int >( size.width() ) << static_cast< int >( size.width() ) << 0 << 0,
1199 : 0 : QVector< double >() << static_cast< int >( size.height() ) << static_cast< int >( size.height() ) << 0 << 0 << static_cast< int >( size.height() ) ) ) );
1200 : 0 : break;
1201 : : }
1202 : :
1203 : : case QgsSymbol::Hybrid:
1204 : 0 : break;
1205 : : }
1206 : :
1207 : 0 : QgsLegendPatchShape res = QgsLegendPatchShape( type, geom, false );
1208 : 0 : mDefaultPatchCache[ type ][size ] = res;
1209 : 0 : return res;
1210 : 0 : }
1211 : :
1212 : 0 : QList<QList<QPolygonF> > QgsStyle::defaultPatchAsQPolygonF( QgsSymbol::SymbolType type, QSizeF size ) const
1213 : : {
1214 : 0 : if ( type == QgsSymbol::Hybrid )
1215 : 0 : return QList<QList<QPolygonF> >();
1216 : :
1217 : 0 : if ( mDefaultPatchQPolygonFCache[ type ].contains( size ) )
1218 : 0 : return mDefaultPatchQPolygonFCache[ type ].value( size );
1219 : :
1220 : 0 : QList<QList<QPolygonF> > res = defaultPatch( type, size ).toQPolygonF( type, size );
1221 : 0 : mDefaultPatchQPolygonFCache[ type ][size ] = res;
1222 : 0 : return res;
1223 : 0 : }
1224 : :
1225 : 0 : bool QgsStyle::saveSymbol3D( const QString &name, QgsAbstract3DSymbol *symbol, bool favorite, const QStringList &tags )
1226 : : {
1227 : : // insert it into the database
1228 : 0 : QDomDocument doc( QStringLiteral( "dummy" ) );
1229 : 0 : QDomElement elem = doc.createElement( QStringLiteral( "symbol" ) );
1230 : 0 : elem.setAttribute( QStringLiteral( "type" ), symbol->type() );
1231 : 0 : symbol->writeXml( elem, QgsReadWriteContext() );
1232 : :
1233 : 0 : QByteArray xmlArray;
1234 : 0 : QTextStream stream( &xmlArray );
1235 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
1236 : 0 : stream.setCodec( "UTF-8" );
1237 : : #endif
1238 : 0 : elem.save( stream, 4 );
1239 : 0 : QString query = qgs_sqlite3_mprintf( "INSERT INTO symbol3d VALUES (NULL, '%q', '%q', %d);",
1240 : 0 : name.toUtf8().constData(), xmlArray.constData(), ( favorite ? 1 : 0 ) );
1241 : 0 : if ( !runEmptyQuery( query ) )
1242 : : {
1243 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't insert 3d symbol into the database!" ) );
1244 : 0 : return false;
1245 : : }
1246 : :
1247 : 0 : mCachedFavorites[ Symbol3DEntity ].insert( name, favorite );
1248 : :
1249 : 0 : tagSymbol( Symbol3DEntity, name, tags );
1250 : :
1251 : 0 : emit entityAdded( Symbol3DEntity, name );
1252 : :
1253 : 0 : return true;
1254 : 0 : }
1255 : :
1256 : 0 : bool QgsStyle::renameSymbol3D( const QString &oldName, const QString &newName )
1257 : : {
1258 : 0 : if ( m3dSymbols.contains( newName ) )
1259 : : {
1260 : 0 : QgsDebugMsg( QStringLiteral( "3d symbol of new name already exists." ) );
1261 : 0 : return false;
1262 : : }
1263 : :
1264 : 0 : if ( !m3dSymbols.contains( oldName ) )
1265 : 0 : return false;
1266 : 0 : QgsAbstract3DSymbol *symbol = m3dSymbols.take( oldName );
1267 : :
1268 : 0 : m3dSymbols.insert( newName, symbol );
1269 : 0 : mCachedTags[Symbol3DEntity ].remove( oldName );
1270 : 0 : mCachedFavorites[ Symbol3DEntity ].remove( oldName );
1271 : :
1272 : 0 : int labelSettingsId = 0;
1273 : 0 : sqlite3_statement_unique_ptr statement;
1274 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT id FROM symbol3d WHERE name='%q'", oldName.toUtf8().constData() );
1275 : : int nErr;
1276 : 0 : statement = mCurrentDB.prepare( query, nErr );
1277 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1278 : : {
1279 : 0 : labelSettingsId = sqlite3_column_int( statement.get(), 0 );
1280 : 0 : }
1281 : 0 : const bool result = rename( Symbol3DEntity, labelSettingsId, newName );
1282 : 0 : if ( result )
1283 : : {
1284 : 0 : emit entityRenamed( Symbol3DEntity, oldName, newName );
1285 : 0 : }
1286 : :
1287 : 0 : return result;
1288 : 0 : }
1289 : :
1290 : 5 : QStringList QgsStyle::symbol3DNames() const
1291 : : {
1292 : 5 : return m3dSymbols.keys();
1293 : : }
1294 : :
1295 : 0 : QStringList QgsStyle::symbolsOfFavorite( StyleEntity type ) const
1296 : : {
1297 : 0 : if ( !mCurrentDB )
1298 : : {
1299 : 0 : QgsDebugMsg( QStringLiteral( "Cannot Open database for getting favorite symbols" ) );
1300 : 0 : return QStringList();
1301 : : }
1302 : :
1303 : 0 : QString query;
1304 : 0 : switch ( type )
1305 : : {
1306 : : case TagEntity:
1307 : : case SmartgroupEntity:
1308 : 0 : QgsDebugMsg( QStringLiteral( "No such style entity" ) );
1309 : 0 : return QStringList();
1310 : :
1311 : : default:
1312 : 0 : query = qgs_sqlite3_mprintf( QStringLiteral( "SELECT name FROM %1 WHERE favorite=1" ).arg( entityTableName( type ) ).toLocal8Bit().data() );
1313 : 0 : break;
1314 : : }
1315 : :
1316 : : int nErr;
1317 : 0 : sqlite3_statement_unique_ptr statement;
1318 : 0 : statement = mCurrentDB.prepare( query, nErr );
1319 : :
1320 : 0 : QStringList symbols;
1321 : 0 : while ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1322 : : {
1323 : 0 : symbols << statement.columnAsText( 0 );
1324 : : }
1325 : :
1326 : 0 : return symbols;
1327 : 0 : }
1328 : :
1329 : 0 : QStringList QgsStyle::symbolsWithTag( StyleEntity type, int tagid ) const
1330 : : {
1331 : 0 : if ( !mCurrentDB )
1332 : : {
1333 : 0 : QgsDebugMsg( QStringLiteral( "Cannot open database to get symbols of tagid %1" ).arg( tagid ) );
1334 : 0 : return QStringList();
1335 : : }
1336 : :
1337 : 0 : QString subquery;
1338 : 0 : switch ( type )
1339 : : {
1340 : : case TagEntity:
1341 : : case SmartgroupEntity:
1342 : 0 : QgsDebugMsg( QStringLiteral( "Unknown Entity" ) );
1343 : 0 : return QStringList();
1344 : :
1345 : : default:
1346 : 0 : subquery = qgs_sqlite3_mprintf( QStringLiteral( "SELECT %1 FROM %2 WHERE tag_id=%d" ).arg( tagmapEntityIdFieldName( type ),
1347 : 0 : tagmapTableName( type ) ).toLocal8Bit().data(), tagid );
1348 : 0 : break;
1349 : : }
1350 : :
1351 : : int nErr;
1352 : 0 : sqlite3_statement_unique_ptr statement;
1353 : 0 : statement = mCurrentDB.prepare( subquery, nErr );
1354 : :
1355 : : // get the symbol <-> tag connection from the tag map table
1356 : 0 : QStringList symbols;
1357 : 0 : while ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1358 : : {
1359 : 0 : int id = sqlite3_column_int( statement.get(), 0 );
1360 : :
1361 : 0 : const QString query = qgs_sqlite3_mprintf( QStringLiteral( "SELECT name FROM %1 WHERE id=%d" ).arg( entityTableName( type ) ).toLocal8Bit().data(), id );
1362 : :
1363 : : int rc;
1364 : 0 : sqlite3_statement_unique_ptr statement2;
1365 : 0 : statement2 = mCurrentDB.prepare( query, rc );
1366 : 0 : while ( rc == SQLITE_OK && sqlite3_step( statement2.get() ) == SQLITE_ROW )
1367 : : {
1368 : 0 : symbols << statement2.columnAsText( 0 );
1369 : : }
1370 : 0 : }
1371 : :
1372 : 0 : return symbols;
1373 : 0 : }
1374 : :
1375 : 0 : int QgsStyle::addTag( const QString &tagname )
1376 : : {
1377 : 0 : if ( !mCurrentDB )
1378 : 0 : return 0;
1379 : 0 : sqlite3_statement_unique_ptr statement;
1380 : :
1381 : 0 : QString query = qgs_sqlite3_mprintf( "INSERT INTO tag VALUES (NULL, '%q')", tagname.toUtf8().constData() );
1382 : : int nErr;
1383 : 0 : statement = mCurrentDB.prepare( query, nErr );
1384 : 0 : if ( nErr == SQLITE_OK )
1385 : 0 : ( void )sqlite3_step( statement.get() );
1386 : :
1387 : 0 : QgsSettings settings;
1388 : 0 : settings.setValue( QStringLiteral( "qgis/symbolsListGroupsIndex" ), 0 );
1389 : :
1390 : 0 : emit groupsModified();
1391 : :
1392 : 0 : return static_cast< int >( sqlite3_last_insert_rowid( mCurrentDB.get() ) );
1393 : 0 : }
1394 : :
1395 : 0 : QStringList QgsStyle::tags() const
1396 : : {
1397 : 0 : if ( !mCurrentDB )
1398 : 0 : return QStringList();
1399 : :
1400 : 0 : sqlite3_statement_unique_ptr statement;
1401 : :
1402 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT name FROM tag" );
1403 : : int nError;
1404 : 0 : statement = mCurrentDB.prepare( query, nError );
1405 : :
1406 : 0 : QStringList tagList;
1407 : 0 : while ( nError == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1408 : : {
1409 : 0 : tagList << statement.columnAsText( 0 );
1410 : : }
1411 : :
1412 : 0 : return tagList;
1413 : 0 : }
1414 : :
1415 : 0 : bool QgsStyle::rename( StyleEntity type, int id, const QString &newName )
1416 : : {
1417 : 0 : const QString query = qgs_sqlite3_mprintf( QStringLiteral( "UPDATE %1 SET name='%q' WHERE id=%d" ).arg( entityTableName( type ) ).toLocal8Bit().data(), newName.toUtf8().constData(), id );
1418 : :
1419 : 0 : const bool result = runEmptyQuery( query );
1420 : 0 : if ( !result )
1421 : : {
1422 : 0 : mErrorString = QStringLiteral( "Could not rename!" );
1423 : 0 : }
1424 : : else
1425 : : {
1426 : 0 : mCachedTags.clear();
1427 : 0 : mCachedFavorites.clear();
1428 : :
1429 : 0 : switch ( type )
1430 : : {
1431 : : case TagEntity:
1432 : : {
1433 : 0 : emit groupsModified();
1434 : 0 : break;
1435 : : }
1436 : :
1437 : : case SmartgroupEntity:
1438 : : {
1439 : 0 : emit groupsModified();
1440 : 0 : break;
1441 : : }
1442 : :
1443 : : default:
1444 : 0 : break;
1445 : : }
1446 : : }
1447 : 0 : return result;
1448 : 0 : }
1449 : :
1450 : 0 : bool QgsStyle::remove( StyleEntity type, int id )
1451 : : {
1452 : 0 : bool groupRemoved = false;
1453 : 0 : QString query;
1454 : 0 : switch ( type )
1455 : : {
1456 : : case TagEntity:
1457 : 0 : query = qgs_sqlite3_mprintf( "DELETE FROM tag WHERE id=%d; DELETE FROM tagmap WHERE tag_id=%d", id, id );
1458 : 0 : groupRemoved = true;
1459 : 0 : break;
1460 : : case SmartgroupEntity:
1461 : 0 : query = qgs_sqlite3_mprintf( "DELETE FROM smartgroup WHERE id=%d", id );
1462 : 0 : groupRemoved = true;
1463 : 0 : break;
1464 : :
1465 : : default:
1466 : 0 : query = qgs_sqlite3_mprintf( QStringLiteral( "DELETE FROM %1 WHERE id=%d; DELETE FROM %2 WHERE %3=%d" ).arg(
1467 : 0 : entityTableName( type ),
1468 : 0 : tagmapTableName( type ),
1469 : 0 : tagmapEntityIdFieldName( type )
1470 : 0 : ).toLocal8Bit().data(), id, id );
1471 : 0 : break;
1472 : : }
1473 : :
1474 : 0 : bool result = false;
1475 : 0 : if ( !runEmptyQuery( query ) )
1476 : : {
1477 : 0 : QgsDebugMsg( QStringLiteral( "Could not delete entity!" ) );
1478 : 0 : }
1479 : : else
1480 : : {
1481 : 0 : mCachedTags.clear();
1482 : 0 : mCachedFavorites.clear();
1483 : :
1484 : 0 : if ( groupRemoved )
1485 : : {
1486 : 0 : QgsSettings settings;
1487 : 0 : settings.setValue( QStringLiteral( "qgis/symbolsListGroupsIndex" ), 0 );
1488 : :
1489 : 0 : emit groupsModified();
1490 : 0 : }
1491 : 0 : result = true;
1492 : : }
1493 : 0 : return result;
1494 : 0 : }
1495 : :
1496 : 0 : bool QgsStyle::removeEntityByName( QgsStyle::StyleEntity type, const QString &name )
1497 : : {
1498 : 0 : switch ( type )
1499 : : {
1500 : : case QgsStyle::TagEntity:
1501 : : case QgsStyle::SmartgroupEntity:
1502 : 0 : return false;
1503 : :
1504 : : case QgsStyle::SymbolEntity:
1505 : : {
1506 : 0 : std::unique_ptr< QgsSymbol > symbol( mSymbols.take( name ) );
1507 : 0 : if ( !symbol )
1508 : 0 : return false;
1509 : :
1510 : 0 : break;
1511 : 0 : }
1512 : :
1513 : : case QgsStyle::Symbol3DEntity:
1514 : : {
1515 : 0 : std::unique_ptr< QgsAbstract3DSymbol > symbol( m3dSymbols.take( name ) );
1516 : 0 : if ( !symbol )
1517 : 0 : return false;
1518 : :
1519 : 0 : break;
1520 : 0 : }
1521 : :
1522 : : case QgsStyle::ColorrampEntity:
1523 : : {
1524 : 0 : std::unique_ptr< QgsColorRamp > ramp( mColorRamps.take( name ) );
1525 : 0 : if ( !ramp )
1526 : 0 : return false;
1527 : 0 : break;
1528 : 0 : }
1529 : :
1530 : : case QgsStyle::TextFormatEntity:
1531 : : {
1532 : 0 : if ( !mTextFormats.contains( name ) )
1533 : 0 : return false;
1534 : :
1535 : 0 : mTextFormats.remove( name );
1536 : 0 : break;
1537 : : }
1538 : :
1539 : : case QgsStyle::LabelSettingsEntity:
1540 : : {
1541 : 0 : if ( !mLabelSettings.contains( name ) )
1542 : 0 : return false;
1543 : :
1544 : 0 : mLabelSettings.remove( name );
1545 : 0 : break;
1546 : : }
1547 : :
1548 : : case QgsStyle::LegendPatchShapeEntity:
1549 : : {
1550 : 0 : if ( !mLegendPatchShapes.contains( name ) )
1551 : 0 : return false;
1552 : :
1553 : 0 : mLegendPatchShapes.remove( name );
1554 : 0 : break;
1555 : : }
1556 : : }
1557 : :
1558 : 0 : if ( !mCurrentDB )
1559 : : {
1560 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database to modify." ) );
1561 : 0 : return false;
1562 : : }
1563 : :
1564 : 0 : const int id = entityId( type, name );
1565 : 0 : if ( !id )
1566 : : {
1567 : 0 : QgsDebugMsg( "No matching entity for deleting in database: " + name );
1568 : 0 : }
1569 : :
1570 : 0 : const bool result = remove( type, id );
1571 : 0 : if ( result )
1572 : : {
1573 : 0 : mCachedTags[ type ].remove( name );
1574 : 0 : mCachedFavorites[ type ].remove( name );
1575 : :
1576 : 0 : switch ( type )
1577 : : {
1578 : : case SymbolEntity:
1579 : 0 : emit symbolRemoved( name );
1580 : 0 : break;
1581 : :
1582 : : case ColorrampEntity:
1583 : 0 : emit rampRemoved( name );
1584 : 0 : break;
1585 : :
1586 : : case TextFormatEntity:
1587 : 0 : emit textFormatRemoved( name );
1588 : 0 : break;
1589 : :
1590 : : case LabelSettingsEntity:
1591 : 0 : emit labelSettingsRemoved( name );
1592 : 0 : break;
1593 : :
1594 : : default:
1595 : : // these specific signals should be discouraged -- don't add them for new entity types!
1596 : 0 : break;
1597 : : }
1598 : 0 : emit entityRemoved( type, name );
1599 : 0 : }
1600 : 0 : return result;
1601 : 0 : }
1602 : :
1603 : 5 : bool QgsStyle::runEmptyQuery( const QString &query )
1604 : : {
1605 : 5 : if ( !mCurrentDB )
1606 : 0 : return false;
1607 : :
1608 : 5 : char *zErr = nullptr;
1609 : 5 : int nErr = sqlite3_exec( mCurrentDB.get(), query.toUtf8().constData(), nullptr, nullptr, &zErr );
1610 : :
1611 : 5 : if ( nErr != SQLITE_OK )
1612 : : {
1613 : 0 : QgsDebugMsg( zErr );
1614 : 0 : sqlite3_free( zErr );
1615 : 0 : }
1616 : :
1617 : 5 : return nErr == SQLITE_OK;
1618 : 5 : }
1619 : :
1620 : 0 : bool QgsStyle::addFavorite( StyleEntity type, const QString &name )
1621 : : {
1622 : 0 : QString query;
1623 : :
1624 : 0 : switch ( type )
1625 : : {
1626 : : case TagEntity:
1627 : : case SmartgroupEntity:
1628 : 0 : QgsDebugMsg( QStringLiteral( "Wrong entity value. cannot apply group" ) );
1629 : 0 : return false;
1630 : :
1631 : : default:
1632 : 0 : query = qgs_sqlite3_mprintf( QStringLiteral( "UPDATE %1 SET favorite=1 WHERE name='%q'" ).arg( entityTableName( type ) ).toLocal8Bit().data(),
1633 : 0 : name.toUtf8().constData() );
1634 : 0 : break;
1635 : : }
1636 : :
1637 : 0 : const bool res = runEmptyQuery( query );
1638 : 0 : if ( res )
1639 : : {
1640 : 0 : switch ( type )
1641 : : {
1642 : : case TagEntity:
1643 : : case SmartgroupEntity:
1644 : 0 : break;
1645 : :
1646 : : default:
1647 : 0 : mCachedFavorites[ type ].insert( name, true );
1648 : 0 : break;
1649 : : }
1650 : 0 : emit favoritedChanged( type, name, true );
1651 : 0 : }
1652 : :
1653 : 0 : return res;
1654 : 0 : }
1655 : :
1656 : 0 : bool QgsStyle::removeFavorite( StyleEntity type, const QString &name )
1657 : : {
1658 : 0 : QString query;
1659 : :
1660 : 0 : switch ( type )
1661 : : {
1662 : : case TagEntity:
1663 : : case SmartgroupEntity:
1664 : 0 : QgsDebugMsg( QStringLiteral( "Wrong entity value. cannot apply group" ) );
1665 : 0 : return false;
1666 : :
1667 : : default:
1668 : 0 : query = qgs_sqlite3_mprintf( QStringLiteral( "UPDATE %1 SET favorite=0 WHERE name='%q'" ).arg( entityTableName( type ) ).toLocal8Bit().data(), name.toUtf8().constData() );
1669 : 0 : break;
1670 : : }
1671 : :
1672 : 0 : const bool res = runEmptyQuery( query );
1673 : 0 : if ( res )
1674 : : {
1675 : 0 : mCachedFavorites[ type ].insert( name, false );
1676 : 0 : emit favoritedChanged( type, name, false );
1677 : 0 : }
1678 : :
1679 : 0 : return res;
1680 : 0 : }
1681 : :
1682 : 0 : QStringList QgsStyle::findSymbols( StyleEntity type, const QString &qword )
1683 : : {
1684 : 0 : if ( !mCurrentDB )
1685 : : {
1686 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database to search" ) );
1687 : 0 : return QStringList();
1688 : : }
1689 : :
1690 : : // first find symbols with matching name
1691 : 0 : QString item;
1692 : 0 : switch ( type )
1693 : : {
1694 : : case TagEntity:
1695 : : case SmartgroupEntity:
1696 : 0 : return QStringList();
1697 : :
1698 : : default:
1699 : 0 : item = entityTableName( type );
1700 : 0 : break;
1701 : : }
1702 : :
1703 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT name FROM %q WHERE name LIKE '%%%q%%'",
1704 : 0 : item.toUtf8().constData(), qword.toUtf8().constData() );
1705 : :
1706 : 0 : sqlite3_statement_unique_ptr statement;
1707 : 0 : int nErr; statement = mCurrentDB.prepare( query, nErr );
1708 : :
1709 : 0 : QSet< QString > symbols;
1710 : 0 : while ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1711 : : {
1712 : 0 : symbols << statement.columnAsText( 0 );
1713 : : }
1714 : :
1715 : : // next add symbols with matching tags
1716 : 0 : query = qgs_sqlite3_mprintf( "SELECT id FROM tag WHERE name LIKE '%%%q%%'", qword.toUtf8().constData() );
1717 : 0 : statement = mCurrentDB.prepare( query, nErr );
1718 : :
1719 : 0 : QStringList tagids;
1720 : 0 : while ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1721 : : {
1722 : 0 : tagids << statement.columnAsText( 0 );
1723 : : }
1724 : :
1725 : 0 : QString dummy = tagids.join( QLatin1String( ", " ) );
1726 : 0 : query = qgs_sqlite3_mprintf( QStringLiteral( "SELECT %1 FROM %2 WHERE tag_id IN (%q)" ).arg( tagmapEntityIdFieldName( type ),
1727 : 0 : tagmapTableName( type ) ).toLocal8Bit().data(), dummy.toUtf8().constData() );
1728 : :
1729 : 0 : statement = mCurrentDB.prepare( query, nErr );
1730 : :
1731 : 0 : QStringList symbolids;
1732 : 0 : while ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1733 : : {
1734 : 0 : symbolids << statement.columnAsText( 0 );
1735 : : }
1736 : :
1737 : 0 : dummy = symbolids.join( QLatin1String( ", " ) );
1738 : 0 : query = qgs_sqlite3_mprintf( "SELECT name FROM %q WHERE id IN (%q)",
1739 : 0 : item.toUtf8().constData(), dummy.toUtf8().constData() );
1740 : 0 : statement = mCurrentDB.prepare( query, nErr );
1741 : 0 : while ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1742 : : {
1743 : 0 : symbols << statement.columnAsText( 0 );
1744 : : }
1745 : :
1746 : 0 : return qgis::setToList( symbols );
1747 : 0 : }
1748 : :
1749 : 0 : bool QgsStyle::tagSymbol( StyleEntity type, const QString &symbol, const QStringList &tags )
1750 : : {
1751 : 0 : if ( !mCurrentDB )
1752 : : {
1753 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database to tag." ) );
1754 : 0 : return false;
1755 : : }
1756 : :
1757 : 0 : int symbolid = 0;
1758 : 0 : switch ( type )
1759 : : {
1760 : : case TagEntity:
1761 : : case SmartgroupEntity:
1762 : 0 : return false;
1763 : :
1764 : : default:
1765 : 0 : symbolid = entityId( type, symbol );
1766 : 0 : break;
1767 : : }
1768 : :
1769 : 0 : if ( !symbolid )
1770 : : {
1771 : 0 : QgsDebugMsg( QStringLiteral( "No such symbol for tagging in database: " ) + symbol );
1772 : 0 : return false;
1773 : : }
1774 : :
1775 : 0 : QString tag;
1776 : 0 : const auto constTags = tags;
1777 : 0 : for ( const QString &t : constTags )
1778 : : {
1779 : 0 : tag = t.trimmed();
1780 : 0 : if ( !tag.isEmpty() )
1781 : : {
1782 : : // sql: gets the id of the tag if present or insert the tag and get the id of the tag
1783 : 0 : int tagid( tagId( tag ) );
1784 : 0 : if ( ! tagid )
1785 : : {
1786 : 0 : tagid = addTag( tag );
1787 : 0 : }
1788 : :
1789 : : // Now map the tag to the symbol if it's not already tagged
1790 : 0 : if ( !symbolHasTag( type, symbol, tag ) )
1791 : : {
1792 : 0 : QString query = qgs_sqlite3_mprintf( QStringLiteral( "INSERT INTO %1 VALUES (%d,%d)" ).arg( tagmapTableName( type ) ).toLocal8Bit().data(), tagid, symbolid );
1793 : :
1794 : 0 : char *zErr = nullptr;
1795 : : int nErr;
1796 : 0 : nErr = sqlite3_exec( mCurrentDB.get(), query.toUtf8().constData(), nullptr, nullptr, &zErr );
1797 : 0 : if ( nErr )
1798 : : {
1799 : 0 : QgsDebugMsg( zErr );
1800 : 0 : sqlite3_free( zErr );
1801 : 0 : }
1802 : 0 : }
1803 : 0 : }
1804 : : }
1805 : :
1806 : 0 : clearCachedTags( type, symbol );
1807 : 0 : emit entityTagsChanged( type, symbol, tagsOfSymbol( type, symbol ) );
1808 : :
1809 : 0 : return true;
1810 : 0 : }
1811 : :
1812 : 0 : bool QgsStyle::detagSymbol( StyleEntity type, const QString &symbol, const QStringList &tags )
1813 : : {
1814 : 0 : if ( !mCurrentDB )
1815 : : {
1816 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database for detagging." ) );
1817 : 0 : return false;
1818 : : }
1819 : :
1820 : 0 : switch ( type )
1821 : : {
1822 : : case TagEntity:
1823 : : case SmartgroupEntity:
1824 : 0 : return false;
1825 : :
1826 : : default:
1827 : 0 : break;
1828 : : }
1829 : :
1830 : 0 : const int symbolid = entityId( type, symbol );
1831 : 0 : if ( symbolid == 0 )
1832 : 0 : return false;
1833 : :
1834 : : int nErr;
1835 : 0 : QString query;
1836 : 0 : const auto constTags = tags;
1837 : 0 : for ( const QString &tag : constTags )
1838 : : {
1839 : 0 : query = qgs_sqlite3_mprintf( "SELECT id FROM tag WHERE name='%q'", tag.toUtf8().constData() );
1840 : :
1841 : 0 : sqlite3_statement_unique_ptr statement2;
1842 : 0 : statement2 = mCurrentDB.prepare( query, nErr );
1843 : :
1844 : 0 : int tagid = 0;
1845 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement2.get() ) == SQLITE_ROW )
1846 : : {
1847 : 0 : tagid = sqlite3_column_int( statement2.get(), 0 );
1848 : 0 : }
1849 : :
1850 : 0 : if ( tagid )
1851 : : {
1852 : : // remove from the tagmap
1853 : 0 : const QString query = qgs_sqlite3_mprintf( QStringLiteral( "DELETE FROM %1 WHERE tag_id=%d AND %2=%d" ).arg( tagmapTableName( type ), tagmapEntityIdFieldName( type ) ).toLocal8Bit().data(), tagid, symbolid );
1854 : 0 : runEmptyQuery( query );
1855 : 0 : }
1856 : 0 : }
1857 : :
1858 : 0 : clearCachedTags( type, symbol );
1859 : 0 : emit entityTagsChanged( type, symbol, tagsOfSymbol( type, symbol ) );
1860 : :
1861 : : // TODO Perform tag cleanup
1862 : : // check the number of entries for a given tag in the tagmap
1863 : : // if the count is 0, then remove( TagEntity, tagid )
1864 : 0 : return true;
1865 : 0 : }
1866 : :
1867 : 0 : bool QgsStyle::detagSymbol( StyleEntity type, const QString &symbol )
1868 : : {
1869 : 0 : if ( !mCurrentDB )
1870 : : {
1871 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database for detagging." ) );
1872 : 0 : return false;
1873 : : }
1874 : :
1875 : 0 : switch ( type )
1876 : : {
1877 : : case TagEntity:
1878 : : case SmartgroupEntity:
1879 : 0 : return false;
1880 : :
1881 : : default:
1882 : 0 : break;
1883 : : }
1884 : :
1885 : 0 : const int symbolid = entityId( type, symbol );
1886 : 0 : if ( symbolid == 0 )
1887 : : {
1888 : 0 : return false;
1889 : : }
1890 : :
1891 : : // remove all tags
1892 : 0 : const QString query = qgs_sqlite3_mprintf( QStringLiteral( "DELETE FROM %1 WHERE %2=%d" ).arg( tagmapTableName( type ),
1893 : 0 : tagmapEntityIdFieldName( type ) ).toLocal8Bit().data(), symbolid );
1894 : 0 : runEmptyQuery( query );
1895 : :
1896 : 0 : clearCachedTags( type, symbol );
1897 : 0 : emit entityTagsChanged( type, symbol, QStringList() );
1898 : :
1899 : : // TODO Perform tag cleanup
1900 : : // check the number of entries for a given tag in the tagmap
1901 : : // if the count is 0, then remove( TagEntity, tagid )
1902 : 0 : return true;
1903 : 0 : }
1904 : :
1905 : 0 : QStringList QgsStyle::tagsOfSymbol( StyleEntity type, const QString &symbol )
1906 : : {
1907 : 0 : switch ( type )
1908 : : {
1909 : : case TagEntity:
1910 : : case SmartgroupEntity:
1911 : 0 : return QStringList();
1912 : :
1913 : : default:
1914 : 0 : if ( mCachedTags[ type ].contains( symbol ) )
1915 : 0 : return mCachedTags[ type ].value( symbol );
1916 : 0 : break;
1917 : : }
1918 : :
1919 : 0 : if ( !mCurrentDB )
1920 : : {
1921 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database for getting the tags." ) );
1922 : 0 : return QStringList();
1923 : : }
1924 : :
1925 : 0 : int symbolid = entityId( type, symbol );
1926 : 0 : if ( !symbolid )
1927 : 0 : return QStringList();
1928 : :
1929 : : // get the ids of tags for the symbol
1930 : 0 : const QString query = qgs_sqlite3_mprintf( QStringLiteral( "SELECT tag_id FROM %1 WHERE %2=%d" ).arg( tagmapTableName( type ),
1931 : 0 : tagmapEntityIdFieldName( type ) ).toLocal8Bit().data(), symbolid );
1932 : :
1933 : 0 : sqlite3_statement_unique_ptr statement;
1934 : 0 : int nErr; statement = mCurrentDB.prepare( query, nErr );
1935 : :
1936 : 0 : QStringList tagList;
1937 : 0 : while ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
1938 : : {
1939 : 0 : QString subquery = qgs_sqlite3_mprintf( "SELECT name FROM tag WHERE id=%d", sqlite3_column_int( statement.get(), 0 ) );
1940 : :
1941 : 0 : sqlite3_statement_unique_ptr statement2;
1942 : : int pErr;
1943 : 0 : statement2 = mCurrentDB.prepare( subquery, pErr );
1944 : 0 : if ( pErr == SQLITE_OK && sqlite3_step( statement2.get() ) == SQLITE_ROW )
1945 : : {
1946 : 0 : tagList << statement2.columnAsText( 0 );
1947 : 0 : }
1948 : 0 : }
1949 : :
1950 : : // update cache
1951 : 0 : mCachedTags[ type ].insert( symbol, tagList );
1952 : :
1953 : 0 : return tagList;
1954 : 0 : }
1955 : :
1956 : 0 : bool QgsStyle::isFavorite( QgsStyle::StyleEntity type, const QString &name )
1957 : : {
1958 : 0 : if ( !mCurrentDB )
1959 : : {
1960 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database for getting the tags." ) );
1961 : 0 : return false;
1962 : : }
1963 : :
1964 : 0 : switch ( type )
1965 : : {
1966 : : case TagEntity:
1967 : : case SmartgroupEntity:
1968 : 0 : return false;
1969 : :
1970 : : default:
1971 : 0 : if ( mCachedFavorites[ type ].contains( name ) )
1972 : 0 : return mCachedFavorites[ type ].value( name );
1973 : 0 : break;
1974 : : }
1975 : :
1976 : 0 : const QStringList names = allNames( type );
1977 : 0 : if ( !names.contains( name ) )
1978 : 0 : return false; // entity doesn't exist
1979 : :
1980 : : // for efficiency, retrieve names of all favorited symbols and store them in cache
1981 : 0 : const QStringList favorites = symbolsOfFavorite( type );
1982 : 0 : bool res = false;
1983 : 0 : for ( const QString &n : names )
1984 : : {
1985 : 0 : const bool isFav = favorites.contains( n );
1986 : 0 : if ( n == name )
1987 : 0 : res = isFav;
1988 : :
1989 : 0 : mCachedFavorites[ type ].insert( n, isFav );
1990 : : }
1991 : 0 : return res;
1992 : 0 : }
1993 : :
1994 : 0 : bool QgsStyle::symbolHasTag( StyleEntity type, const QString &symbol, const QString &tag )
1995 : : {
1996 : 0 : if ( !mCurrentDB )
1997 : : {
1998 : 0 : QgsDebugMsg( QStringLiteral( "Sorry! Cannot open database for getting the tags." ) );
1999 : 0 : return false;
2000 : : }
2001 : :
2002 : 0 : int symbolid = 0;
2003 : 0 : switch ( type )
2004 : : {
2005 : : case TagEntity:
2006 : : case SmartgroupEntity:
2007 : 0 : return false;
2008 : :
2009 : : default:
2010 : 0 : symbolid = entityId( type, symbol );
2011 : 0 : break;
2012 : : }
2013 : :
2014 : 0 : if ( !symbolid )
2015 : : {
2016 : 0 : return false;
2017 : : }
2018 : 0 : int tagid = tagId( tag );
2019 : 0 : if ( !tagid )
2020 : : {
2021 : 0 : return false;
2022 : : }
2023 : :
2024 : : // get the ids of tags for the symbol
2025 : 0 : const QString query = qgs_sqlite3_mprintf( QStringLiteral( "SELECT tag_id FROM %1 WHERE tag_id=%d AND %2=%d" ).arg( tagmapTableName( type ),
2026 : 0 : tagmapEntityIdFieldName( type ) ).toLocal8Bit().data(), tagid, symbolid );
2027 : :
2028 : 0 : sqlite3_statement_unique_ptr statement;
2029 : 0 : int nErr; statement = mCurrentDB.prepare( query, nErr );
2030 : :
2031 : 0 : return ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW );
2032 : 0 : }
2033 : :
2034 : 0 : QString QgsStyle::tag( int id ) const
2035 : : {
2036 : 0 : if ( !mCurrentDB )
2037 : 0 : return QString();
2038 : :
2039 : 0 : sqlite3_statement_unique_ptr statement;
2040 : :
2041 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT name FROM tag WHERE id=%d", id );
2042 : : int nError;
2043 : 0 : statement = mCurrentDB.prepare( query, nError );
2044 : :
2045 : 0 : QString tag;
2046 : 0 : if ( nError == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
2047 : : {
2048 : 0 : tag = statement.columnAsText( 0 );
2049 : 0 : }
2050 : :
2051 : 0 : return tag;
2052 : 0 : }
2053 : :
2054 : 0 : int QgsStyle::getId( const QString &table, const QString &name )
2055 : : {
2056 : 0 : QString lowerName( name.toLower() );
2057 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT id FROM %q WHERE LOWER(name)='%q'", table.toUtf8().constData(), lowerName.toUtf8().constData() );
2058 : :
2059 : 0 : sqlite3_statement_unique_ptr statement;
2060 : 0 : int nErr; statement = mCurrentDB.prepare( query, nErr );
2061 : :
2062 : 0 : int id = 0;
2063 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
2064 : : {
2065 : 0 : id = sqlite3_column_int( statement.get(), 0 );
2066 : 0 : }
2067 : : else
2068 : : {
2069 : : // Try the name without lowercase conversion
2070 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT id FROM %q WHERE name='%q'", table.toUtf8().constData(), name.toUtf8().constData() );
2071 : :
2072 : 0 : sqlite3_statement_unique_ptr statement;
2073 : 0 : int nErr; statement = mCurrentDB.prepare( query, nErr );
2074 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
2075 : : {
2076 : 0 : id = sqlite3_column_int( statement.get(), 0 );
2077 : 0 : }
2078 : 0 : }
2079 : :
2080 : 0 : return id;
2081 : 0 : }
2082 : :
2083 : 0 : QString QgsStyle::getName( const QString &table, int id ) const
2084 : : {
2085 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT name FROM %q WHERE id='%q'", table.toUtf8().constData(), QString::number( id ).toUtf8().constData() );
2086 : :
2087 : 0 : sqlite3_statement_unique_ptr statement;
2088 : 0 : int nErr; statement = mCurrentDB.prepare( query, nErr );
2089 : :
2090 : 0 : QString name;
2091 : 0 : if ( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
2092 : : {
2093 : 0 : name = statement.columnAsText( 0 );
2094 : 0 : }
2095 : :
2096 : 0 : return name;
2097 : 0 : }
2098 : :
2099 : 0 : int QgsStyle::symbolId( const QString &name )
2100 : : {
2101 : 0 : return getId( QStringLiteral( "symbol" ), name );
2102 : 0 : }
2103 : :
2104 : 0 : int QgsStyle::entityId( QgsStyle::StyleEntity type, const QString &name )
2105 : : {
2106 : 0 : return getId( entityTableName( type ), name );
2107 : 0 : }
2108 : :
2109 : 0 : int QgsStyle::colorrampId( const QString &name )
2110 : : {
2111 : 0 : return getId( QStringLiteral( "colorramp" ), name );
2112 : 0 : }
2113 : :
2114 : 0 : QgsTextFormat QgsStyle::textFormat( const QString &name ) const
2115 : : {
2116 : 0 : return mTextFormats.value( name );
2117 : 0 : }
2118 : :
2119 : 0 : int QgsStyle::textFormatCount() const
2120 : : {
2121 : 0 : return mTextFormats.count();
2122 : : }
2123 : :
2124 : 5 : QStringList QgsStyle::textFormatNames() const
2125 : : {
2126 : 5 : return mTextFormats.keys();
2127 : : }
2128 : :
2129 : 0 : int QgsStyle::textFormatId( const QString &name )
2130 : : {
2131 : 0 : return getId( QStringLiteral( "textformat" ), name );
2132 : 0 : }
2133 : :
2134 : 0 : QgsPalLayerSettings QgsStyle::labelSettings( const QString &name ) const
2135 : : {
2136 : 0 : return mLabelSettings.value( name );
2137 : 0 : }
2138 : :
2139 : 0 : QgsLegendPatchShape QgsStyle::legendPatchShape( const QString &name ) const
2140 : : {
2141 : 0 : return mLegendPatchShapes.value( name );
2142 : 0 : }
2143 : :
2144 : 0 : int QgsStyle::legendPatchShapesCount() const
2145 : : {
2146 : 0 : return mLegendPatchShapes.count();
2147 : : }
2148 : :
2149 : 0 : QgsSymbol::SymbolType QgsStyle::legendPatchShapeSymbolType( const QString &name ) const
2150 : : {
2151 : 0 : if ( !mLegendPatchShapes.contains( name ) )
2152 : 0 : return QgsSymbol::Hybrid;
2153 : :
2154 : 0 : return mLegendPatchShapes.value( name ).symbolType();
2155 : 0 : }
2156 : :
2157 : 0 : QgsAbstract3DSymbol *QgsStyle::symbol3D( const QString &name ) const
2158 : : {
2159 : 0 : return m3dSymbols.contains( name ) ? m3dSymbols.value( name )->clone() : nullptr;
2160 : : }
2161 : :
2162 : 0 : int QgsStyle::symbol3DCount() const
2163 : : {
2164 : 0 : return m3dSymbols.count();
2165 : : }
2166 : :
2167 : 0 : QList<QgsWkbTypes::GeometryType> QgsStyle::symbol3DCompatibleGeometryTypes( const QString &name ) const
2168 : : {
2169 : 0 : if ( !m3dSymbols.contains( name ) )
2170 : 0 : return QList<QgsWkbTypes::GeometryType>();
2171 : :
2172 : 0 : return m3dSymbols.value( name )->compatibleGeometryTypes();
2173 : 0 : }
2174 : :
2175 : 0 : QgsWkbTypes::GeometryType QgsStyle::labelSettingsLayerType( const QString &name ) const
2176 : : {
2177 : 0 : if ( !mLabelSettings.contains( name ) )
2178 : 0 : return QgsWkbTypes::UnknownGeometry;
2179 : :
2180 : 0 : return mLabelSettings.value( name ).layerType;
2181 : 0 : }
2182 : :
2183 : 0 : int QgsStyle::labelSettingsCount() const
2184 : : {
2185 : 0 : return mLabelSettings.count();
2186 : : }
2187 : :
2188 : 5 : QStringList QgsStyle::labelSettingsNames() const
2189 : : {
2190 : 5 : return mLabelSettings.keys();
2191 : : }
2192 : :
2193 : 0 : int QgsStyle::labelSettingsId( const QString &name )
2194 : : {
2195 : 0 : return getId( QStringLiteral( "labelsettings" ), name );
2196 : 0 : }
2197 : :
2198 : 5 : QStringList QgsStyle::legendPatchShapeNames() const
2199 : : {
2200 : 5 : return mLegendPatchShapes.keys();
2201 : : }
2202 : :
2203 : 0 : const QgsSymbol *QgsStyle::previewSymbolForPatchShape( const QgsLegendPatchShape &shape ) const
2204 : : {
2205 : 0 : switch ( shape.symbolType() )
2206 : : {
2207 : : case QgsSymbol::Marker:
2208 : 0 : return mPatchMarkerSymbol.get();
2209 : :
2210 : : case QgsSymbol::Line:
2211 : 0 : return mPatchLineSymbol.get();
2212 : :
2213 : : case QgsSymbol::Fill:
2214 : 0 : return mPatchFillSymbol.get();
2215 : :
2216 : : case QgsSymbol::Hybrid:
2217 : 0 : break;
2218 : : }
2219 : 0 : return nullptr;
2220 : 0 : }
2221 : :
2222 : 0 : int QgsStyle::tagId( const QString &name )
2223 : : {
2224 : 0 : return getId( QStringLiteral( "tag" ), name );
2225 : 0 : }
2226 : :
2227 : 0 : int QgsStyle::smartgroupId( const QString &name )
2228 : : {
2229 : 0 : return getId( QStringLiteral( "smartgroup" ), name );
2230 : 0 : }
2231 : :
2232 : 30 : QStringList QgsStyle::allNames( QgsStyle::StyleEntity type ) const
2233 : : {
2234 : 30 : switch ( type )
2235 : : {
2236 : : case SymbolEntity:
2237 : 5 : return symbolNames();
2238 : :
2239 : : case ColorrampEntity:
2240 : 5 : return colorRampNames();
2241 : :
2242 : : case TextFormatEntity:
2243 : 5 : return textFormatNames();
2244 : :
2245 : : case LabelSettingsEntity:
2246 : 5 : return labelSettingsNames();
2247 : :
2248 : : case LegendPatchShapeEntity:
2249 : 5 : return legendPatchShapeNames();
2250 : :
2251 : : case Symbol3DEntity:
2252 : 5 : return symbol3DNames();
2253 : :
2254 : : case TagEntity:
2255 : 0 : return tags();
2256 : :
2257 : : case SmartgroupEntity:
2258 : 0 : return smartgroupNames();
2259 : : }
2260 : 0 : return QStringList();
2261 : 30 : }
2262 : :
2263 : 0 : int QgsStyle::addSmartgroup( const QString &name, const QString &op, const QgsSmartConditionMap &conditions )
2264 : : {
2265 : 0 : return addSmartgroup( name, op, conditions.values( QStringLiteral( "tag" ) ),
2266 : 0 : conditions.values( QStringLiteral( "!tag" ) ),
2267 : 0 : conditions.values( QStringLiteral( "name" ) ),
2268 : 0 : conditions.values( QStringLiteral( "!name" ) ) );
2269 : 0 : }
2270 : :
2271 : 0 : int QgsStyle::addSmartgroup( const QString &name, const QString &op, const QStringList &matchTag, const QStringList &noMatchTag, const QStringList &matchName, const QStringList &noMatchName )
2272 : : {
2273 : 0 : QDomDocument doc( QStringLiteral( "dummy" ) );
2274 : 0 : QDomElement smartEl = doc.createElement( QStringLiteral( "smartgroup" ) );
2275 : 0 : smartEl.setAttribute( QStringLiteral( "name" ), name );
2276 : 0 : smartEl.setAttribute( QStringLiteral( "operator" ), op );
2277 : :
2278 : 0 : auto addCondition = [&doc, &smartEl]( const QString & constraint, const QStringList & parameters )
2279 : : {
2280 : 0 : for ( const QString ¶m : parameters )
2281 : : {
2282 : 0 : QDomElement condEl = doc.createElement( QStringLiteral( "condition" ) );
2283 : 0 : condEl.setAttribute( QStringLiteral( "constraint" ), constraint );
2284 : 0 : condEl.setAttribute( QStringLiteral( "param" ), param );
2285 : 0 : smartEl.appendChild( condEl );
2286 : 0 : }
2287 : 0 : };
2288 : 0 : addCondition( QStringLiteral( "tag" ), matchTag );
2289 : 0 : addCondition( QStringLiteral( "!tag" ), noMatchTag );
2290 : 0 : addCondition( QStringLiteral( "name" ), matchName );
2291 : 0 : addCondition( QStringLiteral( "!name" ), noMatchName );
2292 : :
2293 : 0 : QByteArray xmlArray;
2294 : 0 : QTextStream stream( &xmlArray );
2295 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
2296 : 0 : stream.setCodec( "UTF-8" );
2297 : : #endif
2298 : 0 : smartEl.save( stream, 4 );
2299 : 0 : QString query = qgs_sqlite3_mprintf( "INSERT INTO smartgroup VALUES (NULL, '%q', '%q')",
2300 : 0 : name.toUtf8().constData(), xmlArray.constData() );
2301 : :
2302 : 0 : if ( runEmptyQuery( query ) )
2303 : : {
2304 : 0 : QgsSettings settings;
2305 : 0 : settings.setValue( QStringLiteral( "qgis/symbolsListGroupsIndex" ), 0 );
2306 : :
2307 : 0 : emit groupsModified();
2308 : 0 : return static_cast< int >( sqlite3_last_insert_rowid( mCurrentDB.get() ) );
2309 : 0 : }
2310 : : else
2311 : : {
2312 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't insert symbol into the database!" ) );
2313 : 0 : return 0;
2314 : : }
2315 : 0 : }
2316 : :
2317 : 0 : QgsSymbolGroupMap QgsStyle::smartgroupsListMap()
2318 : : {
2319 : 0 : if ( !mCurrentDB )
2320 : : {
2321 : 0 : QgsDebugMsg( QStringLiteral( "Cannot open database for listing groups" ) );
2322 : 0 : return QgsSymbolGroupMap();
2323 : : }
2324 : :
2325 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT * FROM smartgroup" );
2326 : :
2327 : : // Now run the query and retrieve the group names
2328 : 0 : sqlite3_statement_unique_ptr statement;
2329 : : int nError;
2330 : 0 : statement = mCurrentDB.prepare( query, nError );
2331 : :
2332 : 0 : QgsSymbolGroupMap groupNames;
2333 : 0 : while ( nError == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
2334 : : {
2335 : 0 : QString group = statement.columnAsText( SmartgroupName );
2336 : 0 : groupNames.insert( sqlite3_column_int( statement.get(), SmartgroupId ), group );
2337 : 0 : }
2338 : :
2339 : 0 : return groupNames;
2340 : 0 : }
2341 : :
2342 : 0 : QStringList QgsStyle::smartgroupNames() const
2343 : : {
2344 : 0 : if ( !mCurrentDB )
2345 : : {
2346 : 0 : QgsDebugMsg( QStringLiteral( "Cannot open database for listing groups" ) );
2347 : 0 : return QStringList();
2348 : : }
2349 : :
2350 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT name FROM smartgroup" );
2351 : :
2352 : : // Now run the query and retrieve the group names
2353 : 0 : sqlite3_statement_unique_ptr statement;
2354 : : int nError;
2355 : 0 : statement = mCurrentDB.prepare( query, nError );
2356 : :
2357 : 0 : QStringList groups;
2358 : 0 : while ( nError == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
2359 : : {
2360 : 0 : groups << statement.columnAsText( 0 );
2361 : : }
2362 : :
2363 : 0 : return groups;
2364 : 0 : }
2365 : :
2366 : 0 : QStringList QgsStyle::symbolsOfSmartgroup( StyleEntity type, int id )
2367 : : {
2368 : 0 : QStringList symbols;
2369 : :
2370 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT xml FROM smartgroup WHERE id=%d", id );
2371 : :
2372 : 0 : sqlite3_statement_unique_ptr statement;
2373 : 0 : int nErr; statement = mCurrentDB.prepare( query, nErr );
2374 : 0 : if ( !( nErr == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW ) )
2375 : : {
2376 : 0 : return QStringList();
2377 : : }
2378 : : else
2379 : : {
2380 : 0 : QDomDocument doc;
2381 : 0 : QString xmlstr = statement.columnAsText( 0 );
2382 : 0 : if ( !doc.setContent( xmlstr ) )
2383 : : {
2384 : 0 : QgsDebugMsg( QStringLiteral( "Cannot open smartgroup id: %1" ).arg( id ) );
2385 : 0 : }
2386 : 0 : QDomElement smartEl = doc.documentElement();
2387 : 0 : QString op = smartEl.attribute( QStringLiteral( "operator" ) );
2388 : 0 : QDomNodeList conditionNodes = smartEl.childNodes();
2389 : :
2390 : 0 : bool firstSet = true;
2391 : 0 : for ( int i = 0; i < conditionNodes.count(); i++ )
2392 : : {
2393 : 0 : QDomElement condEl = conditionNodes.at( i ).toElement();
2394 : 0 : QString constraint = condEl.attribute( QStringLiteral( "constraint" ) );
2395 : 0 : QString param = condEl.attribute( QStringLiteral( "param" ) );
2396 : :
2397 : 0 : QStringList resultNames;
2398 : : // perform suitable action for the given constraint
2399 : 0 : if ( constraint == QLatin1String( "tag" ) )
2400 : : {
2401 : 0 : resultNames = symbolsWithTag( type, tagId( param ) );
2402 : 0 : }
2403 : 0 : else if ( constraint == QLatin1String( "name" ) )
2404 : : {
2405 : 0 : resultNames = allNames( type ).filter( param, Qt::CaseInsensitive );
2406 : 0 : }
2407 : 0 : else if ( constraint == QLatin1String( "!tag" ) )
2408 : : {
2409 : 0 : resultNames = allNames( type );
2410 : 0 : const QStringList unwanted = symbolsWithTag( type, tagId( param ) );
2411 : 0 : for ( const QString &name : unwanted )
2412 : : {
2413 : 0 : resultNames.removeAll( name );
2414 : : }
2415 : 0 : }
2416 : 0 : else if ( constraint == QLatin1String( "!name" ) )
2417 : : {
2418 : 0 : const QStringList all = allNames( type );
2419 : 0 : for ( const QString &str : all )
2420 : : {
2421 : 0 : if ( !str.contains( param, Qt::CaseInsensitive ) )
2422 : 0 : resultNames << str;
2423 : : }
2424 : 0 : }
2425 : :
2426 : : // not apply the operator
2427 : 0 : if ( firstSet )
2428 : : {
2429 : 0 : symbols = resultNames;
2430 : 0 : firstSet = false;
2431 : 0 : }
2432 : : else
2433 : : {
2434 : 0 : if ( op == QLatin1String( "OR" ) )
2435 : : {
2436 : 0 : symbols << resultNames;
2437 : 0 : }
2438 : 0 : else if ( op == QLatin1String( "AND" ) )
2439 : : {
2440 : 0 : QStringList dummy = symbols;
2441 : 0 : symbols.clear();
2442 : 0 : for ( const QString &result : std::as_const( resultNames ) )
2443 : : {
2444 : 0 : if ( dummy.contains( result ) )
2445 : 0 : symbols << result;
2446 : : }
2447 : 0 : }
2448 : : }
2449 : 0 : } // DOM loop ends here
2450 : 0 : }
2451 : :
2452 : : // return sorted, unique list
2453 : 0 : QStringList unique = qgis::setToList( qgis::listToSet( symbols ) );
2454 : 0 : std::sort( unique.begin(), unique.end() );
2455 : 0 : return unique;
2456 : 0 : }
2457 : :
2458 : 0 : QgsSmartConditionMap QgsStyle::smartgroup( int id )
2459 : : {
2460 : 0 : if ( !mCurrentDB )
2461 : : {
2462 : 0 : QgsDebugMsg( QStringLiteral( "Cannot open database for listing groups" ) );
2463 : 0 : return QgsSmartConditionMap();
2464 : : }
2465 : :
2466 : 0 : QgsSmartConditionMap condition;
2467 : :
2468 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT xml FROM smartgroup WHERE id=%d", id );
2469 : :
2470 : 0 : sqlite3_statement_unique_ptr statement;
2471 : : int nError;
2472 : 0 : statement = mCurrentDB.prepare( query, nError );
2473 : 0 : if ( nError == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
2474 : : {
2475 : 0 : QDomDocument doc;
2476 : 0 : QString xmlstr = statement.columnAsText( 0 );
2477 : 0 : if ( !doc.setContent( xmlstr ) )
2478 : : {
2479 : 0 : QgsDebugMsg( QStringLiteral( "Cannot open smartgroup id: %1" ).arg( id ) );
2480 : 0 : }
2481 : :
2482 : 0 : QDomElement smartEl = doc.documentElement();
2483 : 0 : QDomNodeList conditionNodes = smartEl.childNodes();
2484 : :
2485 : 0 : for ( int i = 0; i < conditionNodes.count(); i++ )
2486 : : {
2487 : 0 : QDomElement condEl = conditionNodes.at( i ).toElement();
2488 : 0 : QString constraint = condEl.attribute( QStringLiteral( "constraint" ) );
2489 : 0 : QString param = condEl.attribute( QStringLiteral( "param" ) );
2490 : :
2491 : 0 : condition.insert( constraint, param );
2492 : 0 : }
2493 : 0 : }
2494 : :
2495 : 0 : return condition;
2496 : 0 : }
2497 : :
2498 : 0 : QString QgsStyle::smartgroupOperator( int id )
2499 : : {
2500 : 0 : if ( !mCurrentDB )
2501 : : {
2502 : 0 : QgsDebugMsg( QStringLiteral( "Cannot open database for listing groups" ) );
2503 : 0 : return QString();
2504 : : }
2505 : :
2506 : 0 : QString op;
2507 : :
2508 : 0 : QString query = qgs_sqlite3_mprintf( "SELECT xml FROM smartgroup WHERE id=%d", id );
2509 : :
2510 : : int nError;
2511 : 0 : sqlite3_statement_unique_ptr statement;
2512 : 0 : statement = mCurrentDB.prepare( query, nError );
2513 : 0 : if ( nError == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
2514 : : {
2515 : 0 : QDomDocument doc;
2516 : 0 : QString xmlstr = statement.columnAsText( 0 );
2517 : 0 : if ( !doc.setContent( xmlstr ) )
2518 : : {
2519 : 0 : QgsDebugMsg( QStringLiteral( "Cannot open smartgroup id: %1" ).arg( id ) );
2520 : 0 : }
2521 : 0 : QDomElement smartEl = doc.documentElement();
2522 : 0 : op = smartEl.attribute( QStringLiteral( "operator" ) );
2523 : 0 : }
2524 : :
2525 : 0 : return op;
2526 : 0 : }
2527 : :
2528 : 0 : bool QgsStyle::exportXml( const QString &filename )
2529 : : {
2530 : 0 : if ( filename.isEmpty() )
2531 : : {
2532 : 0 : QgsDebugMsg( QStringLiteral( "Invalid filename for style export." ) );
2533 : 0 : return false;
2534 : : }
2535 : :
2536 : 0 : QDomDocument doc( QStringLiteral( "qgis_style" ) );
2537 : 0 : QDomElement root = doc.createElement( QStringLiteral( "qgis_style" ) );
2538 : 0 : root.setAttribute( QStringLiteral( "version" ), QStringLiteral( STYLE_CURRENT_VERSION ) );
2539 : 0 : doc.appendChild( root );
2540 : :
2541 : 0 : const QStringList favoriteSymbols = symbolsOfFavorite( SymbolEntity );
2542 : 0 : const QStringList favoriteColorramps = symbolsOfFavorite( ColorrampEntity );
2543 : 0 : const QStringList favoriteTextFormats = symbolsOfFavorite( TextFormatEntity );
2544 : 0 : const QStringList favoriteLegendShapes = symbolsOfFavorite( LegendPatchShapeEntity );
2545 : 0 : const QStringList favorite3DSymbols = symbolsOfFavorite( Symbol3DEntity );
2546 : :
2547 : : // save symbols and attach tags
2548 : 0 : QDomElement symbolsElem = QgsSymbolLayerUtils::saveSymbols( mSymbols, QStringLiteral( "symbols" ), doc, QgsReadWriteContext() );
2549 : 0 : QDomNodeList symbolsList = symbolsElem.elementsByTagName( QStringLiteral( "symbol" ) );
2550 : 0 : int nbSymbols = symbolsList.count();
2551 : 0 : for ( int i = 0; i < nbSymbols; ++i )
2552 : : {
2553 : 0 : QDomElement symbol = symbolsList.at( i ).toElement();
2554 : 0 : QString name = symbol.attribute( QStringLiteral( "name" ) );
2555 : 0 : QStringList tags = tagsOfSymbol( SymbolEntity, name );
2556 : 0 : if ( tags.count() > 0 )
2557 : : {
2558 : 0 : symbol.setAttribute( QStringLiteral( "tags" ), tags.join( ',' ) );
2559 : 0 : }
2560 : 0 : if ( favoriteSymbols.contains( name ) )
2561 : : {
2562 : 0 : symbol.setAttribute( QStringLiteral( "favorite" ), QStringLiteral( "1" ) );
2563 : 0 : }
2564 : 0 : }
2565 : :
2566 : : // save color ramps
2567 : 0 : QDomElement rampsElem = doc.createElement( QStringLiteral( "colorramps" ) );
2568 : 0 : for ( QMap<QString, QgsColorRamp *>::const_iterator itr = mColorRamps.constBegin(); itr != mColorRamps.constEnd(); ++itr )
2569 : : {
2570 : 0 : QDomElement rampEl = QgsSymbolLayerUtils::saveColorRamp( itr.key(), itr.value(), doc );
2571 : 0 : QStringList tags = tagsOfSymbol( ColorrampEntity, itr.key() );
2572 : 0 : if ( tags.count() > 0 )
2573 : : {
2574 : 0 : rampEl.setAttribute( QStringLiteral( "tags" ), tags.join( ',' ) );
2575 : 0 : }
2576 : 0 : if ( favoriteColorramps.contains( itr.key() ) )
2577 : : {
2578 : 0 : rampEl.setAttribute( QStringLiteral( "favorite" ), QStringLiteral( "1" ) );
2579 : 0 : }
2580 : 0 : rampsElem.appendChild( rampEl );
2581 : 0 : }
2582 : :
2583 : : // save text formats
2584 : 0 : QDomElement textFormatsElem = doc.createElement( QStringLiteral( "textformats" ) );
2585 : 0 : for ( auto it = mTextFormats.constBegin(); it != mTextFormats.constEnd(); ++it )
2586 : : {
2587 : 0 : QDomElement textFormatEl = doc.createElement( QStringLiteral( "textformat" ) );
2588 : 0 : textFormatEl.setAttribute( QStringLiteral( "name" ), it.key() );
2589 : 0 : QDomElement textStyleEl = it.value().writeXml( doc, QgsReadWriteContext() );
2590 : 0 : textFormatEl.appendChild( textStyleEl );
2591 : 0 : QStringList tags = tagsOfSymbol( TextFormatEntity, it.key() );
2592 : 0 : if ( tags.count() > 0 )
2593 : : {
2594 : 0 : textFormatEl.setAttribute( QStringLiteral( "tags" ), tags.join( ',' ) );
2595 : 0 : }
2596 : 0 : if ( favoriteTextFormats.contains( it.key() ) )
2597 : : {
2598 : 0 : textFormatEl.setAttribute( QStringLiteral( "favorite" ), QStringLiteral( "1" ) );
2599 : 0 : }
2600 : 0 : textFormatsElem.appendChild( textFormatEl );
2601 : 0 : }
2602 : :
2603 : : // save label settings
2604 : 0 : QDomElement labelSettingsElem = doc.createElement( QStringLiteral( "labelsettings" ) );
2605 : 0 : for ( auto it = mLabelSettings.constBegin(); it != mLabelSettings.constEnd(); ++it )
2606 : : {
2607 : 0 : QDomElement labelSettingsEl = doc.createElement( QStringLiteral( "labelsetting" ) );
2608 : 0 : labelSettingsEl.setAttribute( QStringLiteral( "name" ), it.key() );
2609 : 0 : QDomElement defEl = it.value().writeXml( doc, QgsReadWriteContext() );
2610 : 0 : labelSettingsEl.appendChild( defEl );
2611 : 0 : QStringList tags = tagsOfSymbol( LabelSettingsEntity, it.key() );
2612 : 0 : if ( tags.count() > 0 )
2613 : : {
2614 : 0 : labelSettingsEl.setAttribute( QStringLiteral( "tags" ), tags.join( ',' ) );
2615 : 0 : }
2616 : 0 : if ( favoriteTextFormats.contains( it.key() ) )
2617 : : {
2618 : 0 : labelSettingsEl.setAttribute( QStringLiteral( "favorite" ), QStringLiteral( "1" ) );
2619 : 0 : }
2620 : 0 : labelSettingsElem.appendChild( labelSettingsEl );
2621 : 0 : }
2622 : :
2623 : : // save legend patch shapes
2624 : 0 : QDomElement legendPatchShapesElem = doc.createElement( QStringLiteral( "legendpatchshapes" ) );
2625 : 0 : for ( auto it = mLegendPatchShapes.constBegin(); it != mLegendPatchShapes.constEnd(); ++it )
2626 : : {
2627 : 0 : QDomElement legendPatchShapeEl = doc.createElement( QStringLiteral( "legendpatchshape" ) );
2628 : 0 : legendPatchShapeEl.setAttribute( QStringLiteral( "name" ), it.key() );
2629 : 0 : QDomElement defEl = doc.createElement( QStringLiteral( "definition" ) );
2630 : 0 : it.value().writeXml( defEl, doc, QgsReadWriteContext() );
2631 : 0 : legendPatchShapeEl.appendChild( defEl );
2632 : 0 : QStringList tags = tagsOfSymbol( LegendPatchShapeEntity, it.key() );
2633 : 0 : if ( tags.count() > 0 )
2634 : : {
2635 : 0 : legendPatchShapeEl.setAttribute( QStringLiteral( "tags" ), tags.join( ',' ) );
2636 : 0 : }
2637 : 0 : if ( favoriteLegendShapes.contains( it.key() ) )
2638 : : {
2639 : 0 : legendPatchShapeEl.setAttribute( QStringLiteral( "favorite" ), QStringLiteral( "1" ) );
2640 : 0 : }
2641 : 0 : legendPatchShapesElem.appendChild( legendPatchShapeEl );
2642 : 0 : }
2643 : :
2644 : : // save symbols and attach tags
2645 : 0 : QDomElement symbols3DElem = doc.createElement( QStringLiteral( "symbols3d" ) );
2646 : 0 : for ( auto it = m3dSymbols.constBegin(); it != m3dSymbols.constEnd(); ++it )
2647 : : {
2648 : 0 : QDomElement symbolEl = doc.createElement( QStringLiteral( "symbol3d" ) );
2649 : 0 : symbolEl.setAttribute( QStringLiteral( "name" ), it.key() );
2650 : 0 : QDomElement defEl = doc.createElement( QStringLiteral( "definition" ) );
2651 : 0 : defEl.setAttribute( QStringLiteral( "type" ), it.value()->type() );
2652 : 0 : it.value()->writeXml( defEl, QgsReadWriteContext() );
2653 : 0 : symbolEl.appendChild( defEl );
2654 : 0 : QStringList tags = tagsOfSymbol( Symbol3DEntity, it.key() );
2655 : 0 : if ( tags.count() > 0 )
2656 : : {
2657 : 0 : symbolEl.setAttribute( QStringLiteral( "tags" ), tags.join( ',' ) );
2658 : 0 : }
2659 : 0 : if ( favorite3DSymbols.contains( it.key() ) )
2660 : : {
2661 : 0 : symbolEl.setAttribute( QStringLiteral( "favorite" ), QStringLiteral( "1" ) );
2662 : 0 : }
2663 : 0 : symbols3DElem.appendChild( symbolEl );
2664 : 0 : }
2665 : :
2666 : 0 : root.appendChild( symbolsElem );
2667 : 0 : root.appendChild( rampsElem );
2668 : 0 : root.appendChild( textFormatsElem );
2669 : 0 : root.appendChild( labelSettingsElem );
2670 : 0 : root.appendChild( legendPatchShapesElem );
2671 : 0 : root.appendChild( symbols3DElem );
2672 : :
2673 : : // save
2674 : 0 : QFile f( filename );
2675 : 0 : if ( !f.open( QFile::WriteOnly | QIODevice::Truncate ) )
2676 : : {
2677 : 0 : mErrorString = "Couldn't open file for writing: " + filename;
2678 : 0 : return false;
2679 : : }
2680 : :
2681 : 0 : QTextStream ts( &f );
2682 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
2683 : 0 : ts.setCodec( "UTF-8" );
2684 : : #endif
2685 : 0 : doc.save( ts, 2 );
2686 : 0 : f.close();
2687 : :
2688 : 0 : mFileName = filename;
2689 : 0 : return true;
2690 : 0 : }
2691 : :
2692 : 0 : bool QgsStyle::importXml( const QString &filename )
2693 : : {
2694 : 0 : return importXml( filename, -1 );
2695 : : }
2696 : :
2697 : 0 : bool QgsStyle::importXml( const QString &filename, int sinceVersion )
2698 : : {
2699 : 0 : mErrorString = QString();
2700 : 0 : QDomDocument doc( QStringLiteral( "style" ) );
2701 : 0 : QFile f( filename );
2702 : 0 : if ( !f.open( QFile::ReadOnly ) )
2703 : : {
2704 : 0 : mErrorString = QStringLiteral( "Unable to open the specified file" );
2705 : 0 : QgsDebugMsg( QStringLiteral( "Error opening the style XML file." ) );
2706 : 0 : return false;
2707 : : }
2708 : :
2709 : 0 : if ( !doc.setContent( &f ) )
2710 : : {
2711 : 0 : mErrorString = QStringLiteral( "Unable to understand the style file: %1" ).arg( filename );
2712 : 0 : QgsDebugMsg( QStringLiteral( "XML Parsing error" ) );
2713 : 0 : f.close();
2714 : 0 : return false;
2715 : : }
2716 : 0 : f.close();
2717 : :
2718 : 0 : QDomElement docEl = doc.documentElement();
2719 : 0 : if ( docEl.tagName() != QLatin1String( "qgis_style" ) )
2720 : : {
2721 : 0 : mErrorString = "Incorrect root tag in style: " + docEl.tagName();
2722 : 0 : return false;
2723 : : }
2724 : :
2725 : 0 : const QString version = docEl.attribute( QStringLiteral( "version" ) );
2726 : 0 : if ( version != QLatin1String( STYLE_CURRENT_VERSION ) && version != QLatin1String( "0" ) && version != QLatin1String( "1" ) )
2727 : : {
2728 : 0 : mErrorString = "Unknown style file version: " + version;
2729 : 0 : return false;
2730 : : }
2731 : :
2732 : 0 : QgsSymbolMap symbols;
2733 : :
2734 : 0 : QDomElement symbolsElement = docEl.firstChildElement( QStringLiteral( "symbols" ) );
2735 : 0 : QDomElement e = symbolsElement.firstChildElement();
2736 : :
2737 : : // gain speed by re-grouping the INSERT statements in a transaction
2738 : 0 : QString query = qgs_sqlite3_mprintf( "BEGIN TRANSACTION;" );
2739 : 0 : runEmptyQuery( query );
2740 : :
2741 : 0 : if ( version == QLatin1String( STYLE_CURRENT_VERSION ) || version == QLatin1String( "1" ) )
2742 : : {
2743 : : // For the new style, load symbols individually
2744 : 0 : while ( !e.isNull() )
2745 : : {
2746 : 0 : const int entityAddedVersion = e.attribute( QStringLiteral( "addedVersion" ) ).toInt();
2747 : 0 : if ( entityAddedVersion != 0 && sinceVersion != -1 && entityAddedVersion <= sinceVersion )
2748 : : {
2749 : : // skip the symbol, should already be present
2750 : 0 : continue;
2751 : : }
2752 : :
2753 : 0 : if ( e.tagName() == QLatin1String( "symbol" ) )
2754 : : {
2755 : 0 : QString name = e.attribute( QStringLiteral( "name" ) );
2756 : 0 : QStringList tags;
2757 : 0 : if ( e.hasAttribute( QStringLiteral( "tags" ) ) )
2758 : : {
2759 : 0 : tags = e.attribute( QStringLiteral( "tags" ) ).split( ',' );
2760 : 0 : }
2761 : 0 : bool favorite = false;
2762 : 0 : if ( e.hasAttribute( QStringLiteral( "favorite" ) ) && e.attribute( QStringLiteral( "favorite" ) ) == QLatin1String( "1" ) )
2763 : : {
2764 : 0 : favorite = true;
2765 : 0 : }
2766 : :
2767 : 0 : QgsSymbol *symbol = QgsSymbolLayerUtils::loadSymbol( e, QgsReadWriteContext() );
2768 : 0 : if ( symbol )
2769 : : {
2770 : 0 : addSymbol( name, symbol );
2771 : 0 : if ( mCurrentDB )
2772 : : {
2773 : 0 : saveSymbol( name, symbol, favorite, tags );
2774 : 0 : }
2775 : 0 : }
2776 : 0 : }
2777 : : else
2778 : : {
2779 : 0 : QgsDebugMsg( "unknown tag: " + e.tagName() );
2780 : : }
2781 : 0 : e = e.nextSiblingElement();
2782 : : }
2783 : 0 : }
2784 : : else
2785 : : {
2786 : : // for the old version, use the utility function to solve @symbol@layer subsymbols
2787 : 0 : symbols = QgsSymbolLayerUtils::loadSymbols( symbolsElement, QgsReadWriteContext() );
2788 : :
2789 : : // save the symbols with proper name
2790 : 0 : for ( QMap<QString, QgsSymbol *>::iterator it = symbols.begin(); it != symbols.end(); ++it )
2791 : : {
2792 : 0 : addSymbol( it.key(), it.value() );
2793 : 0 : }
2794 : : }
2795 : :
2796 : : // load color ramps
2797 : 0 : QDomElement rampsElement = docEl.firstChildElement( QStringLiteral( "colorramps" ) );
2798 : 0 : e = rampsElement.firstChildElement();
2799 : 0 : while ( !e.isNull() )
2800 : : {
2801 : 0 : const int entityAddedVersion = e.attribute( QStringLiteral( "addedVersion" ) ).toInt();
2802 : 0 : if ( entityAddedVersion != 0 && sinceVersion != -1 && entityAddedVersion <= sinceVersion )
2803 : : {
2804 : : // skip the ramp, should already be present
2805 : 0 : continue;
2806 : : }
2807 : :
2808 : 0 : if ( e.tagName() == QLatin1String( "colorramp" ) )
2809 : : {
2810 : 0 : QString name = e.attribute( QStringLiteral( "name" ) );
2811 : 0 : QStringList tags;
2812 : 0 : if ( e.hasAttribute( QStringLiteral( "tags" ) ) )
2813 : : {
2814 : 0 : tags = e.attribute( QStringLiteral( "tags" ) ).split( ',' );
2815 : 0 : }
2816 : 0 : bool favorite = false;
2817 : 0 : if ( e.hasAttribute( QStringLiteral( "favorite" ) ) && e.attribute( QStringLiteral( "favorite" ) ) == QLatin1String( "1" ) )
2818 : : {
2819 : 0 : favorite = true;
2820 : 0 : }
2821 : :
2822 : 0 : QgsColorRamp *ramp = QgsSymbolLayerUtils::loadColorRamp( e );
2823 : 0 : if ( ramp )
2824 : : {
2825 : 0 : addColorRamp( name, ramp );
2826 : 0 : if ( mCurrentDB )
2827 : : {
2828 : 0 : saveColorRamp( name, ramp, favorite, tags );
2829 : 0 : }
2830 : 0 : }
2831 : 0 : }
2832 : : else
2833 : : {
2834 : 0 : QgsDebugMsg( "unknown tag: " + e.tagName() );
2835 : : }
2836 : 0 : e = e.nextSiblingElement();
2837 : : }
2838 : :
2839 : : // load text formats
2840 : 0 : if ( version == STYLE_CURRENT_VERSION )
2841 : : {
2842 : 0 : const QDomElement textFormatElement = docEl.firstChildElement( QStringLiteral( "textformats" ) );
2843 : 0 : e = textFormatElement.firstChildElement();
2844 : 0 : while ( !e.isNull() )
2845 : : {
2846 : 0 : const int entityAddedVersion = e.attribute( QStringLiteral( "addedVersion" ) ).toInt();
2847 : 0 : if ( entityAddedVersion != 0 && sinceVersion != -1 && entityAddedVersion <= sinceVersion )
2848 : : {
2849 : : // skip the format, should already be present
2850 : 0 : continue;
2851 : : }
2852 : :
2853 : 0 : if ( e.tagName() == QLatin1String( "textformat" ) )
2854 : : {
2855 : 0 : QString name = e.attribute( QStringLiteral( "name" ) );
2856 : 0 : QStringList tags;
2857 : 0 : if ( e.hasAttribute( QStringLiteral( "tags" ) ) )
2858 : : {
2859 : 0 : tags = e.attribute( QStringLiteral( "tags" ) ).split( ',' );
2860 : 0 : }
2861 : 0 : bool favorite = false;
2862 : 0 : if ( e.hasAttribute( QStringLiteral( "favorite" ) ) && e.attribute( QStringLiteral( "favorite" ) ) == QLatin1String( "1" ) )
2863 : : {
2864 : 0 : favorite = true;
2865 : 0 : }
2866 : :
2867 : 0 : QgsTextFormat format;
2868 : 0 : const QDomElement styleElem = e.firstChildElement();
2869 : 0 : format.readXml( styleElem, QgsReadWriteContext() );
2870 : 0 : addTextFormat( name, format );
2871 : 0 : if ( mCurrentDB )
2872 : : {
2873 : 0 : saveTextFormat( name, format, favorite, tags );
2874 : 0 : }
2875 : 0 : }
2876 : : else
2877 : : {
2878 : 0 : QgsDebugMsg( "unknown tag: " + e.tagName() );
2879 : : }
2880 : 0 : e = e.nextSiblingElement();
2881 : : }
2882 : 0 : }
2883 : :
2884 : : // load label settings
2885 : 0 : if ( version == STYLE_CURRENT_VERSION )
2886 : : {
2887 : 0 : const QDomElement labelSettingsElement = docEl.firstChildElement( QStringLiteral( "labelsettings" ) );
2888 : 0 : e = labelSettingsElement.firstChildElement();
2889 : 0 : while ( !e.isNull() )
2890 : : {
2891 : 0 : const int entityAddedVersion = e.attribute( QStringLiteral( "addedVersion" ) ).toInt();
2892 : 0 : if ( entityAddedVersion != 0 && sinceVersion != -1 && entityAddedVersion <= sinceVersion )
2893 : : {
2894 : : // skip the settings, should already be present
2895 : 0 : continue;
2896 : : }
2897 : :
2898 : 0 : if ( e.tagName() == QLatin1String( "labelsetting" ) )
2899 : : {
2900 : 0 : QString name = e.attribute( QStringLiteral( "name" ) );
2901 : 0 : QStringList tags;
2902 : 0 : if ( e.hasAttribute( QStringLiteral( "tags" ) ) )
2903 : : {
2904 : 0 : tags = e.attribute( QStringLiteral( "tags" ) ).split( ',' );
2905 : 0 : }
2906 : 0 : bool favorite = false;
2907 : 0 : if ( e.hasAttribute( QStringLiteral( "favorite" ) ) && e.attribute( QStringLiteral( "favorite" ) ) == QLatin1String( "1" ) )
2908 : : {
2909 : 0 : favorite = true;
2910 : 0 : }
2911 : :
2912 : 0 : QgsPalLayerSettings settings;
2913 : 0 : const QDomElement styleElem = e.firstChildElement();
2914 : 0 : settings.readXml( styleElem, QgsReadWriteContext() );
2915 : 0 : addLabelSettings( name, settings );
2916 : 0 : if ( mCurrentDB )
2917 : : {
2918 : 0 : saveLabelSettings( name, settings, favorite, tags );
2919 : 0 : }
2920 : 0 : }
2921 : : else
2922 : : {
2923 : 0 : QgsDebugMsg( "unknown tag: " + e.tagName() );
2924 : : }
2925 : 0 : e = e.nextSiblingElement();
2926 : : }
2927 : 0 : }
2928 : :
2929 : : // load legend patch shapes
2930 : 0 : if ( version == STYLE_CURRENT_VERSION )
2931 : : {
2932 : 0 : const QDomElement legendPatchShapesElement = docEl.firstChildElement( QStringLiteral( "legendpatchshapes" ) );
2933 : 0 : e = legendPatchShapesElement.firstChildElement();
2934 : 0 : while ( !e.isNull() )
2935 : : {
2936 : 0 : const int entityAddedVersion = e.attribute( QStringLiteral( "addedVersion" ) ).toInt();
2937 : 0 : if ( entityAddedVersion != 0 && sinceVersion != -1 && entityAddedVersion <= sinceVersion )
2938 : : {
2939 : : // skip the shape, should already be present
2940 : 0 : continue;
2941 : : }
2942 : :
2943 : 0 : if ( e.tagName() == QLatin1String( "legendpatchshape" ) )
2944 : : {
2945 : 0 : QString name = e.attribute( QStringLiteral( "name" ) );
2946 : 0 : QStringList tags;
2947 : 0 : if ( e.hasAttribute( QStringLiteral( "tags" ) ) )
2948 : : {
2949 : 0 : tags = e.attribute( QStringLiteral( "tags" ) ).split( ',' );
2950 : 0 : }
2951 : 0 : bool favorite = false;
2952 : 0 : if ( e.hasAttribute( QStringLiteral( "favorite" ) ) && e.attribute( QStringLiteral( "favorite" ) ) == QLatin1String( "1" ) )
2953 : : {
2954 : 0 : favorite = true;
2955 : 0 : }
2956 : :
2957 : 0 : QgsLegendPatchShape shape;
2958 : 0 : const QDomElement shapeElem = e.firstChildElement();
2959 : 0 : shape.readXml( shapeElem, QgsReadWriteContext() );
2960 : 0 : addLegendPatchShape( name, shape );
2961 : 0 : if ( mCurrentDB )
2962 : : {
2963 : 0 : saveLegendPatchShape( name, shape, favorite, tags );
2964 : 0 : }
2965 : 0 : }
2966 : : else
2967 : : {
2968 : 0 : QgsDebugMsg( "unknown tag: " + e.tagName() );
2969 : : }
2970 : 0 : e = e.nextSiblingElement();
2971 : : }
2972 : 0 : }
2973 : :
2974 : : // load 3d symbols
2975 : 0 : if ( version == STYLE_CURRENT_VERSION )
2976 : : {
2977 : 0 : const QDomElement symbols3DElement = docEl.firstChildElement( QStringLiteral( "symbols3d" ) );
2978 : 0 : e = symbols3DElement.firstChildElement();
2979 : 0 : while ( !e.isNull() )
2980 : : {
2981 : 0 : const int entityAddedVersion = e.attribute( QStringLiteral( "addedVersion" ) ).toInt();
2982 : 0 : if ( entityAddedVersion != 0 && sinceVersion != -1 && entityAddedVersion <= sinceVersion )
2983 : : {
2984 : : // skip the symbol, should already be present
2985 : 0 : continue;
2986 : : }
2987 : :
2988 : 0 : if ( e.tagName() == QLatin1String( "symbol3d" ) )
2989 : : {
2990 : 0 : QString name = e.attribute( QStringLiteral( "name" ) );
2991 : 0 : QStringList tags;
2992 : 0 : if ( e.hasAttribute( QStringLiteral( "tags" ) ) )
2993 : : {
2994 : 0 : tags = e.attribute( QStringLiteral( "tags" ) ).split( ',' );
2995 : 0 : }
2996 : 0 : bool favorite = false;
2997 : 0 : if ( e.hasAttribute( QStringLiteral( "favorite" ) ) && e.attribute( QStringLiteral( "favorite" ) ) == QLatin1String( "1" ) )
2998 : : {
2999 : 0 : favorite = true;
3000 : 0 : }
3001 : :
3002 : 0 : const QDomElement symbolElem = e.firstChildElement();
3003 : 0 : const QString type = symbolElem.attribute( QStringLiteral( "type" ) );
3004 : 0 : std::unique_ptr< QgsAbstract3DSymbol > sym( QgsApplication::symbol3DRegistry()->createSymbol( type ) );
3005 : 0 : if ( sym )
3006 : : {
3007 : 0 : sym->readXml( symbolElem, QgsReadWriteContext() );
3008 : 0 : QgsAbstract3DSymbol *newSym = sym.get();
3009 : 0 : addSymbol3D( name, sym.release() );
3010 : 0 : if ( mCurrentDB )
3011 : : {
3012 : 0 : saveSymbol3D( name, newSym, favorite, tags );
3013 : 0 : }
3014 : 0 : }
3015 : 0 : }
3016 : : else
3017 : : {
3018 : 0 : QgsDebugMsg( "unknown tag: " + e.tagName() );
3019 : : }
3020 : 0 : e = e.nextSiblingElement();
3021 : : }
3022 : 0 : }
3023 : :
3024 : 0 : query = qgs_sqlite3_mprintf( "COMMIT TRANSACTION;" );
3025 : 0 : runEmptyQuery( query );
3026 : :
3027 : 0 : mFileName = filename;
3028 : 0 : return true;
3029 : 0 : }
3030 : :
3031 : 0 : bool QgsStyle::isXmlStyleFile( const QString &path )
3032 : : {
3033 : 0 : QFileInfo fileInfo( path );
3034 : :
3035 : 0 : if ( fileInfo.suffix().compare( QLatin1String( "xml" ), Qt::CaseInsensitive ) != 0 )
3036 : 0 : return false;
3037 : :
3038 : : // sniff the first line of the file to see if it's a style file
3039 : 0 : if ( !QFile::exists( path ) )
3040 : 0 : return false;
3041 : :
3042 : 0 : QFile inputFile( path );
3043 : 0 : if ( !inputFile.open( QIODevice::ReadOnly ) )
3044 : 0 : return false;
3045 : :
3046 : 0 : QTextStream stream( &inputFile );
3047 : 0 : const QString line = stream.readLine();
3048 : 0 : return line == QLatin1String( "<!DOCTYPE qgis_style>" );
3049 : 0 : }
3050 : :
3051 : 0 : bool QgsStyle::updateSymbol( StyleEntity type, const QString &name )
3052 : : {
3053 : 0 : QDomDocument doc( QStringLiteral( "dummy" ) );
3054 : 0 : QDomElement symEl;
3055 : 0 : QByteArray xmlArray;
3056 : 0 : QTextStream stream( &xmlArray );
3057 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
3058 : 0 : stream.setCodec( "UTF-8" );
3059 : : #endif
3060 : :
3061 : 0 : QString query;
3062 : :
3063 : 0 : switch ( type )
3064 : : {
3065 : : case SymbolEntity:
3066 : : {
3067 : : // check if it is an existing symbol
3068 : 0 : if ( !symbolNames().contains( name ) )
3069 : : {
3070 : 0 : QgsDebugMsg( QStringLiteral( "Update request received for unavailable symbol" ) );
3071 : 0 : return false;
3072 : : }
3073 : :
3074 : 0 : symEl = QgsSymbolLayerUtils::saveSymbol( name, symbol( name ), doc, QgsReadWriteContext() );
3075 : 0 : if ( symEl.isNull() )
3076 : : {
3077 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert symbol to valid XML!" ) );
3078 : 0 : return false;
3079 : : }
3080 : 0 : symEl.save( stream, 4 );
3081 : 0 : query = qgs_sqlite3_mprintf( "UPDATE symbol SET xml='%q' WHERE name='%q';",
3082 : 0 : xmlArray.constData(), name.toUtf8().constData() );
3083 : 0 : break;
3084 : : }
3085 : :
3086 : : case Symbol3DEntity:
3087 : : {
3088 : : // check if it is an existing symbol
3089 : 0 : if ( !symbol3DNames().contains( name ) )
3090 : : {
3091 : 0 : QgsDebugMsg( QStringLiteral( "Update request received for unavailable symbol" ) );
3092 : 0 : return false;
3093 : : }
3094 : :
3095 : 0 : symEl = doc.createElement( QStringLiteral( "symbol" ) );
3096 : 0 : symEl.setAttribute( QStringLiteral( "type" ), m3dSymbols.value( name )->type() );
3097 : 0 : m3dSymbols.value( name )->writeXml( symEl, QgsReadWriteContext() );
3098 : 0 : if ( symEl.isNull() )
3099 : : {
3100 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert symbol to valid XML!" ) );
3101 : 0 : return false;
3102 : : }
3103 : 0 : symEl.save( stream, 4 );
3104 : 0 : query = qgs_sqlite3_mprintf( "UPDATE symbol3d SET xml='%q' WHERE name='%q';",
3105 : 0 : xmlArray.constData(), name.toUtf8().constData() );
3106 : 0 : break;
3107 : : }
3108 : :
3109 : : case ColorrampEntity:
3110 : : {
3111 : 0 : if ( !colorRampNames().contains( name ) )
3112 : : {
3113 : 0 : QgsDebugMsg( QStringLiteral( "Update requested for unavailable color ramp." ) );
3114 : 0 : return false;
3115 : : }
3116 : :
3117 : 0 : std::unique_ptr< QgsColorRamp > ramp( colorRamp( name ) );
3118 : 0 : symEl = QgsSymbolLayerUtils::saveColorRamp( name, ramp.get(), doc );
3119 : 0 : if ( symEl.isNull() )
3120 : : {
3121 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert color ramp to valid XML!" ) );
3122 : 0 : return false;
3123 : : }
3124 : 0 : symEl.save( stream, 4 );
3125 : 0 : query = qgs_sqlite3_mprintf( "UPDATE colorramp SET xml='%q' WHERE name='%q';",
3126 : 0 : xmlArray.constData(), name.toUtf8().constData() );
3127 : 0 : break;
3128 : 0 : }
3129 : :
3130 : : case TextFormatEntity:
3131 : : {
3132 : 0 : if ( !textFormatNames().contains( name ) )
3133 : : {
3134 : 0 : QgsDebugMsg( QStringLiteral( "Update requested for unavailable text format." ) );
3135 : 0 : return false;
3136 : : }
3137 : :
3138 : 0 : QgsTextFormat format( textFormat( name ) );
3139 : 0 : symEl = format.writeXml( doc, QgsReadWriteContext() );
3140 : 0 : if ( symEl.isNull() )
3141 : : {
3142 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert text format to valid XML!" ) );
3143 : 0 : return false;
3144 : : }
3145 : 0 : symEl.save( stream, 4 );
3146 : 0 : query = qgs_sqlite3_mprintf( "UPDATE textformat SET xml='%q' WHERE name='%q';",
3147 : 0 : xmlArray.constData(), name.toUtf8().constData() );
3148 : 0 : break;
3149 : 0 : }
3150 : :
3151 : : case LabelSettingsEntity:
3152 : : {
3153 : 0 : if ( !labelSettingsNames().contains( name ) )
3154 : : {
3155 : 0 : QgsDebugMsg( QStringLiteral( "Update requested for unavailable label settings." ) );
3156 : 0 : return false;
3157 : : }
3158 : :
3159 : 0 : QgsPalLayerSettings settings( labelSettings( name ) );
3160 : 0 : symEl = settings.writeXml( doc, QgsReadWriteContext() );
3161 : 0 : if ( symEl.isNull() )
3162 : : {
3163 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't convert label settings to valid XML!" ) );
3164 : 0 : return false;
3165 : : }
3166 : 0 : symEl.save( stream, 4 );
3167 : 0 : query = qgs_sqlite3_mprintf( "UPDATE labelsettings SET xml='%q' WHERE name='%q';",
3168 : 0 : xmlArray.constData(), name.toUtf8().constData() );
3169 : 0 : break;
3170 : 0 : }
3171 : :
3172 : : case LegendPatchShapeEntity:
3173 : : {
3174 : 0 : if ( !legendPatchShapeNames().contains( name ) )
3175 : : {
3176 : 0 : QgsDebugMsg( QStringLiteral( "Update requested for unavailable legend patch shape." ) );
3177 : 0 : return false;
3178 : : }
3179 : :
3180 : 0 : QgsLegendPatchShape shape( legendPatchShape( name ) );
3181 : 0 : symEl = doc.createElement( QStringLiteral( "shape" ) );
3182 : 0 : shape.writeXml( symEl, doc, QgsReadWriteContext() );
3183 : 0 : symEl.save( stream, 4 );
3184 : 0 : query = qgs_sqlite3_mprintf( "UPDATE legendpatchshapes SET xml='%q' WHERE name='%q';",
3185 : 0 : xmlArray.constData(), name.toUtf8().constData() );
3186 : : break;
3187 : 0 : }
3188 : :
3189 : : case TagEntity:
3190 : : case SmartgroupEntity:
3191 : : {
3192 : 0 : QgsDebugMsg( QStringLiteral( "Updating the unsupported StyleEntity" ) );
3193 : 0 : return false;
3194 : : }
3195 : : }
3196 : :
3197 : :
3198 : 0 : if ( !runEmptyQuery( query ) )
3199 : : {
3200 : 0 : QgsDebugMsg( QStringLiteral( "Couldn't insert symbol into the database!" ) );
3201 : 0 : return false;
3202 : : }
3203 : : else
3204 : : {
3205 : 0 : switch ( type )
3206 : : {
3207 : : case SymbolEntity:
3208 : 0 : emit symbolChanged( name );
3209 : 0 : break;
3210 : :
3211 : : case ColorrampEntity:
3212 : 0 : emit rampChanged( name );
3213 : 0 : break;
3214 : :
3215 : : case TextFormatEntity:
3216 : 0 : emit textFormatChanged( name );
3217 : 0 : break;
3218 : :
3219 : : case LabelSettingsEntity:
3220 : 0 : emit labelSettingsChanged( name );
3221 : 0 : break;
3222 : :
3223 : : case LegendPatchShapeEntity:
3224 : : case TagEntity:
3225 : : case SmartgroupEntity:
3226 : : case Symbol3DEntity:
3227 : 0 : break;
3228 : : }
3229 : 0 : emit entityChanged( type, name );
3230 : : }
3231 : 0 : return true;
3232 : 0 : }
3233 : :
3234 : 0 : void QgsStyle::clearCachedTags( QgsStyle::StyleEntity type, const QString &name )
3235 : : {
3236 : 0 : mCachedTags[ type ].remove( name );
3237 : 0 : }
3238 : :
3239 : 5 : void QgsStyle::upgradeIfRequired()
3240 : : {
3241 : : // make sure metadata table exists
3242 : 5 : QString query = qgs_sqlite3_mprintf( "SELECT name FROM sqlite_master WHERE name='stylemetadata'" );
3243 : 5 : sqlite3_statement_unique_ptr statement;
3244 : : int rc;
3245 : 5 : int dbVersion = 0;
3246 : 5 : statement = mCurrentDB.prepare( query, rc );
3247 : :
3248 : 5 : if ( rc != SQLITE_OK || sqlite3_step( statement.get() ) != SQLITE_ROW )
3249 : : {
3250 : : // no metadata table
3251 : 0 : query = qgs_sqlite3_mprintf( "CREATE TABLE stylemetadata("\
3252 : : "id INTEGER PRIMARY KEY,"\
3253 : : "key TEXT UNIQUE,"\
3254 : : "value TEXT);" );
3255 : 0 : runEmptyQuery( query );
3256 : 0 : query = qgs_sqlite3_mprintf( "INSERT INTO stylemetadata VALUES (NULL, '%q', '%q')", "version", "31200" );
3257 : 0 : runEmptyQuery( query );
3258 : :
3259 : 0 : dbVersion = 31200;
3260 : 0 : }
3261 : : else
3262 : : {
3263 : 5 : query = qgs_sqlite3_mprintf( "SELECT value FROM stylemetadata WHERE key='version'" );
3264 : 5 : statement = mCurrentDB.prepare( query, rc );
3265 : 5 : if ( rc == SQLITE_OK && sqlite3_step( statement.get() ) == SQLITE_ROW )
3266 : : {
3267 : 5 : dbVersion = statement.columnAsText( 0 ).toInt();
3268 : 5 : }
3269 : : }
3270 : :
3271 : 5 : if ( dbVersion < Qgis::versionInt() )
3272 : : {
3273 : : // do upgrade
3274 : 0 : if ( importXml( QgsApplication::defaultStylePath(), dbVersion ) )
3275 : : {
3276 : 0 : query = qgs_sqlite3_mprintf( "UPDATE stylemetadata SET value='%q' WHERE key='version'", QString::number( Qgis::versionInt() ).toUtf8().constData() );
3277 : 0 : runEmptyQuery( query );
3278 : 0 : }
3279 : 0 : }
3280 : 5 : }
3281 : :
3282 : 0 : QString QgsStyle::entityTableName( QgsStyle::StyleEntity type )
3283 : : {
3284 : 0 : switch ( type )
3285 : : {
3286 : : case SymbolEntity:
3287 : 0 : return QStringLiteral( "symbol" );
3288 : :
3289 : : case ColorrampEntity:
3290 : 0 : return QStringLiteral( "colorramp" );
3291 : :
3292 : : case TextFormatEntity:
3293 : 0 : return QStringLiteral( "textformat" );
3294 : :
3295 : : case LabelSettingsEntity:
3296 : 0 : return QStringLiteral( "labelsettings" );
3297 : :
3298 : : case LegendPatchShapeEntity:
3299 : 0 : return QStringLiteral( "legendpatchshapes" );
3300 : :
3301 : : case Symbol3DEntity:
3302 : 0 : return QStringLiteral( "symbol3d" );
3303 : :
3304 : : case TagEntity:
3305 : 0 : return QStringLiteral( "tag" );
3306 : :
3307 : : case SmartgroupEntity:
3308 : 0 : return QStringLiteral( "smartgroup" );
3309 : : }
3310 : 0 : return QString();
3311 : 0 : }
3312 : :
3313 : 0 : QString QgsStyle::tagmapTableName( QgsStyle::StyleEntity type )
3314 : : {
3315 : 0 : switch ( type )
3316 : : {
3317 : : case SymbolEntity:
3318 : 0 : return QStringLiteral( "tagmap" );
3319 : :
3320 : : case ColorrampEntity:
3321 : 0 : return QStringLiteral( "ctagmap" );
3322 : :
3323 : : case TextFormatEntity:
3324 : 0 : return QStringLiteral( "tftagmap" );
3325 : :
3326 : : case LabelSettingsEntity:
3327 : 0 : return QStringLiteral( "lstagmap" );
3328 : :
3329 : : case LegendPatchShapeEntity:
3330 : 0 : return QStringLiteral( "lpstagmap" );
3331 : :
3332 : : case Symbol3DEntity:
3333 : 0 : return QStringLiteral( "symbol3dtagmap" );
3334 : :
3335 : : case TagEntity:
3336 : : case SmartgroupEntity:
3337 : 0 : break;
3338 : : }
3339 : 0 : return QString();
3340 : 0 : }
3341 : :
3342 : 0 : QString QgsStyle::tagmapEntityIdFieldName( QgsStyle::StyleEntity type )
3343 : : {
3344 : 0 : switch ( type )
3345 : : {
3346 : : case SymbolEntity:
3347 : 0 : return QStringLiteral( "symbol_id" );
3348 : :
3349 : : case ColorrampEntity:
3350 : 0 : return QStringLiteral( "colorramp_id" );
3351 : :
3352 : : case TextFormatEntity:
3353 : 0 : return QStringLiteral( "textformat_id" );
3354 : :
3355 : : case LabelSettingsEntity:
3356 : 0 : return QStringLiteral( "labelsettings_id" );
3357 : :
3358 : : case LegendPatchShapeEntity:
3359 : 0 : return QStringLiteral( "legendpatchshape_id" );
3360 : :
3361 : : case Symbol3DEntity:
3362 : 0 : return QStringLiteral( "symbol3d_id" );
3363 : :
3364 : : case TagEntity:
3365 : : case SmartgroupEntity:
3366 : 0 : break;
3367 : : }
3368 : 0 : return QString();
3369 : 0 : }
3370 : :
3371 : 0 : QgsStyle::StyleEntity QgsStyleSymbolEntity::type() const
3372 : : {
3373 : 0 : return QgsStyle::SymbolEntity;
3374 : : }
3375 : :
3376 : 0 : QgsStyle::StyleEntity QgsStyleColorRampEntity::type() const
3377 : : {
3378 : 0 : return QgsStyle::ColorrampEntity;
3379 : : }
3380 : :
3381 : 0 : QgsStyle::StyleEntity QgsStyleTextFormatEntity::type() const
3382 : : {
3383 : 0 : return QgsStyle::TextFormatEntity;
3384 : : }
3385 : :
3386 : 0 : QgsStyle::StyleEntity QgsStyleLabelSettingsEntity::type() const
3387 : : {
3388 : 0 : return QgsStyle::LabelSettingsEntity;
3389 : : }
3390 : :
3391 : 0 : QgsStyle::StyleEntity QgsStyleLegendPatchShapeEntity::type() const
3392 : : {
3393 : 0 : return QgsStyle::LegendPatchShapeEntity;
3394 : : }
3395 : :
3396 : 0 : QgsStyle::StyleEntity QgsStyleSymbol3DEntity::type() const
3397 : : {
3398 : 0 : return QgsStyle::Symbol3DEntity;
3399 : : }
|