2013-01-13 22:51:44 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 11/1/2013.
|
|
|
|
* Copyright 2013 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_LINE_WRAP_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_LINE_WRAP_H_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
2013-03-27 20:08:16 +01:00
|
|
|
#include <vector>
|
2013-01-13 22:51:44 +01:00
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
2013-03-27 20:08:16 +01:00
|
|
|
class LineWrapper {
|
|
|
|
public:
|
|
|
|
LineWrapper();
|
|
|
|
|
|
|
|
LineWrapper& setIndent( std::size_t _indent );
|
|
|
|
LineWrapper& setRight( std::size_t _right );
|
|
|
|
|
|
|
|
LineWrapper& wrap( std::string const& _str );
|
2013-03-28 00:36:58 +01:00
|
|
|
|
2013-03-27 20:08:16 +01:00
|
|
|
std::string toString() const;
|
|
|
|
|
|
|
|
typedef std::vector<std::string>::const_iterator const_iterator;
|
|
|
|
|
|
|
|
const_iterator begin() const { return lines.begin(); }
|
|
|
|
const_iterator end() const { return lines.end(); }
|
2013-03-29 12:42:10 +01:00
|
|
|
std::string const& last() const { return lines.back(); }
|
2013-03-28 23:13:31 +01:00
|
|
|
std::size_t size() const { return lines.size(); }
|
|
|
|
std::string const& operator[]( std::size_t _index ) const { return lines[_index]; }
|
2013-03-28 00:36:58 +01:00
|
|
|
|
|
|
|
friend std::ostream& operator << ( std::ostream& _stream, LineWrapper const& _lineWrapper );
|
2013-03-27 20:08:16 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
void wrapInternal( std::string const& _str );
|
|
|
|
void addLine( const std::string& _line );
|
2013-03-28 23:13:31 +01:00
|
|
|
bool isWrapPoint( char c );
|
2013-03-27 20:08:16 +01:00
|
|
|
|
|
|
|
std::string indent;
|
|
|
|
std::size_t right;
|
|
|
|
std::size_t nextTab;
|
|
|
|
std::size_t tab;
|
2013-03-28 23:13:31 +01:00
|
|
|
std::string wrappableChars;
|
|
|
|
int recursionCount;
|
2013-03-27 20:08:16 +01:00
|
|
|
std::vector<std::string> lines;
|
|
|
|
};
|
2013-01-13 22:51:44 +01:00
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_LINE_WRAP_H_INCLUDED
|