Skip to content

Commit a5f476e

Browse files
committed
scripts/collect_config_options.py: improve to collect PDF config options
1 parent 0224c00 commit a5f476e

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

port/cpl_known_config_options.h

+8
Original file line numberDiff line numberDiff line change
@@ -348,12 +348,19 @@ constexpr static const char* const apszKnownConfigOptions[] =
348348
"GDAL_PAM_ENABLED", // from gdalpamdataset.cpp
349349
"GDAL_PAM_MODE", // from gdalpamdataset.cpp
350350
"GDAL_PAM_PROXY_DIR", // from gdalpamproxydb.cpp
351+
"GDAL_PDF_BANDS", // from pdfdrivercore.cpp
352+
"GDAL_PDF_DPI", // from pdfdrivercore.cpp
351353
"GDAL_PDF_GEO_ENCODING", // from pdfcreatecopy.cpp, pdfdataset.cpp
352354
"GDAL_PDF_LAUNDER_LAYER_NAMES", // from pdfdataset.cpp
355+
"GDAL_PDF_LAYERS", // from pdfdrivercore.cpp
356+
"GDAL_PDF_LAYERS_OFF", // from pdfdrivercore.cpp
357+
"GDAL_PDF_LIB", // from pdfdrivercore.cpp
353358
"GDAL_PDF_LIMIT_PAGE_COUNT", // from pdfdataset.cpp
359+
"GDAL_PDF_NEATLINE", // from pdfdrivercore.cpp
354360
"GDAL_PDF_OGC_BP_READ_WKT", // from pdfdataset.cpp
355361
"GDAL_PDF_OGC_BP_WRITE_WKT", // from pdfcreatecopy.cpp, pdfcreatefromcomposition.cpp
356362
"GDAL_PDF_PRINT_COMMANDS", // from pdfdataset.cpp
363+
"GDAL_PDF_RENDERING_OPTIONS", // from pdfdrivercore.cpp
357364
"GDAL_PDF_USE_SPAWN", // from pdfdataset.cpp
358365
"GDAL_PDF_WRITE_ESRI_CODE_AS_EPSG", // from pdfcreatecopy.cpp
359366
"GDAL_PDF_WRITE_GEOREF_ON_IMAGE", // from pdfcreatecopy.cpp
@@ -899,6 +906,7 @@ constexpr static const char* const apszKnownConfigOptions[] =
899906
"PDF_DUMP_STREAM", // from pdfdataset.cpp
900907
"PDF_REPORT_GCPS", // from pdfdataset.cpp
901908
"PDF_USE_CTM", // from pdfdataset.cpp
909+
"PDF_USER_PWD", // from pdfdrivercore.cpp
902910
"PDS4_ENDIANNESS", // from pds4vector.cpp
903911
"PDS4_FORCE_MASK", // from pds4dataset.cpp
904912
"PDS4_SIGNEDNESS", // from pds4vector.cpp

scripts/collect_config_options.py

+10
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,16 @@ def collect_config_options(filename):
131131
else:
132132
options[option].add(os.path.basename(filename))
133133

134+
pos = l.find("alt_config_option='")
135+
if pos >= 0:
136+
pos_start = pos + len("alt_config_option='")
137+
pos_end = l.find("'", pos_start)
138+
option = l[pos_start:pos_end]
139+
if option not in options:
140+
options[option] = set([os.path.basename(filename)])
141+
else:
142+
options[option].add(os.path.basename(filename))
143+
134144

135145
def explore(dirname):
136146
for filename in glob.glob(dirname + "/*"):

0 commit comments

Comments
 (0)