/* Copyright 2007 David Nolden This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef __DUCHAIN_STRINGHELPERS_H__ #define __DUCHAIN_STRINGHELPERS_H__ #include "cppparser_export.h" #include class QString; class QStringList; /** searches a fitting closing brace from left to right: a ')' for '(', ']' for '[', ... */ int CPPPARSER_EXPORT findClose( const QString& str , int pos ); /** * Searches in the given string for a ',' or closing brace, * while skipping everything between opened braces. * @param str string to search * @param pos position where to start searching * @param validEnd when this is set differently, the function will stop when it finds a comma or the given character, and not at closing-braces. * @return On fail, str.length() is returned, else the position of the closing character. * */ int CPPPARSER_EXPORT findCommaOrEnd( const QString& str , int pos, QChar validEnd = ' ' ); /** * Skips in the string backwards over function-arguments, and stops at the right side of a "(" * @param skippedArguments Will contain all skipped arguments * @param argumentsStart Should be set to the position where the seeking should start, will be changed to the right side of a "(" when found. Should be at the right side of a '(', and may be max. str.length() * */ void CPPPARSER_EXPORT skipFunctionArguments(QString str, QStringList& skippedArguments, int& argumentsStart ); /** * Removes white space at the beginning and end, and replaces contiguous inner white-spaces with single white-spaces. Newlines are treated as whitespaces, the returned text will have no more newlines. * */ QString CPPPARSER_EXPORT reduceWhiteSpace(QString str); QString CPPPARSER_EXPORT stripFinalWhitespace(QString str); /** * Fills all c++-style comments within the given code with the given 'replacement' character * Newlines are preserved. * */ QString CPPPARSER_EXPORT clearComments( QString str, QChar replacement = ' ' ); /** * Fills all c++-strings within the given code with the given 'replacement' character * Comments should have been removed before. * */ QString CPPPARSER_EXPORT clearStrings( QString str, QChar replacement = ' ' ); /** * Extracts the interesting information out of a comment. * For example it removes all the stars at the beginning, and re-indents the text. * */ QString CPPPARSER_EXPORT formatComment( const QString& comment ); /** * Extracts the interesting information out of a comment. * For example it removes all the stars at the beginning, and re-indents the text. * */ QByteArray CPPPARSER_EXPORT formatComment( const QByteArray& comment ); /** * Can be used to iterate through different kinds of parameters, for example template-parameters(By giving it "<>:") * */ class CPPPARSER_EXPORT ParamIterator { public: /** * @param parens should be a string containing the two parens between which the parameters are searched. Example: "<>" or "()" Optionally it can also contain one third end-character. If that end-character is encountered in the prefix, the iteration will be stopped. * * Example: When "<>:" is given, ParamIterator will only parse the first identifier of a c++ scope * */ ParamIterator( QString parens, QString source, int start = 0); ~ParamIterator(); ParamIterator& operator ++(); /** * Returns current found parameter * */ QString operator *(); /** * Returns whether there is a current found parameter * */ operator bool() const; /** * Returns the text in front of the first opening-paren(if none found then the whole text) * */ QString prefix() const; uint position() const; private: class ParamIteratorPrivate* const d; }; #endif