itom 1.3.0
D:/git-itom/sources/itom/Qitom/organizer/algoInterfaceValidator.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 ALGOINTERFACEVALIDATOR_H
00024 #define ALGOINTERFACEVALIDATOR_H
00025 
00026 #include <qobject.h>
00027 #include "../../common/addInInterface.h"
00028 #include "../../common/sharedStructures.h"
00029 
00030 #include <qvector.h>
00031 #include <qvariant.h>
00032 
00033 namespace ito {
00034 
00035 class AlgoInterfaceValidator : public QObject
00036 {
00037 public:
00038     AlgoInterfaceValidator(ito::RetVal &retValue);
00039     ~AlgoInterfaceValidator();
00040 
00041     ito::RetVal addInterface(ito::AddInAlgo::tAlgoInterface iface, QVector<ito::Param> &mandParams, QVector<ito::Param> &outParams, int maxNumMand, int maxNumOpt, int maxNumOut);
00042     bool isValidFilter(const ito::AddInAlgo::FilterDef &filter, ito::RetVal &ret, QStringList &tags) const;
00043     bool isValidWidget(const ito::AddInAlgo::AlgoWidgetDef &widget, ito::RetVal &ret, QStringList &tags) const;
00044     ito::RetVal getInterfaceParameters(ito::AddInAlgo::tAlgoInterface iface, QVector<ito::ParamBase> &mandParams, QVector<ito::ParamBase> &outParams) const;
00045 
00046 protected:
00047     struct AlgoInterface
00048     {
00049         AlgoInterface() : maxNumMand(0), maxNumOpt(0), maxNumOut(0) {}
00050         QVector<ito::Param> mandParams;
00051         QVector<ito::Param> outParams;
00052         int maxNumMand;
00053         int maxNumOpt;
00054         int maxNumOut;
00055     };
00056 
00057     enum tCompareResult { tCmpEqual, tCmpCompatible, tCmpFailed };
00058 
00059     QMap<int,AlgoInterface> m_interfaces;
00060 
00061     ito::RetVal init(void);
00062     bool isValid(const ito::AddInAlgo::tAlgoInterface iface, const ito::AddInAlgo::t_filterParam filterParamFunc, ito::RetVal &ret) const;
00063     bool getTags(const ito::AddInAlgo::tAlgoInterface iface, const QString &metaInformation, QStringList &tags) const;
00064     tCompareResult compareParam(const ito::Param &paramTemplate, const ito::Param &param, ito::RetVal &ret) const;
00065     tCompareResult compareMetaParam(const ito::ParamMeta *metaTemplate, const ito::ParamMeta *meta, const char* nameTemplate, const char *name, ito::RetVal &ret) const;
00066 
00067 private:
00068 };
00069 
00070 } //end namespace ito
00071 
00072 #endif
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends