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
|
/*=========================================================================
*
* Copyright NumFOCUS
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* 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 "itkMetaDataObject.h"
#include <iostream>
int
itkMetaDataDictionaryTest(int, char *[])
{
// This is a demo program to show how to put data into a dictionary.
itk::MetaDataDictionary MyDictionary;
//------------------------Testing of native types
//-------Floats
itk::EncapsulateMetaData<float>(MyDictionary, "ASimpleFloatInitalized", static_cast<float>(1.234560F));
{
float tempfloat = 0.0;
const bool IsValidReturn = itk::ExposeMetaData<float>(MyDictionary, "ASimpleFloatInitalized", tempfloat);
if (IsValidReturn)
{
std::cout << tempfloat << std::endl;
}
else
{
std::cout << "Invalid key, or invalid type specified." << std::endl;
}
}
itk::EncapsulateMetaData<float>(MyDictionary, "ASimpleFloatChanged", static_cast<float>(-1000.234560F));
itk::EncapsulateMetaData<double>(MyDictionary, "ASimpleFloatChanged", static_cast<float>(-0.000000001F));
//-------Char pointers -- These can be tricky, so be careful!
itk::EncapsulateMetaData<const char *>(MyDictionary, "charconst*", "Value String");
const char * value = "Value String";
itk::EncapsulateMetaData<const char *>(MyDictionary, "charconst*2", value);
itk::EncapsulateMetaData<std::string>(MyDictionary, "srtringfromcharconst*", std::string("Value Never Seen"));
// Other gotchas with the Dictionary
auto * StrandedMemory = new char[2345];
strcpy(StrandedMemory,
"XXXXXXXXXXXXThis is stranded memory that will not be released when the Dictionary is cleaned up");
// NOTE: Only the pointer is copied, not the data within the pointer!
itk::EncapsulateMetaData<char *>(MyDictionary, "MemoryChangedOutsideOfDictionary", StrandedMemory);
{
char * temp = nullptr;
itk::ExposeMetaData<char *>(MyDictionary, "MemoryChangedOutsideOfDictionary", temp);
std::cout << "Memory Before Change: " << temp << std::endl;
}
strcpy(StrandedMemory, "------------This this was changed outside the class, and may cause all types of errors.");
{
char * temp = nullptr;
itk::ExposeMetaData<char *>(MyDictionary, "MemoryChangedOutsideOfDictionary", temp);
std::cout << "Memory After Change: " << temp << std::endl;
}
// Print functionality Test
std::cout << "===========================================================" << std::endl;
std::cout << "Printing Dictionary" << std::endl;
MyDictionary.Print(std::cout);
std::cout << "Exercise the Iterator access" << std::endl;
try
{
auto itr = MyDictionary.Begin();
auto end = MyDictionary.End();
while (itr != end)
{
std::cout << "Key = " << itr->first << std::endl;
std::cout << "Value = ";
itr->second->Print(std::cout);
std::cout << std::endl;
++itr;
}
}
catch (const itk::ExceptionObject & excp)
{
std::cerr << "Exception Thrown." << std::endl;
std::cerr << excp << std::endl;
delete[] StrandedMemory;
return EXIT_FAILURE;
}
std::cout << "Exercise the const Iterator access" << std::endl;
try
{
const itk::MetaDataDictionary & MyConstDictionary = MyDictionary;
auto itr = MyConstDictionary.Begin();
auto end = MyConstDictionary.End();
while (itr != end)
{
std::cout << "Key = " << itr->first << std::endl;
std::cout << "Value = ";
itr->second->Print(std::cout);
std::cout << std::endl;
++itr;
}
}
catch (const itk::ExceptionObject & excp)
{
std::cerr << "Exception Thrown." << std::endl;
std::cerr << excp << std::endl;
return EXIT_FAILURE;
}
// Getter/Setter test
std::cout << "Exercise the Getter/Setter test" << std::endl;
try
{
auto itr = MyDictionary.Begin();
auto end = MyDictionary.End();
while (itr != end)
{
std::cout << "Key = " << itr->first << std::endl;
std::cout << "Value = ";
MyDictionary.Get(itr->first)->Print(std::cout);
MyDictionary.Set(itr->first, itr->second);
std::cout << std::endl;
++itr;
}
}
catch (const itk::ExceptionObject & excp)
{
std::cerr << "Exception Thrown." << std::endl;
std::cerr << excp << std::endl;
return EXIT_FAILURE;
}
try
{
MyDictionary.Get("InvalidKeyString")->Print(std::cout);
std::cerr << "Failed to throw expected exception" << std::endl;
return EXIT_FAILURE;
}
catch (const itk::ExceptionObject & excp)
{
std::cout << excp << std::endl;
std::cout << "caught EXPECTED exception for invalid key string to MetaDataDictionary" << std::endl;
}
if (MyDictionary.Erase("ASimpleFloatChanged") == false)
{
std::cerr << "Failed to erase ASimpleFloatChanged" << std::endl;
return EXIT_FAILURE;
}
if (MyDictionary.Erase("itk"))
{
std::cerr << "Failed erase itk" << std::endl;
return EXIT_FAILURE;
}
// NOTE: Must clean up memory allocated with char * StrandedMemory=new char[2345];
delete[] StrandedMemory;
return EXIT_SUCCESS;
}
|