itom 1.0.14
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, size_t maxNumMand, size_t maxNumOpt, size_t 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         QVector<ito::Param> mandParams;
00050         QVector<ito::Param> outParams;
00051         size_t maxNumMand;
00052         size_t maxNumOpt;
00053         size_t maxNumOut;
00054     };
00055 
00056     enum tCompareResult { tCmpEqual, tCmpCompatible, tCmpFailed };
00057 
00058     QMap<int,AlgoInterface> m_interfaces;
00059 
00060     ito::RetVal init(void);
00061     bool isValid(const ito::AddInAlgo::tAlgoInterface iface, const ito::AddInAlgo::t_filterParam filterParamFunc, ito::RetVal &ret) const;
00062     bool getTags(const ito::AddInAlgo::tAlgoInterface iface, const QString &metaInformation, QStringList &tags) const;
00063     tCompareResult compareParam(const ito::Param &paramTemplate, const ito::Param &param, ito::RetVal &ret) const;
00064     tCompareResult compareMetaParam(const ito::ParamMeta *metaTemplate, const ito::ParamMeta *meta, const char* nameTemplate, const char *name, ito::RetVal &ret) const;
00065 
00066 private:
00067 };
00068 
00069 } //end namespace ito
00070 
00071 #endif
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends