| Server IP : 216.92.14.13 / Your IP : 216.73.217.126 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/mongo/db/ |
Upload File : |
// server_parameters_inline.h
/**
* Copyright (C) 2012 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "mongo/util/stringutils.h"
namespace mongo {
template<typename T>
inline Status ExportedServerParameter<T>::set( const BSONElement& newValueElement ) {
T newValue;
if ( !newValueElement.coerce( &newValue) )
return Status( ErrorCodes::BadValue, "can't set value" );
return set( newValue );
}
template<typename T>
inline Status ExportedServerParameter<T>::set( const T& newValue ) {
Status v = validate( newValue );
if ( !v.isOK() )
return v;
*_value = newValue;
return Status::OK();
}
template<>
inline Status ExportedServerParameter<int>::setFromString( const string& str ) {
return set( atoi(str.c_str() ) );
}
template<>
inline Status ExportedServerParameter<double>::setFromString( const string& str ) {
const char* start = str.c_str();
char* end;
double d = strtod( str.c_str(), &end );
if ( start == end )
return Status( ErrorCodes::BadValue, "not a double" );
return set( d );
}
template<>
inline Status ExportedServerParameter<string>::setFromString( const string& str ) {
return set( str );
}
template<>
inline Status ExportedServerParameter<bool>::setFromString( const string& str ) {
if ( str == "true" ||
str == "1" )
return set(true);
if ( str == "false" ||
str == "0" )
return set(false);
return Status( ErrorCodes::BadValue, "can't convert string to bool" );
}
template<>
inline Status ExportedServerParameter< vector<string> >::setFromString( const string& str ) {
vector<string> v;
splitStringDelim( str, &v, ',' );
return set( v );
}
}