My Project
gdal_utils_priv.h
1/******************************************************************************
2 * $Id$
3 *
4 * Project: GDAL Utilities
5 * Purpose: GDAL Utilities Private Declarations.
6 * Author: Even Rouault <even.rouault at spatialys.com>
7 *
8 * ****************************************************************************
9 * Copyright (c) 2015, Even Rouault <even.rouault at spatialys.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included
19 * in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 * DEALINGS IN THE SOFTWARE.
28 ****************************************************************************/
29
30#ifndef GDAL_UTILS_PRIV_H_INCLUDED
31#define GDAL_UTILS_PRIV_H_INCLUDED
32
33#ifndef DOXYGEN_SKIP
34
35#include "cpl_port.h"
36#include "gdal_utils.h"
37
38/* This file is only meant at being used by the XXXX_bin.cpp and XXXX_lib.cpp files */
39
40CPL_C_START
41
43{
44 /* Filename to open. */
45 char* pszFilename;
46
47 /* Open options. */
48 char** papszOpenOptions;
49
50 /* > for reporting on a particular subdataset */
51 int nSubdataset;
52};
53
55{
56 char* pszSource;
57 char* pszDest;
58 int bQuiet;
59 int bCopySubDatasets;
60 char** papszOpenOptions;
61 char* pszFormat;
62};
63
65{
66 char** papszSrcFiles;
67 char* pszDstFilename;
68 int bQuiet;
69 char** papszOpenOptions;
70
73
74 int bOverwrite;
75 int bCreateOutput;
76};
77
78/* Access modes */
79typedef enum
80{
81 ACCESS_CREATION,
82 ACCESS_UPDATE, /* open existing output datasource in update mode rather than trying to create a new one */
83 ACCESS_APPEND, /* append to existing layer instead of creating new */
84 ACCESS_OVERWRITE /* delete the output layer and recreate it empty */
85} GDALVectorTranslateAccessMode;
86
88{
89 char* pszDataSource;
90 char* pszDestDataSource;
91 int bQuiet;
92 char** papszOpenOptions;
93 char* pszFormat;
94 GDALVectorTranslateAccessMode eAccessMode;
95};
96
98{
99 char* pszProcessing;
100 char* pszSrcFilename;
101 char* pszColorFilename;
102 char* pszDstFilename;
103 int bQuiet;
104};
105
107{
108 char* pszInFile;
109 char* pszOutFile;
110 int bQuiet;
111};
112
114{
115 char* pszSource;
116 char* pszDest;
117 int bQuiet;
118 char* pszFormat;
119};
120
122{
123 char* pszSource;
124 char* pszDest;
125 int bQuiet;
126 char* pszFormat;
127 int bCreateOutput;
128};
129
131{
132 int nSrcFiles;
133 char** papszSrcFiles;
134 char* pszDstFilename;
135 int bQuiet;
136 int bOverwrite;
137};
138
139CPL_C_END
140
141#endif /* #ifndef DOXYGEN_SKIP */
142
143#endif /* GDAL_UTILS_PRIV_H_INCLUDED */
Definition: gdal_utils_priv.h:131
Definition: gdal_utils_priv.h:98
Definition: gdal_utils_priv.h:114
Definition: gdal_utils_priv.h:43
Definition: gdal_utils_priv.h:107
Definition: gdal_utils_priv.h:122
Definition: gdal_utils_priv.h:55
Definition: gdal_utils_priv.h:88
Definition: gdal_utils_priv.h:65
char ** papszDestOpenOptions
Definition: gdal_utils_priv.h:72