-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinkscape-layers.cpp
More file actions
461 lines (369 loc) · 15.2 KB
/
inkscape-layers.cpp
File metadata and controls
461 lines (369 loc) · 15.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
/////////////////////////////////////
// _____ //
// inkscape-layers / / //
// /____// //
// by Robert Lude /____// //
// <rob@ertlu.de> /____/ //
// //
/////////////////////////////////////
#include <libxml++/libxml++.h>
#include <iostream>
#include <string.h>
#include <stdlib.h>
#include "trim-cpp/trim.hpp"
#define NAME_MODE_DEFAULT 0
#define NAME_MODE_LABEL 1
#define NAME_MODE_ID 2
#define NAME_MODE_INDEX 3
#define VISIBILITY_MODE_DEFAULT 0
#define VISIBILITY_MODE_ALL 1
#define VISIBILITY_MODE_VISIBLE 2
#define VERSION_STRING "0.2.1"
class
LayerInfo
{ public:
;; /* Variables */ ;;;;;;;;;;;;;;
; const std::string label ;
; const std::string id ;
; const bool visible ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
LayerInfo
( std::string id
, std::string label
, bool visible
)
: id ( id )
, label ( label )
, visible ( visible )
{ }
};
typedef
std::vector<LayerInfo*>
LayerList
;
class
Mode
{ public:
;; /* Variables */ ;;;;;;;;;;;;;;;;;;;
; bool valid ;
; std::string inputFilename ;
; std::string layerFilenamePrefix ;
; std::string layerFilenameSuffix ;
; int nameMode ;
; int visibilityMode ;
; std::string outputDirectory ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Mode
( int argumentCount
, char** arguments
)
{ ;; /* Local variables */ ;;;;;;;;;;;;;;;;;;;;
; int argumentIndex ;
; std::string::size_type extensionStart ;
; std::string outputBaseName ;
; std::string outputDirectory ;
; std::string::size_type pathEnd ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
valid = false;
// Make sure we have at least one argument
if ( argumentCount < 2 ) return;
// Process arguments
nameMode = NAME_MODE_DEFAULT;
visibilityMode = NAME_MODE_DEFAULT;
for ( argumentIndex = 1 ; argumentIndex < argumentCount ; ++argumentIndex )
{ // output directory
if ( strcmp(arguments[argumentIndex], "-o") == 0
|| strcmp(arguments[argumentIndex], "--output-directory") == 0
)
{ if ( argumentIndex + 1 == argumentCount
|| outputDirectory.length() != 0
)
{ return; }
outputDirectory = arguments[argumentIndex + 1];
if ( outputDirectory[outputDirectory.length()] != '/' ) outputDirectory += '/';
++argumentIndex;
continue;
}
// name mode
if ( strcmp(arguments[argumentIndex], "-n") == 0 )
{ if ( argumentIndex + 1 == argumentCount
|| nameMode != NAME_MODE_DEFAULT
)
{ return; }
if ( strcmp(arguments[argumentIndex + 1], "label") == 0 )
{ nameMode = NAME_MODE_LABEL;
++argumentIndex;
continue;
}
if ( strcmp(arguments[argumentIndex + 1], "id") == 0 )
{ nameMode = NAME_MODE_ID;
++argumentIndex;
continue;
}
if ( strcmp(arguments[argumentIndex + 1], "index") == 0 )
{ nameMode = NAME_MODE_INDEX;
++argumentIndex;
continue;
}
return;
}
if ( strcmp(arguments[argumentIndex], "--name-label") == 0 )
{ if ( nameMode != NAME_MODE_DEFAULT ) return;
nameMode = NAME_MODE_LABEL;
continue;
}
if ( strcmp(arguments[argumentIndex], "--name-id") == 0 )
{ if ( nameMode != NAME_MODE_DEFAULT ) return;
nameMode = NAME_MODE_ID;
continue;
}
if ( strcmp(arguments[argumentIndex], "--name-index") == 0 )
{ if ( nameMode != NAME_MODE_DEFAULT ) return;
nameMode = NAME_MODE_INDEX;
continue;
}
// visibility mode
if ( strcmp(arguments[argumentIndex], "-v") == 0 )
{ if ( argumentIndex + 1 == argumentCount
|| visibilityMode != VISIBILITY_MODE_DEFAULT
)
{ return; }
if ( strcmp(arguments[argumentIndex + 1], "all") == 0 )
{ visibilityMode = VISIBILITY_MODE_ALL;
++argumentIndex;
continue;
}
if ( strcmp(arguments[argumentIndex + 1], "visible") == 0 )
{ visibilityMode = VISIBILITY_MODE_VISIBLE;
++argumentIndex;
continue;
}
return;
}
if ( strcmp(arguments[argumentIndex], "--visibility-all") == 0 )
{ if ( visibilityMode != VISIBILITY_MODE_DEFAULT ) return;
visibilityMode = VISIBILITY_MODE_ALL;
continue;
}
if ( strcmp(arguments[argumentIndex], "--visibility-visible") == 0 )
{ if ( visibilityMode != VISIBILITY_MODE_DEFAULT ) return;
visibilityMode = VISIBILITY_MODE_VISIBLE;
continue;
}
// input file
if ( inputFilename.length() != 0 )
{ valid = false;
return;
}
inputFilename = arguments[argumentIndex];
}
if ( nameMode == NAME_MODE_DEFAULT ) nameMode = NAME_MODE_LABEL;
if ( visibilityMode == VISIBILITY_MODE_DEFAULT ) visibilityMode = VISIBILITY_MODE_ALL;
// Extract filename parts
pathEnd = inputFilename.rfind('/');
if ( pathEnd == std::string::npos ) pathEnd = 0;
extensionStart = inputFilename.find('.', pathEnd);
if ( outputDirectory.length() == 0 ) outputDirectory = inputFilename.substr(0, pathEnd);
outputBaseName = inputFilename.substr(pathEnd, extensionStart - pathEnd);
layerFilenamePrefix = outputDirectory + outputBaseName + "-";
if ( extensionStart == std::string::npos ) {
layerFilenameSuffix = "";
} else {
layerFilenameSuffix = inputFilename.substr(extensionStart);
}
// Finish and finalize
valid = true;
}
};
void
printUsage
( )
{ std::cout << "inkscape-layers v" << VERSION_STRING << std::endl
<< " by Robert Lude <rob@ertlu.de>" << std::endl
<< std::endl
<< "Usage:" << std::endl
<< " inkscape-layers input_file options" << std::endl
<< std::endl
<< "Options:" << std::endl
<< " -o output_directory, --output-directory output_directory" << std::endl
<< " Specifies where to put the resulting SVG files" << std::endl
<< " -n name_mode, --name-label, --name-id, --name-index" << std::endl
<< " Specifies how to name the resulting SVG files. Acceptable values for name_mode are:" << std::endl
<< " label Default. Uses the user-defined layer name from Inkscape" << std::endl
<< " id Uses the layer's id attribute" << std::endl
<< " index Uses the layer's position in the original SVG file" << std::endl
<< " -v visibility_mode, --visibility-all, --visibility-visible" << std::endl
<< " Specifies whether or not to skip invisible layers, or rather which layers to isolate." << std::endl
<< " Acceptable values for visiblity_mode are:" << std::endl
<< " visible Default. Only exports layers which are visible" << std::endl
<< " all Exports each layer" << std::endl
;
}
bool
isVisible
( xmlpp::Element* layer )
{ ;;/* Local Variables */;;;;;;;;;;;;;;;;;;;
; std::string style ;
; std::string::size_type displayBegin ;
; std::string::size_type valueBegin ;
; std::string::size_type valueEnd ;
; std::string::size_type valueLength ;
; std::string value ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
style = layer->get_attribute_value("style").raw();
Trim::inPlace(style);
if ( (displayBegin = style.find("display")) == std::string::npos ) return true;
if ( (valueBegin = style.find(':', displayBegin)) == std::string::npos ) return true;
++valueBegin;
valueEnd = style.find(';', valueBegin);
valueLength = valueEnd - valueBegin;
value = style.substr(valueBegin, valueLength);
Trim::inPlace(value);
return value.compare("none") != 0;
}
void
makeVisible
( xmlpp::Element* layer )
{ ;;/* Local Variables */;;;;;;;;;;;;;;;;;;;
; std::string style ;
; std::string::size_type displayBegin ;
; std::string::size_type valueBegin ;
; std::string::size_type valueEnd ;
; std::string::size_type valueLength ;
; std::string value ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
style = layer->get_attribute_value("style").raw();
Trim::inPlace(style);
if ( (displayBegin = style.find("display")) == std::string::npos ) return;
if ( (valueBegin = style.find(':', displayBegin)) == std::string::npos ) return;
++valueBegin;
valueEnd = style.find(';', valueBegin);
valueLength = valueEnd - valueBegin;
style.replace(valueBegin, valueLength, "inline");
layer->set_attribute("style", style);
}
LayerList*
acquireLayerInfo
( xmlpp::Document* document
, xmlpp::Node::PrefixNsMap& prefixNsMap
)
{ ;; /* Local Variables */ ;;;;;;;;;;;;;;;;;;;;;;;;;;
; xmlpp::Element* rootNode ;
; xmlpp::NodeSet layers ;
; xmlpp::NodeSet::const_iterator layerIterator ;
; LayerList* result ;
; xmlpp::Element* layer ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
rootNode = document->get_root_node();
layers = rootNode->find("//svg:g[@inkscape:groupmode='layer']", prefixNsMap);
result = new LayerList();
layerIterator = layers.begin();
while ( layerIterator != layers.end() )
{ layer = (xmlpp::Element*)(*layerIterator);
result->push_back ( new LayerInfo ( std::string(layer->get_attribute_value("id").raw())
, std::string(layer->get_attribute_value("label","inkscape").raw())
, isVisible(layer)
)
);
++layerIterator;
}
return result;
}
void
isolate
( LayerInfo* layer
, xmlpp::Element* rootNode
, xmlpp::Node::PrefixNsMap& prefixNsMap
)
{ ;; /* Local Variables */ ;;;;;;;;;;;;;;;;;;;;;;;;;;
; xmlpp::NodeSet layers ;
; xmlpp::NodeSet::const_iterator layerIterator ;
; std::string xPath ;
; xmlpp::Element* layerElement ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
// Delete all layers that have a different id
layers = rootNode->find(std::string("//svg:g[@inkscape:groupmode = 'layer' and @id != '") + layer->id + "']", prefixNsMap);
for ( layerIterator = layers.begin()
; layerIterator != layers.end()
; ++layerIterator
)
{ rootNode->get_parent()->remove_child(*layerIterator); }
// Make remaining layers visible if necessary
if ( ! layer->visible )
{ layers = rootNode->find(std::string("//svg:g[@inkscape:groupmode = 'layer' and @id = '") + layer->id + "']", prefixNsMap);
for ( layerIterator = layers.begin()
; layerIterator != layers.end()
; ++layerIterator
)
{ if ( (layerElement = dynamic_cast<xmlpp::Element*>(*layerIterator)) ) makeVisible(layerElement); }
}
}
int
main
( int argumentCount
, char** arguments
)
{ ;; /* Local Variables */ ;;;;;;;;;;;;;;;;;;;;;;;;;;
; xmlpp::DomParser domParser ;
; LayerList* layerList ;
; LayerList::iterator layerIterator ;
; xmlpp::Node::PrefixNsMap prefixNsMap ;
; std::string layerOutputFilename ;
; std::string layerOutputName ;
; xmlpp::Document* document ;
; int layerIndex ;
; Mode* mode ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
// Process arguments
mode = new Mode(argumentCount, arguments);
if ( ! mode->valid )
{ printUsage();
return -1;
}
// Setup XML namespaces
prefixNsMap["svg"] = "http://www.w3.org/2000/svg";
prefixNsMap["inkscape"] = "http://www.inkscape.org/namespaces/inkscape";
// Read layer info
domParser.parse_file(mode->inputFilename);
document = domParser.get_document();
layerList = acquireLayerInfo(document, prefixNsMap);
// Extract each layer
layerIndex = 0;
for ( layerIndex = 0
, layerIterator = layerList->begin()
; layerIndex < layerList->size()
; ++layerIndex
, ++layerIterator
)
{ if ( mode->visibilityMode == VISIBILITY_MODE_VISIBLE
&& ! (*layerIterator)->visible
)
{ continue; }
domParser.parse_file(mode->inputFilename);
switch ( mode->nameMode )
{ case NAME_MODE_LABEL : layerOutputName = (*layerIterator)->label;
break;
case NAME_MODE_ID : layerOutputName = (*layerIterator)->id;
break;
case NAME_MODE_INDEX : layerOutputName = std::to_string(layerIndex);
break;
}
layerOutputFilename = ( mode->layerFilenamePrefix
+ layerOutputName
+ mode->layerFilenameSuffix
);
document = domParser.get_document();
isolate(*layerIterator, document->get_root_node(), prefixNsMap);
document->write_to_file(layerOutputFilename);
}
// Clean up
for ( layerIterator = layerList->begin()
; layerIterator != layerList->end()
; ++layerIterator
)
{ delete *layerIterator; }
delete layerList;
delete mode;
// Finish
return 0;
}