ospi
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

PlanParams.h
text/x-chdr

Download raw (2.4 KB)

/***************************************************************************
 *   Copyright (C) 2012 by Pierre Marchand   *
 *   pierre@oep-h.com   *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 3 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   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 General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/


#ifndef OSPI_PLANPARAMS_H
#define OSPI_PLANPARAMS_H

#include <map>
#include <string>
#include <vector>
#include <boost/lexical_cast.hpp>

namespace ospi {
	
	class PlanParams
	{
		public:
			static const std::string ParamPlanFile;
			static const std::string ParamPlanData;
			static const std::string ParamPlanType;
		protected:
			std::map<std::string, std::string> pData;

		public:
			PlanParams();
			void Add(const std::string& paramstring);
			void Add(const std::string &key, const std::string& val);
			bool Has(const std::string& key) const;
			bool Has(const std::vector<std::string>& keys) const;
			std::vector<std::string> Keys() const;

			std::string GetString(const std::string& key) const;

			template <class T>
			T Get(const std::string& key, const T& d) const
			{
				T ret;
				try
				{
					ret = boost::lexical_cast<T>(pData.find(key)->second);
				}
				catch(...)
				{
					ret = d;
				}
				return ret;
			}


			void Remove(const std::string& key);
			void Clear(){pData.clear();}


	};
	
} // namespace ospi

#endif // OSPI_PLANPARAMS_H