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
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_AUTOFILL_CORE_COMMON_LOGGING_LOG_BUFFER_H_
#define COMPONENTS_AUTOFILL_CORE_COMMON_LOGGING_LOG_BUFFER_H_
#include <concepts>
#include <string>
#include <string_view>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/strings/string_number_conversions.h"
#include "base/types/strong_alias.h"
#include "base/values.h"
#include "components/autofill/core/common/logging/log_macros.h"
#include "url/gurl.h"
// The desired pattern to generate log messages is to pass a scope, a log
// message and then parameters.
//
// LogBuffer() << LoggingScope::kSomeScope << LogMessage::kSomeLogMessage
// << Br{} << more << Br{} << parameters;
//
// Extra parameters can be:
//
// - numeric:
// LogBuffer() << ... << 42;
//
// - inline strings:
// LogBuffer() << ... << "foobar";
//
// - tags:
// LogBuffer() << Tag{"div"} << ... << CTag{};
// Note that tags need to be closed (even for <br> - use Br{} as it takes care
// of generating an opening and closing tag). You may optionally specify what
// tag is closed: CTag{"div"}.
// Tags can get attributes via Attrib:
// LogBuffer() << Tag{"div"} << Attrib{"class", "foobar"}... << CTag{};
//
// - objects that can have an overloaded operator:
// LogBuffer& operator<<(LogBuffer& buf,
// const SampleObject& value) {...}
// LogBuffer() << ... << my_sample_object;
//
// - complex messages that require for loops:
// LogBuffer buffer;
// for (...) { buffer << something; }
// LogBuffer() << std::move(buffer);
//
// In practice the LogBuffer requires a boolean parameter indicating whether
// logging should happen. You should rely on
// components/autofill/core/common/logging/log_macros.h and follow one of the
// following patterns:
//
// (1) void MyFunction(LogManager* log_manager) {
// LOG_AF(log_mannager) << "foobar";
// }
// (2) void MyFunction(LogManager* log_manager) {
// LogBuffer buffer(
// /*active=*/ log_manager && log_manager->IsLoggingActive());
// LOG_AF(buffer) << "foobar";
// LOG_AF(log_manager) << std::move(buffer);
// }
namespace autofill {
// Tag of HTML Element (e.g. <div> would be represented by Tag{"div"}). Note
// that every element needs to be closed with a CTag{}.
struct Tag {
std::string name;
};
// The closing tag of an HTML Element.
struct CTag {
CTag() = default;
// |opt_name| is not used, and only exists for readability.
explicit CTag(std::string_view opt_name) {}
};
// Attribute of an HTML Tag (e.g. class="foo" would be represented by
// Attrib{"class", "foo"}.
struct Attrib {
std::string name;
std::string value;
};
// Sets a html data attribute specificifying that the parent tab contains PII.
// Used so that it can be potentially stripped.
struct SetParentTagContainsPII {};
// An <br> HTML tag, note that this does not need to be closed.
struct Br {};
// A table row tag. This is syntactic sugar for logging data into a table.
// See LogTableRowBuffer below.
struct Tr {};
class LogManager;
// A buffer into which you can stream values. See the top of this header file
// for samples.
class LogBuffer {
public:
using IsActive = base::StrongAlias<struct ActiveTag, bool>;
explicit LogBuffer(IsActive active = IsActive(true));
~LogBuffer();
LogBuffer(LogBuffer&& other) noexcept;
LogBuffer& operator=(LogBuffer&& other);
LogBuffer(const LogBuffer& other) = delete;
LogBuffer& operator=(const LogBuffer& other) = delete;
// Returns the contents of the buffer if any and empties it.
std::optional<base::Value::Dict> RetrieveResult();
// Returns whether an active WebUI is listening. If false, the buffer may
// not do any logging.
bool active() const { return active_; }
private:
friend LogBuffer& operator<<(LogBuffer& buf, Tag&& tag);
friend LogBuffer& operator<<(LogBuffer& buf, CTag&& tag);
friend LogBuffer& operator<<(LogBuffer& buf, Attrib&& attrib);
friend LogBuffer& operator<<(LogBuffer& buf, std::string_view text);
friend LogBuffer& operator<<(LogBuffer& buf, LogBuffer&& buffer);
// The stack of values being constructed. Each item is a dictionary with the
// following attributes:
// - type: 'element' | 'fragment' | 'text'
// - value: name of tag | text content
// - children (opt): list of child nodes
// - attributes (opt): dictionary of name/value pairs
// The |buffer_| serves as a stack where the last element is being
// constructed. Once it is read (i.e. closed via a CTag), it is popped from
// the stack and attached as a child of the previously second last element.
// Only the first element of buffer_ is a 'fragment' and it is never closed.
std::vector<base::Value::Dict> buffer_;
bool active_ = true;
};
// Enable streaming numbers of all types.
template <typename T>
requires(std::integral<T> || std::floating_point<T>)
LogBuffer& operator<<(LogBuffer& buf, T number) {
return buf << base::NumberToString(number);
}
LogBuffer& operator<<(LogBuffer& buf, Tag&& tag);
LogBuffer& operator<<(LogBuffer& buf, CTag&& tag);
LogBuffer& operator<<(LogBuffer& buf, Attrib&& attrib);
LogBuffer& operator<<(LogBuffer& buf, Br&& tag);
LogBuffer& operator<<(LogBuffer& buf, std::string_view text);
LogBuffer& operator<<(LogBuffer& buf, std::u16string_view text);
// Sometimes you may want to fill a buffer that you then stream as a whole
// to LOG_AF_INTERNALS, which commits the data to chrome://autofill-internals:
//
// LogBuffer buffer;
// for (FormStructure* form : forms)
// buffer << *form;
// LogBuffer() << LoggingScope::kParsing << std::move(buffer);
//
// It would not be possible to report all |forms| into a single log entry
// without this.
LogBuffer& operator<<(LogBuffer& buf, LogBuffer&& buffer);
// Streams only the security origin of the URL. This is done for privacy
// reasons.
LogBuffer& operator<<(LogBuffer& buf, const GURL& url);
template <typename T>
LogBuffer& operator<<(LogBuffer& buf, const std::vector<T>& values) {
buf << "[";
for (size_t i = 0; i < values.size(); ++i) {
if (i)
buf << ", ";
buf << values.at(i);
}
buf << "]";
return buf;
}
// This is syntactic sugar for creating table rows in a LogBuffer. Each
// value streamed into this LogTableRowBuffer is wrapped by a <td> element.
// The entire row is wrapped by a <tr>.
//
// Here is an example:
// LogBuffer buf;
// buf << Tr{} << Attrib{"style", "color: red"} << "Foo" << "Bar";
// This creates:
// <tr style="color: red"><td>Foo</td><td>Bar</td></tr>.
class LogTableRowBuffer {
public:
explicit LogTableRowBuffer(LogBuffer* parent);
LogTableRowBuffer(LogTableRowBuffer&& buffer) noexcept;
~LogTableRowBuffer();
private:
template <typename T>
friend LogTableRowBuffer&& operator<<(LogTableRowBuffer&& buf, T&& value);
friend LogTableRowBuffer&& operator<<(LogTableRowBuffer&& buf,
Attrib&& attrib);
friend LogTableRowBuffer&& operator<<(
LogTableRowBuffer&& buf,
SetParentTagContainsPII&& parent_tag_contains_pii);
raw_ptr<LogBuffer> parent_ = nullptr;
};
LogTableRowBuffer operator<<(LogBuffer& buf, Tr&& tr);
template <typename T>
LogTableRowBuffer&& operator<<(LogTableRowBuffer&& buf, T&& value) {
*buf.parent_ << Tag{"td"} << std::forward<T>(value) << CTag{};
return std::move(buf);
}
LogTableRowBuffer&& operator<<(LogTableRowBuffer&& buf, Attrib&& attrib);
// Highlights the first |needle| in |haystack| by wrapping it in <b> tags.
LogBuffer HighlightValue(std::string_view haystack, std::string_view needle);
LogBuffer HighlightValue(std::u16string_view haystack,
std::u16string_view needle);
namespace internal {
// Traits for LOG_AF() macro for `LogBuffer*`.
template <std::convertible_to<const LogBuffer*> T>
struct LoggerTraits<T> {
static bool active(const LogBuffer* log_buffer) {
return log_buffer && log_buffer->active();
}
static LogBuffer& get_stream(LogBuffer* log_buffer) { return *log_buffer; }
};
// Traits for LOG_AF() macro for `LogBuffer&`.
template <std::convertible_to<const LogBuffer&> T>
struct LoggerTraits<T> {
static bool active(const LogBuffer& log_buffer) {
return log_buffer.active();
}
static LogBuffer& get_stream(LogBuffer& log_buffer) { return log_buffer; }
};
} // namespace internal
} // namespace autofill
#endif // COMPONENTS_AUTOFILL_CORE_COMMON_LOGGING_LOG_BUFFER_H_
|