QGIS API Documentation 3.43.0-Master (ac54a16a525)
qgspathresolver.h
Go to the documentation of this file.
1/***************************************************************************
2 qgspathresolver.h
3 --------------------------------------
4 Date : February 2017
5 Copyright : (C) 2017 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#ifndef QGSPATHRESOLVER_H
17#define QGSPATHRESOLVER_H
18
19#include "qgis_core.h"
20
21#include <QString>
22#include <functional>
23#include <vector>
24
31class CORE_EXPORT QgsPathResolver
32{
33 public:
35 explicit QgsPathResolver( const QString &baseFileName = QString(), const QString &attachmentDir = QString() );
36
42 QString writePath( const QString &filename ) const;
43
45 QString readPath( const QString &filename ) const;
46
47#ifndef SIP_RUN
48
67 static QString setPathPreprocessor( const std::function< QString( const QString &filename )> &processor );
68#else
69
113 static QString setPathPreprocessor( SIP_PYCALLABLE / AllowNone / );
114 % MethodCode
115 PyObject *s = 0;
116 QString id;
117 Py_XINCREF( a0 );
118 Py_BEGIN_ALLOW_THREADS
119 id = QgsPathResolver::setPathPreprocessor( [a0]( const QString &arg )->QString
120 {
121 QString res;
122 SIP_BLOCK_THREADS
123 PyObject *s = sipCallMethod( NULL, a0, "D", &arg, sipType_QString, NULL );
124 int state;
125 int sipIsError = 0;
126 QString *t1 = reinterpret_cast<QString *>( sipConvertToType( s, sipType_QString, 0, SIP_NOT_NONE, &state, &sipIsError ) );
127 if ( sipIsError == 0 )
128 {
129 res = QString( *t1 );
130 }
131 sipReleaseType( t1, sipType_QString, state );
132 SIP_UNBLOCK_THREADS
133 return res;
134 } );
135
136 Py_END_ALLOW_THREADS
137 s = sipConvertFromNewType( new QString( id ), sipType_QString, 0 );
138 return s;
139 % End
140#endif
141
142#ifndef SIP_RUN
143
154 static bool removePathPreprocessor( const QString &id );
155#else
156
167 static void removePathPreprocessor( const QString &id );
168 % MethodCode
170 {
171 PyErr_SetString( PyExc_KeyError, QStringLiteral( "No processor with id %1 exists." ).arg( *a0 ).toUtf8().constData() );
172 sipIsErr = 1;
173 }
174 % End
175#endif
176
177
178
197#ifndef SIP_RUN
198 static QString setPathWriter( const std::function< QString( const QString &filename )> &writer );
199#else
200
224 static QString setPathWriter( SIP_PYCALLABLE / AllowNone / );
225 % MethodCode
226 PyObject *s = 0;
227 QString id;
228 Py_XINCREF( a0 );
229 Py_BEGIN_ALLOW_THREADS
230 id = QgsPathResolver::setPathWriter( [a0]( const QString &arg )->QString
231 {
232 QString res;
233 SIP_BLOCK_THREADS
234 PyObject *s = sipCallMethod( NULL, a0, "D", &arg, sipType_QString, NULL );
235 int state;
236 int sipIsError = 0;
237 QString *t1 = reinterpret_cast<QString *>( sipConvertToType( s, sipType_QString, 0, SIP_NOT_NONE, &state, &sipIsError ) );
238 if ( sipIsError == 0 )
239 {
240 res = QString( *t1 );
241 }
242 sipReleaseType( t1, sipType_QString, state );
243 SIP_UNBLOCK_THREADS
244 return res;
245 } );
246
247 Py_END_ALLOW_THREADS
248 s = sipConvertFromNewType( new QString( id ), sipType_QString, 0 );
249 return s;
250 % End
251#endif
252
263#ifndef SIP_RUN
264 static bool removePathWriter( const QString &id );
265#else
266
276 static void removePathWriter( const QString &id );
277 % MethodCode
279 {
280 PyErr_SetString( PyExc_KeyError, QStringLiteral( "No writer with id %1 exists." ).arg( *a0 ).toUtf8().constData() );
281 sipIsErr = 1;
282 }
283 % End
284#endif
285
286 private:
288 QString mBaseFileName;
290 QString mAttachmentDir;
291};
292
293#endif // QGSPATHRESOLVER_H
Resolves relative paths into absolute paths and vice versa.
static bool removePathPreprocessor(const QString &id)
Removes the custom pre-processor function with matching id.
static QString setPathPreprocessor(const std::function< QString(const QString &filename)> &processor)
Sets a path pre-processor function, which allows for manipulation of paths and data sources prior to ...
static bool removePathWriter(const QString &id)
Removes the custom writer function with matching id.
static QString setPathWriter(const std::function< QString(const QString &filename)> &writer)
Sets a path writer function, which allows for manipulation of paths and data sources prior to writing...