2015-05-22 20:26:19 +03:00
|
|
|
// Copyright (c) 2015 The Khronos Group Inc.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and/or associated documentation files (the
|
|
|
|
// "Materials"), to deal in the Materials without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Materials, and to
|
|
|
|
// permit persons to whom the Materials are furnished to do so, subject to
|
|
|
|
// the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Materials.
|
|
|
|
//
|
|
|
|
// MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS
|
|
|
|
// KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS
|
|
|
|
// SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT
|
|
|
|
// https://www.khronos.org/registry/
|
|
|
|
//
|
|
|
|
// THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
// MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
|
|
|
|
|
2015-10-27 23:27:05 +03:00
|
|
|
#ifndef LIBSPIRV_PRINT_H_
|
|
|
|
#define LIBSPIRV_PRINT_H_
|
2015-05-22 20:26:19 +03:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
2015-11-16 18:48:43 +03:00
|
|
|
// Wrapper for out stream selection.
|
2015-05-22 20:26:19 +03:00
|
|
|
class out_stream {
|
|
|
|
public:
|
|
|
|
out_stream() : pStream(nullptr) {}
|
2015-11-02 17:41:20 +03:00
|
|
|
out_stream(std::stringstream& stream) : pStream(&stream) {}
|
2015-05-22 20:26:19 +03:00
|
|
|
|
2015-11-02 17:41:20 +03:00
|
|
|
std::ostream& get() {
|
2015-05-22 20:26:19 +03:00
|
|
|
if (pStream) {
|
|
|
|
return *pStream;
|
|
|
|
}
|
|
|
|
return std::cout;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-11-02 17:41:20 +03:00
|
|
|
std::stringstream* pStream;
|
2015-05-22 20:26:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace clr {
|
2015-11-16 18:48:43 +03:00
|
|
|
// Resets console color.
|
2015-05-22 20:26:19 +03:00
|
|
|
struct reset {
|
2015-11-02 17:41:20 +03:00
|
|
|
operator const char*();
|
2015-05-22 20:26:19 +03:00
|
|
|
};
|
2015-11-16 18:48:43 +03:00
|
|
|
// Sets console color to grey.
|
2015-05-22 20:26:19 +03:00
|
|
|
struct grey {
|
2015-11-02 17:41:20 +03:00
|
|
|
operator const char*();
|
2015-05-22 20:26:19 +03:00
|
|
|
};
|
2015-11-16 18:48:43 +03:00
|
|
|
// Sets console color to red.
|
2015-05-22 20:26:19 +03:00
|
|
|
struct red {
|
2015-11-02 17:41:20 +03:00
|
|
|
operator const char*();
|
2015-05-22 20:26:19 +03:00
|
|
|
};
|
2015-11-16 18:48:43 +03:00
|
|
|
// Sets console color to green.
|
2015-05-22 20:26:19 +03:00
|
|
|
struct green {
|
2015-11-02 17:41:20 +03:00
|
|
|
operator const char*();
|
2015-05-22 20:26:19 +03:00
|
|
|
};
|
2015-11-16 18:48:43 +03:00
|
|
|
// Sets console color to yellow.
|
2015-05-22 20:26:19 +03:00
|
|
|
struct yellow {
|
2015-11-02 17:41:20 +03:00
|
|
|
operator const char*();
|
2015-05-22 20:26:19 +03:00
|
|
|
};
|
2015-11-16 18:48:43 +03:00
|
|
|
// Sets console color to blue.
|
2015-05-22 20:26:19 +03:00
|
|
|
struct blue {
|
2015-11-02 17:41:20 +03:00
|
|
|
operator const char*();
|
2015-05-22 20:26:19 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-10-27 23:27:05 +03:00
|
|
|
#endif // LIBSPIRV_PRINT_H_
|