diff options
Diffstat (limited to 'QA/Checker')
| -rw-r--r-- | QA/Checker/IO.cpp | 42 | ||||
| -rw-r--r-- | QA/Checker/IO.h | 15 | ||||
| -rw-r--r-- | QA/Checker/SConscript | 2 | 
3 files changed, 58 insertions, 1 deletions
diff --git a/QA/Checker/IO.cpp b/QA/Checker/IO.cpp new file mode 100644 index 0000000..0e402f7 --- /dev/null +++ b/QA/Checker/IO.cpp @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#include <QA/Checker/IO.h> + +#include <iostream> + +std::ostream& operator<<(std::ostream& os, const Swift::ByteArray& s) { +	std::ios::fmtflags oldFlags = os.flags();  +	os << std::hex; +	for (Swift::ByteArray::const_iterator i = s.begin(); i != s.end(); ++i) { +		os << "0x" << static_cast<unsigned int>(static_cast<unsigned char>(*i)); +		if (i + 1 < s.end()) { +			os << " "; +		} +	} +	os << std::endl; +	os.flags(oldFlags); +	return os; +} + +std::ostream& operator<<(std::ostream& os, const Swift::SafeByteArray& s) { +	std::ios::fmtflags oldFlags = os.flags(); +	os << std::hex; +	for (Swift::SafeByteArray::const_iterator i = s.begin(); i != s.end(); ++i) { +		os << "0x" << static_cast<unsigned int>(static_cast<unsigned char>(*i)); +		if (i + 1 < s.end()) { +			os << " "; +		} +	} +	os << std::endl; +	os.flags(oldFlags); +	return os; +} + +std::ostream& operator<<(std::ostream& os, const Swift::SafeString& s) { +	os << s.toString(); +	return os; +} diff --git a/QA/Checker/IO.h b/QA/Checker/IO.h new file mode 100644 index 0000000..79ec878 --- /dev/null +++ b/QA/Checker/IO.h @@ -0,0 +1,15 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <Swiften/Base/ByteArray.h> +#include <Swiften/Base/SafeByteArray.h> +#include <Swiften/Base/SafeString.h> + +std::ostream& operator<<(std::ostream& os, const Swift::ByteArray& s); +std::ostream& operator<<(std::ostream& os, const Swift::SafeByteArray& s); +std::ostream& operator<<(std::ostream& os, const Swift::SafeString& s); diff --git a/QA/Checker/SConscript b/QA/Checker/SConscript index 0456b93..96479db 100644 --- a/QA/Checker/SConscript +++ b/QA/Checker/SConscript @@ -11,4 +11,4 @@ if env["TEST"] :  	if env["SCONS_STAGE"] == "build" :  			checker_env = env.Clone()  			checker_env.MergeFlags(env["CPPUNIT_FLAGS"]) -			checker_env.Library("Checker", "checker.cpp") +			checker_env.Library("Checker", ["checker.cpp", "IO.cpp"])  | 
 Swift