1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
#include "chrome/browser/diagnostics/diagnostics_writer.h"
#include <stdint.h>
#include <string>
#include <string_view>
#include "base/command_line.h"
#include "base/logging.h"
#include "base/notreached.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/common/chrome_switches.h"
#include "ui/base/ui_base_paths.h"
#if BUILDFLAG(IS_POSIX)
#include <stdio.h>
#include <unistd.h>
#elif BUILDFLAG(IS_WIN)
#include <windows.h>
#endif
namespace diagnostics {
// This is a minimalistic interface to wrap the platform console.
class SimpleConsole {
public:
enum Color {
DEFAULT,
RED,
GREEN,
};
virtual ~SimpleConsole() = default;
// Init must be called before using any other method. If it returns
// false there will be no console output.
virtual bool Init() = 0;
// Writes a string to the console with the current color.
virtual bool Write(const std::u16string& text) = 0;
// Called when the program is about to exit.
virtual void OnQuit() = 0;
// Sets the foreground text color.
virtual bool SetColor(Color color) = 0;
// Create an appropriate SimpleConsole instance. May return NULL if there is
// no implementation for the current platform.
static SimpleConsole* Create();
};
#if BUILDFLAG(IS_WIN)
namespace {
// Wrapper for the windows console operating in high-level IO mode.
class WinConsole : public SimpleConsole {
public:
// The ctor allocates a console. This avoids having to ask the user to start
// chrome from a command prompt.
WinConsole()
: std_out_(INVALID_HANDLE_VALUE),
std_in_(INVALID_HANDLE_VALUE) {
::AllocConsole();
}
WinConsole(const WinConsole&) = delete;
WinConsole& operator=(const WinConsole&) = delete;
~WinConsole() override { ::FreeConsole(); }
bool Init() override { return SetIOHandles(); }
bool Write(const std::u16string& txt) override {
DWORD sz = txt.size();
return (TRUE ==
::WriteConsoleW(std_out_, base::as_wcstr(txt), sz, &sz, NULL));
}
// Reads a string from the console. Internally it is limited to 256
// characters.
void OnQuit() override {
// Block here so the user can see the results.
SetColor(SimpleConsole::DEFAULT);
Write(u"Press [enter] to continue\n");
wchar_t buf[256];
DWORD read = std::size(buf);
::ReadConsoleW(std_in_, buf, read, &read, NULL);
}
// Sets the foreground and background color.
bool SetColor(Color color) override {
uint16_t color_combo = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE |
FOREGROUND_INTENSITY;
switch (color) {
case RED:
color_combo = FOREGROUND_RED | FOREGROUND_INTENSITY;
break;
case GREEN:
color_combo = FOREGROUND_GREEN | FOREGROUND_INTENSITY;
break;
case DEFAULT:
break;
default:
NOTREACHED();
}
return (TRUE == ::SetConsoleTextAttribute(std_out_, color_combo));
}
private:
bool SetIOHandles() {
std_out_ = ::GetStdHandle(STD_OUTPUT_HANDLE);
std_in_ = ::GetStdHandle(STD_INPUT_HANDLE);
return ((std_out_ != INVALID_HANDLE_VALUE) &&
(std_in_ != INVALID_HANDLE_VALUE));
}
// The input and output handles to the screen. They seem to be
// implemented as pipes but they have non-documented protocol.
HANDLE std_out_;
HANDLE std_in_;
};
} // namespace
SimpleConsole* SimpleConsole::Create() { return new WinConsole(); }
#elif BUILDFLAG(IS_POSIX)
namespace {
class PosixConsole : public SimpleConsole {
public:
PosixConsole() : use_color_(false) {}
PosixConsole(const PosixConsole&) = delete;
PosixConsole& operator=(const PosixConsole&) = delete;
bool Init() override {
// Technically, we should also check the terminal capabilities before using
// color, but in practice this is unlikely to be an issue.
use_color_ = isatty(STDOUT_FILENO);
return true;
}
bool Write(const std::u16string& text) override {
// We're assuming that the terminal is using UTF-8 encoding.
printf("%s", base::UTF16ToUTF8(text).c_str());
return true;
}
void OnQuit() override {
// The "press enter to continue" prompt isn't very unixy, so only do that on
// Windows.
}
bool SetColor(Color color) override {
if (!use_color_)
return false;
const char* code = "\033[m";
switch (color) {
case RED:
code = "\033[1;31m";
break;
case GREEN:
code = "\033[1;32m";
break;
case DEFAULT:
break;
default:
NOTREACHED();
}
printf("%s", code);
return true;
}
private:
bool use_color_;
};
} // namespace
SimpleConsole* SimpleConsole::Create() { return new PosixConsole(); }
#else // !BUILDFLAG(IS_WIN) && !BUILDFLAG(IS_POSIX)
SimpleConsole* SimpleConsole::Create() { return NULL; }
#endif
///////////////////////////////////////////////////////////
// DiagnosticsWriter
DiagnosticsWriter::DiagnosticsWriter(FormatType format)
: failures_(0), format_(format) {
// Only create consoles for non-log output.
if (format_ != LOG) {
console_.reset(SimpleConsole::Create());
console_->Init();
}
}
DiagnosticsWriter::~DiagnosticsWriter() {
if (console_.get())
console_->OnQuit();
}
bool DiagnosticsWriter::WriteInfoLine(const std::string& info_text) {
if (format_ == LOG) {
LOG(WARNING) << info_text;
return true;
} else {
if (console_.get()) {
console_->SetColor(SimpleConsole::DEFAULT);
console_->Write(base::UTF8ToUTF16(info_text + "\n"));
}
}
return true;
}
void DiagnosticsWriter::OnTestFinished(int index, DiagnosticsModel* model) {
const DiagnosticsModel::TestInfo& test_info = model->GetTest(index);
bool success = (DiagnosticsModel::TEST_OK == test_info.GetResult());
WriteResult(success,
test_info.GetName(),
test_info.GetTitle(),
test_info.GetOutcomeCode(),
test_info.GetAdditionalInfo());
}
void DiagnosticsWriter::OnAllTestsDone(DiagnosticsModel* model) {
WriteInfoLine(
base::StringPrintf("Finished %d tests.", model->GetTestRunCount()));
}
void DiagnosticsWriter::OnRecoveryFinished(int index, DiagnosticsModel* model) {
const DiagnosticsModel::TestInfo& test_info = model->GetTest(index);
WriteInfoLine(
base::StringPrintf("Finished Recovery for: %s", test_info.GetTitle()));
}
void DiagnosticsWriter::OnAllRecoveryDone(DiagnosticsModel* model) {
WriteInfoLine("Finished All Recovery operations.");
}
bool DiagnosticsWriter::WriteResult(bool success,
std::string_view id,
std::string_view name,
int outcome_code,
const std::string& extra) {
std::string result;
SimpleConsole::Color color;
if (success) {
result = "[PASS] ";
color = SimpleConsole::GREEN;
} else {
color = SimpleConsole::RED;
result = "[FAIL] ";
failures_++;
}
if (format_ != LOG) {
if (console_.get()) {
console_->SetColor(color);
console_->Write(base::ASCIIToUTF16(result));
}
if (format_ == MACHINE) {
return WriteInfoLine(
base::StringPrintf("%03d %s (%s)", outcome_code, id, extra.c_str()));
} else {
return WriteInfoLine(base::StringPrintf("%s\n %s\n", name, extra));
}
} else {
if (!success) {
// For log output, we only care about the tests that failed.
return WriteInfoLine(base::StringPrintf("%s%03d %s (%s)", result.c_str(),
outcome_code, id, extra.c_str()));
}
}
return true;
}
} // namespace diagnostics
|