/** ****************************************************************************** * * @file optionsparser.h * @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010. * Parts by Nokia Corporation (qt-info@nokia.com) Copyright (C) 2009. * @brief * @see The GNU Public License (GPL) Version 3 * @defgroup * @{ * *****************************************************************************/ /* * 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 OPTIONSPARSER_H #define OPTIONSPARSER_H #include "pluginmanager_p.h" #include #include namespace ExtensionSystem { namespace Internal { class OptionsParser { public: OptionsParser(const QStringList &args, const QMap &appOptions, QMap *foundAppOptions, QString *errorString, PluginManagerPrivate *pmPrivate); bool parse(); static const char *NO_LOAD_OPTION; static const char *TEST_OPTION; private: // return value indicates if the option was processed // it doesn't indicate success (--> m_hasError) bool checkForEndOfOptions(); bool checkForNoLoadOption(); bool checkForTestOption(); bool checkForAppOption(); bool checkForPluginOption(); bool checkForUnknownOption(); enum TokenType { OptionalToken, RequiredToken }; bool nextToken(TokenType type = OptionalToken); const QStringList &m_args; const QMap &m_appOptions; QMap *m_foundAppOptions; QString *m_errorString; PluginManagerPrivate *m_pmPrivate; // state QString m_currentArg; QStringList::const_iterator m_it; QStringList::const_iterator m_end; bool m_isDependencyRefreshNeeded; bool m_hasError; }; } // namespace Internal } // namespace ExtensionSystem #endif // OPTIONSPARSER_H