2013-02-02 20:58:04 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil Nash on 1/2/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_MESSAGE_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_MESSAGE_H_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_result_type.h"
|
|
|
|
#include "catch_common.h"
|
2017-11-07 19:01:10 +01:00
|
|
|
#include "catch_stream.h"
|
2018-06-27 22:34:35 +02:00
|
|
|
#include "catch_interfaces_capture.h"
|
|
|
|
#include "catch_tostring.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2013-02-02 20:58:04 +01:00
|
|
|
|
|
|
|
namespace Catch {
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-02-02 20:58:04 +01:00
|
|
|
struct MessageInfo {
|
2018-07-23 13:42:44 +02:00
|
|
|
MessageInfo( StringRef const& _macroName,
|
2013-02-02 20:58:04 +01:00
|
|
|
SourceLineInfo const& _lineInfo,
|
|
|
|
ResultWas::OfType _type );
|
|
|
|
|
2018-07-23 13:42:44 +02:00
|
|
|
StringRef macroName;
|
2017-09-07 16:51:33 +02:00
|
|
|
std::string message;
|
2013-02-02 20:58:04 +01:00
|
|
|
SourceLineInfo lineInfo;
|
|
|
|
ResultWas::OfType type;
|
|
|
|
unsigned int sequence;
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-07-06 22:28:42 +02:00
|
|
|
bool operator == ( MessageInfo const& other ) const;
|
|
|
|
bool operator < ( MessageInfo const& other ) const;
|
2013-02-02 20:58:04 +01:00
|
|
|
private:
|
|
|
|
static unsigned int globalCount;
|
|
|
|
};
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-08-08 21:17:09 +02:00
|
|
|
struct MessageStream {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
MessageStream& operator << ( T const& value ) {
|
|
|
|
m_stream << value;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2017-11-07 19:01:10 +01:00
|
|
|
ReusableStringStream m_stream;
|
2017-08-08 21:17:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MessageBuilder : MessageStream {
|
2018-07-23 13:42:44 +02:00
|
|
|
MessageBuilder( StringRef const& macroName,
|
2013-06-28 18:09:57 +02:00
|
|
|
SourceLineInfo const& lineInfo,
|
2017-07-06 22:28:42 +02:00
|
|
|
ResultWas::OfType type );
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-02-02 20:58:04 +01:00
|
|
|
template<typename T>
|
2013-06-28 18:09:57 +02:00
|
|
|
MessageBuilder& operator << ( T const& value ) {
|
|
|
|
m_stream << value;
|
2013-02-02 20:58:04 +01:00
|
|
|
return *this;
|
|
|
|
}
|
2013-06-28 18:09:57 +02:00
|
|
|
|
|
|
|
MessageInfo m_info;
|
2013-02-02 20:58:04 +01:00
|
|
|
};
|
2013-06-28 18:09:57 +02:00
|
|
|
|
|
|
|
class ScopedMessage {
|
2013-02-02 20:58:04 +01:00
|
|
|
public:
|
2017-12-07 01:02:19 +01:00
|
|
|
explicit ScopedMessage( MessageBuilder const& builder );
|
2019-02-01 16:11:30 +01:00
|
|
|
ScopedMessage( ScopedMessage& duplicate ) = delete;
|
|
|
|
ScopedMessage( ScopedMessage&& old );
|
2013-06-28 18:09:57 +02:00
|
|
|
~ScopedMessage();
|
|
|
|
|
|
|
|
MessageInfo m_info;
|
2019-02-01 16:11:30 +01:00
|
|
|
bool m_moved;
|
2013-02-02 20:58:04 +01:00
|
|
|
};
|
|
|
|
|
2018-06-27 22:34:35 +02:00
|
|
|
class Capturer {
|
|
|
|
std::vector<MessageInfo> m_messages;
|
|
|
|
IResultCapture& m_resultCapture = getResultCapture();
|
|
|
|
size_t m_captured = 0;
|
|
|
|
public:
|
|
|
|
Capturer( StringRef macroName, SourceLineInfo const& lineInfo, ResultWas::OfType resultType, StringRef names );
|
|
|
|
~Capturer();
|
|
|
|
|
2018-11-19 23:06:06 +01:00
|
|
|
void captureValue( size_t index, std::string const& value );
|
2018-06-27 22:34:35 +02:00
|
|
|
|
|
|
|
template<typename T>
|
2018-11-19 23:06:06 +01:00
|
|
|
void captureValues( size_t index, T const& value ) {
|
2018-06-27 22:34:35 +02:00
|
|
|
captureValue( index, Catch::Detail::stringify( value ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T, typename... Ts>
|
2018-11-19 23:06:06 +01:00
|
|
|
void captureValues( size_t index, T const& value, Ts const&... values ) {
|
|
|
|
captureValue( index, Catch::Detail::stringify(value) );
|
2018-06-27 22:34:35 +02:00
|
|
|
captureValues( index+1, values... );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-02-02 20:58:04 +01:00
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_MESSAGE_H_INCLUDED
|