00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include "Teuchos_StringToIntMap.hpp"
00030
00031 namespace Teuchos {
00032
00033 StringToIntMap::StringToIntMap( const std::string& defaultGroupName, int n, const char* strings[] )
00034 : defaultGroupName_(defaultGroupName)
00035 {
00036 typedef map_t::value_type val_t;
00037 for( int i = 0; i < n; ++i ) {
00038 const bool unique = map_.insert( val_t( strings[i], i ) ).second;
00039 TEST_FOR_EXCEPTION(
00040 !unique, AlreadyExists
00041 ,"Teuchos::StringToIntMap::StringToIntMap(...): "
00042 << "Error, the string \"" << strings[i] << "\" is a duplicate for "
00043 << defaultGroupName_ );
00044 }
00045 }
00046
00047 int StringToIntMap::get( const std::string& option, const std::string& groupName ) const
00048 {
00049 map_t::const_iterator itr = map_.find( option );
00050 TEST_FOR_EXCEPTION(
00051 itr == map_.end(), DoesNotExist
00052 ,"Teuchos::StringToIntMap:::get(\""<<option<<"\",...): "
00053 << "Error, the string \"" << option << "\" is not recongnised for "
00054 << ( groupName.length() ? groupName : defaultGroupName_ )
00055 << "; valid selections include " << this->validSelections() << "."
00056 );
00057 return (*itr).second;
00058 }
00059
00060
00061
00062 std::string StringToIntMap::validSelections() const
00063 {
00064 std::ostringstream oss;
00065 oss << "{";
00066 map_t::const_iterator itr = map_.begin();
00067 for( int i = 0; itr != map_.end(); ++itr, ++i ) {
00068 if(i > 0)
00069 oss << ",";
00070 oss << "\""<<itr->first<<"\":"<<itr->second;
00071 }
00072 oss << "}";
00073 return oss.str();
00074 }
00075
00076 }