186acf919a
- chiave ora non accetta carattere '=' - eliminate IsValidName e ValidateName e sostituite con funzioni specializzate per DXF e File.
97 lines
3.1 KiB
C++
97 lines
3.1 KiB
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2015-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : EGnStringKeyVal.h Data : 23.05.15 Versione : 1.6e3
|
|
// Contenuto : Funzioni per gestione coppie chiave-valore in stringhe.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 23.05.15 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EgnStringUtils.h"
|
|
|
|
//----------------------------------------------------------------------------
|
|
static const char EQUAL = '=' ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
inline bool
|
|
IsValidKey( const std::string& sString)
|
|
{
|
|
return ( ! sString.empty() &&
|
|
sString.find( '\n') == std::string::npos &&
|
|
sString.find( EQUAL) == std::string::npos &&
|
|
sString.find_first_not_of( " \t\r\n") != std::string::npos) ;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
inline bool
|
|
FindKey( const std::string& sString, const std::string& sKey)
|
|
{
|
|
if ( ! IsValidKey( sKey))
|
|
return false ;
|
|
return ( sString.compare( 0, sKey.length(), sKey) == 0 &&
|
|
sString.length() > sKey.length() &&
|
|
sString[sKey.length()] == EQUAL) ;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
inline bool
|
|
IsValidVal( const std::string& sString)
|
|
{
|
|
return ( sString.empty() ||
|
|
( sString.find( '\n') == std::string::npos &&
|
|
sString.find_first_not_of( " \t\r\n") != std::string::npos)) ;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
inline bool
|
|
ValidateVal( std::string& sString)
|
|
{
|
|
std::string::size_type i ;
|
|
while ( ( i = sString.find_first_of( "\t\r\n")) != std::string::npos)
|
|
sString[i] = '_' ;
|
|
return true ;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
inline bool
|
|
SetVal( const std::string& sKey, const std::string& sVal, std::string& sString)
|
|
{
|
|
if ( ! IsValidKey( sKey) || ! IsValidVal( sVal))
|
|
return false ;
|
|
sString = sKey + EQUAL + sVal ;
|
|
return true ;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
template <class T>
|
|
inline bool
|
|
SetVal( const std::string& sKey, T& Val, std::string& sString)
|
|
{
|
|
return SetVal( sKey, ToString( Val), sString) ;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
inline bool
|
|
GetVal( const std::string& sString, const std::string& sKey, std::string& sVal)
|
|
{
|
|
if ( ! FindKey( sString, sKey))
|
|
return false ;
|
|
sVal = sString.substr( sKey.length() + 1) ;
|
|
return true ;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
template <class T>
|
|
inline bool
|
|
GetVal( const std::string& sString, const std::string& sKey, T& Val)
|
|
{
|
|
std::string sVal ;
|
|
return ( GetVal( sString, sKey, sVal) && FromString( sVal, Val)) ;
|
|
}
|