itom 1.0.14
D:/git-itom/sources/itom/Qitom/helper/paramHelper.h
00001 /* ********************************************************************
00002     itom software
00003     URL: http://www.uni-stuttgart.de/ito
00004     Copyright (C) 2013, Institut für Technische Optik (ITO),
00005     Universität Stuttgart, Germany
00006 
00007     This file is part of itom.
00008   
00009     itom is free software; you can redistribute it and/or modify it
00010     under the terms of the GNU Library General Public Licence as published by
00011     the Free Software Foundation; either version 2 of the Licence, or (at
00012     your option) any later version.
00013 
00014     itom is distributed in the hope that it will be useful, but
00015     WITHOUT ANY WARRANTY; without even the implied warranty of
00016     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library
00017     General Public Licence for more details.
00018 
00019     You should have received a copy of the GNU Library General Public License
00020     along with itom. If not, see <http://www.gnu.org/licenses/>.
00021 *********************************************************************** */
00022 
00023 #ifndef PARAMHELPER_H
00024 #define PARAMHELPER_H
00025 
00026 #include "../../common/sharedStructures.h"
00027 
00028 #include <qmap.h>
00029 #include <qstring.h>
00030 
00031 namespace ito 
00032 {
00033     class AddInBase; //forward declaration
00034 
00035     class ParamHelper
00036     {
00037     public: 
00038 
00039         static tCompareResult compareParam(const ito::Param &paramTemplate, const ito::Param &param, ito::RetVal &ret);
00040         static tCompareResult compareMetaParam(const ito::ParamMeta *metaTemplate, const ito::ParamMeta *meta, const char* nameTemplate, const char *name, ito::RetVal &ret);
00041 
00042         static ito::RetVal validateStringMeta(const ito::StringMeta *meta, const char* value, bool mandatory = false);
00043         static ito::RetVal validateDoubleMeta(const ito::DoubleMeta *meta, double value);
00044         static ito::RetVal validateIntMeta(const ito::IntMeta *meta, int value);
00045         static ito::RetVal validateCharMeta(const ito::CharMeta *meta, char value);
00046         static ito::RetVal validateHWMeta(const ito::HWMeta *meta, ito::AddInBase *value, bool mandatory = false);
00047         static ito::RetVal validateParam(const ito::Param &templateParam, const ito::ParamBase &param, bool strict = true, bool mandatory = false);
00048         static ito::ParamBase convertParam(const ito::ParamBase &source, int destType, bool *ok = NULL);
00049         static ito::RetVal getParamFromMapByKey( QMap<QString,ito::Param> &paramMap, const QString &key, QMap<QString,ito::Param>::iterator &found, bool errorIfReadOnly);
00050         static ito::RetVal parseParamName(const QString &name, QString &paramName, bool &hasIndex, int &index, QString &additionalTag);
00051 
00052         static ito::RetVal getItemFromArray(const ito::Param &arrayParam, const int index, ito::Param &itemParam);
00053 
00054     private:
00055         ParamHelper(){};
00056         ~ParamHelper(){};
00057     };
00058 } //end namespace ito
00059 
00060 #endif
00061 
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends