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
|
/*
* Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <iostream>
#include <cstdlib>
#include "itksys/SystemTools.hxx"
#include "otbSystem.h"
int otbSystemTest(int itkNotUsed(argc), char* argv[])
{
const char* inputFileName = argv[1];
const char* inputDirName = argv[2];
std::ostringstream msg;
// Check instantiation test
otb::System* var(nullptr);
var = new otb::System();
delete var;
var = nullptr;
if (itksys::SystemTools::FileExists(inputFileName, true) == false)
{
itkGenericExceptionMacro(<< "itksys::SystemTools::FileExists() error : the filename " << inputFileName << " is not detected.");
}
if (itksys::SystemTools::FileIsDirectory(inputFileName) == true)
{
itkGenericExceptionMacro(<< "itksys::SystemTools::FileIsDirectory() error : the filename " << inputFileName << " is detected.");
}
if (itksys::SystemTools::FileExists(inputDirName, true) == true)
{
itkGenericExceptionMacro(<< "itksys::SystemTools::FileExists() error : the dirname " << inputDirName << " is detected!!");
}
if (itksys::SystemTools::FileIsDirectory(inputDirName) == false)
{
itkGenericExceptionMacro(<< "itksys::SystemTools::FileIsDirectory() error : the dirname " << inputDirName << " is not detected!!");
}
return EXIT_SUCCESS;
}
int otbParseHdfSubsetName(int itkNotUsed(argc), char* itkNotUsed(argv)[])
{
std::string input("");
std::string key("");
std::string name("");
input = "SUBDATASET_7_NAME=HDF4_EOS:EOS_GRID:\"file/MOD13Q1.A2010001.h17v05.005.2010028003734.hdf\":MODIS_Grid_16DAY";
if (!otb::System::ParseHdfSubsetName(input, key, name))
return EXIT_FAILURE;
if (key.compare("SUBDATASET_7_NAME") != 0)
return EXIT_FAILURE;
if (name.compare("HDF4_EOS:EOS_GRID:\"file/MOD13Q1.A2010001.h17v05.005.2010028003734.hdf\":MODIS_Grid_16DAY") != 0)
return EXIT_FAILURE;
input = "invalid";
if (otb::System::ParseHdfSubsetName(input, key, name))
return EXIT_FAILURE;
return EXIT_SUCCESS;
}
int otbParseHdfFileName(int itkNotUsed(argc), char* itkNotUsed(argv)[])
{
std::string id("");
std::string file("");
unsigned int num(0);
// Standard cases
id = "/some/file.hdf:6";
if (!otb::System::ParseHdfFileName(id, file, num))
return EXIT_FAILURE;
if (file.compare("/some/file.hdf") != 0)
return EXIT_FAILURE;
if (num != 6)
return EXIT_FAILURE;
id = "/some/file.hdf:0";
if (!otb::System::ParseHdfFileName(id, file, num))
return EXIT_FAILURE;
if (file.compare("/some/file.hdf") != 0)
return EXIT_FAILURE;
if (num != 0)
return EXIT_FAILURE;
// non specified
id = "/some/file.hdf";
if (otb::System::ParseHdfFileName(id, file, num))
return EXIT_FAILURE;
// playing with windows format
id = "C:\\some\\file.hdf";
if (otb::System::ParseHdfFileName(id, file, num))
return EXIT_FAILURE;
if (num != 0)
return EXIT_FAILURE;
id = "C:\\some\\file.hdf:6";
if (!otb::System::ParseHdfFileName(id, file, num))
return EXIT_FAILURE;
if (file.compare("C:\\some\\file.hdf") != 0)
return EXIT_FAILURE;
if (num != 6)
return EXIT_FAILURE;
return EXIT_SUCCESS;
}
|