Files
rdkit/Code/RDGeneral/Dict.cpp
Brian Kelley 2debdfde0d Adds RDAny (smaller generic holder) Updates all used dictionaries (#896)
* Adds RDAny (smaller generic holder) Updates all used dictionaries

This is an API compliant version of the current rdany system,
but uses a lot less memory in practice.

* Removes code duplication

* Converts CHECK_INVARIANT to TEST_ASSERT

* Fixes DoubleTag issue

* Adds Bool to DoubleMagic implementation

* Removes reference to property pickler
2016-05-29 17:04:21 +01:00

57 lines
1.6 KiB
C++

// $Id$
//
// Copyright (C) 2003-2008 Greg Landrum and Rational Discovery LLC
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include "Dict.h"
namespace RDKit {
void Dict::getVal(const std::string &what, std::string &res) const {
//
// We're going to try and be somewhat crafty about this getVal stuff to make
// these
// containers a little bit more generic. The normal behavior here is that
// the
// value being queried must be directly castable to type T. We'll robustify
// a
// little bit by trying that and, if the cast fails, attempting a couple of
// other casts, which will then be lexically cast to type T.
//
for(size_t i=0; i< _data.size(); ++i) {
if (_data[i].key == what) {
rdvalue_tostring(_data[i].val, res);
return;
}
}
throw KeyErrorException(what);
}
bool Dict::getValIfPresent(const std::string &what, std::string &res) const {
//
// We're going to try and be somewhat crafty about this getVal stuff to make
// these
// containers a little bit more generic. The normal behavior here is that
// the
// value being queried must be directly castable to type T. We'll robustify
// a
// little bit by trying that and, if the cast fails, attempting a couple of
// other casts, which will then be lexically cast to type T.
//
for(size_t i=0; i< _data.size(); ++i) {
if (_data[i].key == what) {
rdvalue_tostring(_data[i].val, res);
return true;
}
}
return false;
}
}