1 | #include "otbWrapperApplicationRegistry.h" |
---|
2 | #include "otbWrapperApplication.h" |
---|
3 | #include "otbImage.h" |
---|
4 | #include <iostream> |
---|
5 | |
---|
6 | using namespace otb::Wrapper; |
---|
7 | |
---|
8 | std::string ReplaceAll(std::string str, const std::string& from, const std::string& to) { |
---|
9 | size_t start_pos = 0; |
---|
10 | while((start_pos = str.find(from, start_pos)) != std::string::npos) { |
---|
11 | str.replace(start_pos, from.length(), to); |
---|
12 | start_pos += to.length(); // Handles case where 'to' is a substring of 'from' |
---|
13 | } |
---|
14 | return str; |
---|
15 | } |
---|
16 | |
---|
17 | void printDefaultOutput(){ |
---|
18 | std::cout << " [Result]" << std::endl; |
---|
19 | std::cout << " Title = the result message" << std::endl; |
---|
20 | std::cout << " Abstract = the result message" << std::endl; |
---|
21 | std::cout << " <LiteralData>" << std::endl; |
---|
22 | std::cout << " dataType = string" << std::endl; |
---|
23 | std::cout << " <Default />" << std::endl; |
---|
24 | std::cout << " </LiteralData>" << std::endl; |
---|
25 | } |
---|
26 | |
---|
27 | void printAscii(){ |
---|
28 | std::cout << " <Default>" << std::endl; |
---|
29 | std::cout << " mimeType = text/plain" << std::endl; |
---|
30 | std::cout << " encoding = ascii" << std::endl; |
---|
31 | std::cout << " </Default>" << std::endl; |
---|
32 | } |
---|
33 | |
---|
34 | void printXml(){ |
---|
35 | std::cout << " <Default>" << std::endl; |
---|
36 | std::cout << " mimeType = text/xml" << std::endl; |
---|
37 | std::cout << " encoding = utf-8" << std::endl; |
---|
38 | std::cout << " </Default>" << std::endl; |
---|
39 | } |
---|
40 | |
---|
41 | void printGeoid(){ |
---|
42 | std::cout << " <Default>" << std::endl; |
---|
43 | std::cout << " mimeType = application/octet-stream" << std::endl; |
---|
44 | std::cout << " </Default>" << std::endl; |
---|
45 | } |
---|
46 | |
---|
47 | void printCSV(){ |
---|
48 | std::cout << " <Default>" << std::endl; |
---|
49 | std::cout << " mimeType = text/csv" << std::endl; |
---|
50 | std::cout << " encoding = utf-8" << std::endl; |
---|
51 | std::cout << " </Default>" << std::endl; |
---|
52 | } |
---|
53 | |
---|
54 | void printUnknown(){ |
---|
55 | std::cout << " <Default>" << std::endl; |
---|
56 | std::cout << " mimeType = text/xml" << std::endl; |
---|
57 | std::cout << " encoding = utf-8" << std::endl; |
---|
58 | std::cout << " </Default>" << std::endl; |
---|
59 | std::cout << " <Supported>" << std::endl; |
---|
60 | std::cout << " mimeType = text/plain" << std::endl; |
---|
61 | std::cout << " encoding = utf-8" << std::endl; |
---|
62 | std::cout << " </Supported>" << std::endl; |
---|
63 | } |
---|
64 | |
---|
65 | void printImages(){ |
---|
66 | std::cout << " <Default>" << std::endl; |
---|
67 | std::cout << " mimeType = image/tiff" << std::endl; |
---|
68 | std::cout << " </Default>" << std::endl; |
---|
69 | #if defined(OTB_USE_JPEG2000) |
---|
70 | std::cout << " <Supported>" << std::endl; |
---|
71 | std::cout << " mimeType = image/jp2" << std::endl; |
---|
72 | std::cout << " </Supported>" << std::endl; |
---|
73 | #endif |
---|
74 | std::cout << " <Supported>" << std::endl; |
---|
75 | std::cout << " mimeType = image/jpeg" << std::endl; |
---|
76 | std::cout << " </Supported>" << std::endl; |
---|
77 | std::cout << " <Supported>" << std::endl; |
---|
78 | std::cout << " mimeType = image/png" << std::endl; |
---|
79 | std::cout << " </Supported>" << std::endl; |
---|
80 | } |
---|
81 | |
---|
82 | void printKmz(){ |
---|
83 | std::cout << " <Default>" << std::endl; |
---|
84 | std::cout << " mimeType = application/vnd.google-earth.kmz" << std::endl; |
---|
85 | std::cout << " extension = kmz" << std::endl; |
---|
86 | std::cout << " </Default>" << std::endl; |
---|
87 | } |
---|
88 | |
---|
89 | void printVector(){ |
---|
90 | std::cout << " <Default>" << std::endl; |
---|
91 | std::cout << " mimeType = text/xml" << std::endl; |
---|
92 | std::cout << " encoding = utf-8" << std::endl; |
---|
93 | std::cout << " </Default>" << std::endl; |
---|
94 | std::cout << " <Supported>" << std::endl; |
---|
95 | std::cout << " mimeType = application/vnd.google-earth.kml+xml" << std::endl; |
---|
96 | std::cout << " encoding = utf-8" << std::endl; |
---|
97 | std::cout << " </Supported>" << std::endl; |
---|
98 | std::cout << " <Supported>" << std::endl; |
---|
99 | std::cout << " mimeType = application/zip" << std::endl; |
---|
100 | std::cout << " </Supported>" << std::endl; |
---|
101 | } |
---|
102 | |
---|
103 | void printOutputImage(){ |
---|
104 | std::cout << " <LiteralData>" << std::endl; |
---|
105 | std::cout << " dataType = string" << std::endl; |
---|
106 | std::cout << " <Default>" << std::endl; |
---|
107 | std::cout << " value = float" << std::endl; |
---|
108 | std::cout << " AllowedValues = uint8,uint16,int16n,int32,int32,float,double" << std::endl; |
---|
109 | std::cout << " </Default>" << std::endl; |
---|
110 | std::cout << " </LiteralData>" << std::endl; |
---|
111 | } |
---|
112 | |
---|
113 | void printOutputComplexImage(){ |
---|
114 | std::cout << " <LiteralData>" << std::endl; |
---|
115 | std::cout << " dataType = string" << std::endl; |
---|
116 | std::cout << " <Default>" << std::endl; |
---|
117 | std::cout << " value = cfloat" << std::endl; |
---|
118 | std::cout << " AllowedValues = cfloat,cdouble" << std::endl; |
---|
119 | std::cout << " </Default>" << std::endl; |
---|
120 | std::cout << " </LiteralData>" << std::endl; |
---|
121 | } |
---|
122 | |
---|
123 | int main(int itkNotUsed(argc), char * itkNotUsed(argv)[]) |
---|
124 | { |
---|
125 | typedef otb::Image<unsigned short, 2> ImageType; |
---|
126 | |
---|
127 | ImageType::Pointer image = ImageType::New(); |
---|
128 | |
---|
129 | const char * ITK_AUTOLOAD_PATH = itksys::SystemTools::GetEnv("ITK_AUTOLOAD_PATH"); |
---|
130 | std::cerr << "ERROR: Module search path: " << (ITK_AUTOLOAD_PATH ? ITK_AUTOLOAD_PATH : "none (check ITK_AUTOLOAD_PATH)") << std::endl; |
---|
131 | |
---|
132 | std::vector<std::string> list = ApplicationRegistry::GetAvailableApplications(); |
---|
133 | if (list.size() == 0) |
---|
134 | std::cerr << "ERROR: Available modules : none." << std::endl; |
---|
135 | else{ |
---|
136 | std::cerr << "ERROR: Available modules :" << std::endl; |
---|
137 | for (std::vector<std::string>::const_iterator it = list.begin(); it != list.end(); ++it){ |
---|
138 | std::string filename= *it + ".zcfg"; |
---|
139 | std::ofstream out(filename.c_str(),std::ofstream::out); |
---|
140 | std::streambuf *coutbuf = std::cout.rdbuf(); |
---|
141 | std::cout.rdbuf(out.rdbuf()); |
---|
142 | |
---|
143 | std::cerr << *it << std::endl; |
---|
144 | std::cout << "[" << *it << "]" << std::endl; |
---|
145 | Application::Pointer m_Application=ApplicationRegistry::CreateApplication(*it); |
---|
146 | std::string s0 = m_Application->GetDescription(); |
---|
147 | s0=ReplaceAll(ReplaceAll(s0,std::string("\n"),std::string("")),std::string("\t"),std::string("")); |
---|
148 | std::cout << " Title = " << s0 << std::endl; |
---|
149 | s0 = m_Application->GetDocLongDescription(); |
---|
150 | s0=ReplaceAll(ReplaceAll(s0,std::string("\n"),std::string("")),std::string("\t"),std::string("")); |
---|
151 | std::cout << " Abstract = " << s0 << std::endl; |
---|
152 | const std::vector<std::string> appKeyList = m_Application->GetParametersKeys(true); |
---|
153 | std::cout << " storeSupported = true"<< std::endl; |
---|
154 | std::cout << " statusSupported = true" << std::endl; |
---|
155 | std::cout << " serviceProvider = " << *it << std::endl; |
---|
156 | std::cout << " serviceType = OTB" << std::endl; |
---|
157 | std::cout << " <DataInputs>" << std::endl; |
---|
158 | for (unsigned int i = 0; i < appKeyList.size(); i++){ |
---|
159 | const std::string paramKey(appKeyList[i]); |
---|
160 | Parameter::Pointer param = m_Application->GetParameterByKey(paramKey); |
---|
161 | ParameterType type = m_Application->GetParameterType(paramKey); |
---|
162 | Role role = m_Application->GetParameterRole(paramKey); |
---|
163 | |
---|
164 | if(paramKey!="inxml" && paramKey!="outxml" && role==0 && type!=17 |
---|
165 | && type!=ParameterType_OutputFilename && type!=ParameterType_OutputVectorData){ |
---|
166 | std::vector<std::string> values; |
---|
167 | std::string s = m_Application->GetParameterDescription(paramKey); |
---|
168 | s=ReplaceAll(ReplaceAll(ReplaceAll(s,std::string("\n"),std::string("")),std::string("\t"),std::string("")),std::string("<"),std::string("<")); |
---|
169 | std::cout << " [" << paramKey << "]" << std::endl; |
---|
170 | if(s.length()>0){ |
---|
171 | std::cout << " Title = " << s << std::endl; |
---|
172 | std::cout << " Abstract = " << s << std::endl; |
---|
173 | }else{ |
---|
174 | std::cout << " Title = " << paramKey << std::endl; |
---|
175 | std::cout << " Abstract = " << paramKey << std::endl; |
---|
176 | } |
---|
177 | std::cout << " minOccurs = " << m_Application->IsMandatory(paramKey) << std::endl; |
---|
178 | /* Bounded and unbounded parameters */ |
---|
179 | if(type == ParameterType_StringList || type == ParameterType_InputImageList |
---|
180 | || type == ParameterType_InputVectorDataList || type == ParameterType_InputFilenameList |
---|
181 | || type == ParameterType_ListView) |
---|
182 | std::cout << " maxOccurs = 1024" << std::endl; |
---|
183 | else |
---|
184 | std::cout << " maxOccurs = 1" << std::endl; |
---|
185 | std::replace( s.begin(), s.end(), '\n', ' '); |
---|
186 | |
---|
187 | if(type == ParameterType_StringList || type == ParameterType_String || type == ParameterType_Float |
---|
188 | || type == ParameterType_Int || type == ParameterType_Choice || type == ParameterType_ListView |
---|
189 | || type == ParameterType_RAM || type == ParameterType_Empty || type == ParameterType_Directory){ |
---|
190 | std::cout << " <LiteralData>" << std::endl; |
---|
191 | std::string lt; |
---|
192 | if(type == ParameterType_Int || type == ParameterType_RAM) |
---|
193 | lt="integer"; |
---|
194 | if(type == ParameterType_Float) |
---|
195 | lt="float"; |
---|
196 | if(type == ParameterType_String || type == ParameterType_StringList |
---|
197 | || type == ParameterType_Choice || type == ParameterType_Directory |
---|
198 | || type == ParameterType_ListView) |
---|
199 | lt="string"; |
---|
200 | if(type == ParameterType_Empty) |
---|
201 | lt="boolean"; |
---|
202 | std::cout << " dataType = " << lt << std::endl; |
---|
203 | if(type == ParameterType_Choice || type == ParameterType_ListView){ |
---|
204 | const std::vector<std::string> nList = m_Application->GetChoiceNames(paramKey); |
---|
205 | const std::vector<std::string> keysList = m_Application->GetChoiceKeys(paramKey); |
---|
206 | if(keysList.size()==0){ |
---|
207 | std::cout << " <Default />" << std::endl; |
---|
208 | } |
---|
209 | for (unsigned int j = 0; j < keysList.size(); j++){ |
---|
210 | const std::string key(keysList[j]); |
---|
211 | if(j==0){ |
---|
212 | std::cout << " <Default>" << std::endl; |
---|
213 | if(m_Application->HasValue(paramKey)) |
---|
214 | std::cout << " value = " << m_Application->GetParameterAsString(paramKey) << std::endl; |
---|
215 | else |
---|
216 | std::cout << " value = " << key << std::endl; |
---|
217 | } |
---|
218 | else{ |
---|
219 | if(j==1){ |
---|
220 | std::cout << " AllowedValues = "+keysList[0]+","; |
---|
221 | } |
---|
222 | std::cout << keysList[j]; |
---|
223 | if(j+1>=keysList.size()){ |
---|
224 | std::cout << std::endl; |
---|
225 | std::cout << " </Default>" << std::endl; |
---|
226 | } |
---|
227 | else |
---|
228 | std::cout << ","; |
---|
229 | } |
---|
230 | } |
---|
231 | } |
---|
232 | else{ |
---|
233 | if(type!=17 && m_Application->HasValue(paramKey)){ |
---|
234 | std::cout << " <Default>" << std::endl; |
---|
235 | std::cout << " value = " << m_Application->GetParameterAsString(paramKey) << std::endl; |
---|
236 | std::cout << " </Default>" << std::endl; |
---|
237 | } |
---|
238 | else |
---|
239 | std::cout << " <Default />" << std::endl; |
---|
240 | } |
---|
241 | std::cout << " </LiteralData>" << std::endl; |
---|
242 | } |
---|
243 | else{ |
---|
244 | if(type == ParameterType_OutputImage) |
---|
245 | printOutputImage(); |
---|
246 | else{ |
---|
247 | if(type == ParameterType_ComplexOutputImage){ |
---|
248 | printOutputComplexImage(); |
---|
249 | }else{ |
---|
250 | std::cout << " <ComplexData>" << std::endl; |
---|
251 | if(type == ParameterType_InputImage || type == ParameterType_InputImageList || type == ParameterType_ComplexInputImage){ |
---|
252 | printImages(); |
---|
253 | } |
---|
254 | else |
---|
255 | if(type == ParameterType_InputVectorData || type == ParameterType_InputVectorDataList){ |
---|
256 | printVector(); |
---|
257 | } |
---|
258 | else |
---|
259 | if(type == ParameterType_InputFilename || type == ParameterType_OutputFilename){ |
---|
260 | |
---|
261 | std::string geoid("geoid"); |
---|
262 | if(paramKey.find(geoid)!= std::string::npos) |
---|
263 | printGeoid(); |
---|
264 | else{ |
---|
265 | std::string dtype("vector"); |
---|
266 | std::string descr(m_Application->GetParameterDescription(paramKey)); |
---|
267 | if(descr.find(dtype)!= std::string::npos) |
---|
268 | printVector(); |
---|
269 | else{ |
---|
270 | std::string dtype1("ASCII"); |
---|
271 | if(descr.find(dtype1)!= std::string::npos) |
---|
272 | printAscii(); |
---|
273 | else{ |
---|
274 | std::string dtype2("XML"); |
---|
275 | std::string dtype3("xml"); |
---|
276 | if(descr.find(dtype2)!= std::string::npos || descr.find(dtype3)!= std::string::npos) |
---|
277 | printXml(); |
---|
278 | else |
---|
279 | printImages(); |
---|
280 | } |
---|
281 | } |
---|
282 | } |
---|
283 | } |
---|
284 | std::cout << " </ComplexData>" << std::endl; |
---|
285 | } |
---|
286 | } |
---|
287 | } |
---|
288 | |
---|
289 | |
---|
290 | } |
---|
291 | } |
---|
292 | std::cout << " <DataInputs>" << std::endl; |
---|
293 | std::cout << " <DataOutputs>" << std::endl; |
---|
294 | int hasOutput=-1; |
---|
295 | for (unsigned int i = 0; i < appKeyList.size(); i++){ |
---|
296 | const std::string paramKey(appKeyList[i]); |
---|
297 | std::vector<std::string> values; |
---|
298 | Parameter::Pointer param = m_Application->GetParameterByKey(paramKey); |
---|
299 | ParameterType type = m_Application->GetParameterType(paramKey); |
---|
300 | Role role = m_Application->GetParameterRole(paramKey); |
---|
301 | |
---|
302 | if(paramKey!="inxml" && paramKey!="outxml" && |
---|
303 | ((type == ParameterType_OutputVectorData || type == ParameterType_OutputImage |
---|
304 | || type == ParameterType_OutputImage || type == ParameterType_ComplexOutputImage |
---|
305 | || type == ParameterType_OutputFilename) || role==1) && type != ParameterType_Group){ |
---|
306 | hasOutput=1; |
---|
307 | std::vector<std::string> values; |
---|
308 | Parameter::Pointer param = m_Application->GetParameterByKey(paramKey); |
---|
309 | ParameterType type = m_Application->GetParameterType(paramKey); |
---|
310 | Role role = m_Application->GetParameterRole(paramKey); |
---|
311 | std::cout << " [" << paramKey << "]" << std::endl; |
---|
312 | std::string s=m_Application->GetParameterDescription(paramKey); |
---|
313 | if(s.length()>0){ |
---|
314 | std::cout << " Title = " << s << std::endl; |
---|
315 | std::cout << " Abstract = " << s << std::endl; |
---|
316 | }else{ |
---|
317 | std::cout << " Title = " << paramKey << std::endl; |
---|
318 | std::cout << " Abstract = " << paramKey << std::endl; |
---|
319 | } |
---|
320 | |
---|
321 | if(type == ParameterType_OutputImage || type == ParameterType_ComplexOutputImage){ |
---|
322 | std::cout << " <ComplexData>" << std::endl; |
---|
323 | printImages(); |
---|
324 | std::cout << " </ComplexData>" << std::endl; |
---|
325 | } |
---|
326 | else |
---|
327 | if(type == ParameterType_OutputVectorData || type == ParameterType_OutputImage){ |
---|
328 | std::cout << " <ComplexData>" << std::endl; |
---|
329 | if(type == ParameterType_OutputImage) |
---|
330 | printImages(); |
---|
331 | else |
---|
332 | printVector(); |
---|
333 | std::cout << " </ComplexData>" << std::endl; |
---|
334 | } |
---|
335 | else |
---|
336 | if(type == ParameterType_String || type == ParameterType_StringList |
---|
337 | || type == ParameterType_Float || type == ParameterType_Int){ |
---|
338 | std::cout << " <LiteralData>" << std::endl; |
---|
339 | std::string lt; |
---|
340 | if(type == ParameterType_Int) |
---|
341 | lt="integer"; |
---|
342 | if(type == ParameterType_Float) |
---|
343 | lt="float"; |
---|
344 | if(type == ParameterType_String || type == ParameterType_StringList) |
---|
345 | lt="string"; |
---|
346 | std::cout << " dataType = " << lt << std::endl; |
---|
347 | std::cout << " <Default />" << std::endl; |
---|
348 | std::cout << " </LiteralData>" << std::endl; |
---|
349 | } |
---|
350 | else |
---|
351 | if(type == ParameterType_OutputFilename){ |
---|
352 | std::cout << " <ComplexData>" << std::endl; |
---|
353 | std::string descr(m_Application->GetParameterDescription(paramKey)); |
---|
354 | std::string dtype("csv"); |
---|
355 | std::string dtype1("CSV"); |
---|
356 | if(descr.find(dtype)!= std::string::npos || descr.find(dtype1)!= std::string::npos) |
---|
357 | printCSV(); |
---|
358 | else{ |
---|
359 | std::string dtype2("text file"); |
---|
360 | if(descr.find(dtype2)!= std::string::npos) |
---|
361 | printAscii(); |
---|
362 | else{ |
---|
363 | std::string dtype2("XML"); |
---|
364 | std::string dtype3("xml"); |
---|
365 | if(descr.find(dtype2)!= std::string::npos || descr.find(dtype3)!= std::string::npos) |
---|
366 | printXml(); |
---|
367 | else{ |
---|
368 | std::string dtype4("vector"); |
---|
369 | std::string dtype5("Vector"); |
---|
370 | if(descr.find(dtype4)!= std::string::npos || descr.find(dtype5)!= std::string::npos) |
---|
371 | printVector(); |
---|
372 | else{ |
---|
373 | std::string dtype6("kmz"); |
---|
374 | std::string dtype7("Kmz"); |
---|
375 | if(descr.find(dtype6)!= std::string::npos || descr.find(dtype6)!= std::string::npos) |
---|
376 | printKmz(); |
---|
377 | else |
---|
378 | printUnknown(); |
---|
379 | } |
---|
380 | } |
---|
381 | } |
---|
382 | } |
---|
383 | std::cout << " </ComplexData>" << std::endl; |
---|
384 | } |
---|
385 | } |
---|
386 | } |
---|
387 | if(hasOutput<0) |
---|
388 | printDefaultOutput(); |
---|
389 | std::cout << " </DataOutputs>" << std::endl; |
---|
390 | std::cout.rdbuf(coutbuf); |
---|
391 | } |
---|
392 | } |
---|
393 | |
---|
394 | return EXIT_SUCCESS; |
---|
395 | } |
---|
396 | |
---|