xref: /aosp_15_r20/external/abseil-cpp/absl/log/structured.h (revision 9356374a3709195abf420251b3e825997ff56c0f)
1*9356374aSAndroid Build Coastguard Worker // Copyright 2022 The Abseil Authors.
2*9356374aSAndroid Build Coastguard Worker //
3*9356374aSAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License");
4*9356374aSAndroid Build Coastguard Worker // you may not use this file except in compliance with the License.
5*9356374aSAndroid Build Coastguard Worker // You may obtain a copy of the License at
6*9356374aSAndroid Build Coastguard Worker //
7*9356374aSAndroid Build Coastguard Worker //      https://www.apache.org/licenses/LICENSE-2.0
8*9356374aSAndroid Build Coastguard Worker //
9*9356374aSAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software
10*9356374aSAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS,
11*9356374aSAndroid Build Coastguard Worker // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*9356374aSAndroid Build Coastguard Worker // See the License for the specific language governing permissions and
13*9356374aSAndroid Build Coastguard Worker // limitations under the License.
14*9356374aSAndroid Build Coastguard Worker //
15*9356374aSAndroid Build Coastguard Worker // -----------------------------------------------------------------------------
16*9356374aSAndroid Build Coastguard Worker // File: log/structured.h
17*9356374aSAndroid Build Coastguard Worker // -----------------------------------------------------------------------------
18*9356374aSAndroid Build Coastguard Worker //
19*9356374aSAndroid Build Coastguard Worker // This header declares APIs supporting structured logging, allowing log
20*9356374aSAndroid Build Coastguard Worker // statements to be more easily parsed, especially by automated processes.
21*9356374aSAndroid Build Coastguard Worker //
22*9356374aSAndroid Build Coastguard Worker // When structured logging is in use, data streamed into a `LOG` statement are
23*9356374aSAndroid Build Coastguard Worker // encoded as `Value` fields in a `logging.proto.Event` protocol buffer message.
24*9356374aSAndroid Build Coastguard Worker // The individual data are exposed programmatically to `LogSink`s and to the
25*9356374aSAndroid Build Coastguard Worker // user via some log reading tools which are able to query the structured data
26*9356374aSAndroid Build Coastguard Worker // more usefully than would be possible if each message was a single opaque
27*9356374aSAndroid Build Coastguard Worker // string.  These helpers allow user code to add additional structure to the
28*9356374aSAndroid Build Coastguard Worker // data they stream.
29*9356374aSAndroid Build Coastguard Worker 
30*9356374aSAndroid Build Coastguard Worker #ifndef ABSL_LOG_STRUCTURED_H_
31*9356374aSAndroid Build Coastguard Worker #define ABSL_LOG_STRUCTURED_H_
32*9356374aSAndroid Build Coastguard Worker 
33*9356374aSAndroid Build Coastguard Worker #include <ostream>
34*9356374aSAndroid Build Coastguard Worker 
35*9356374aSAndroid Build Coastguard Worker #include "absl/base/config.h"
36*9356374aSAndroid Build Coastguard Worker #include "absl/log/internal/structured.h"
37*9356374aSAndroid Build Coastguard Worker #include "absl/strings/string_view.h"
38*9356374aSAndroid Build Coastguard Worker 
39*9356374aSAndroid Build Coastguard Worker namespace absl {
40*9356374aSAndroid Build Coastguard Worker ABSL_NAMESPACE_BEGIN
41*9356374aSAndroid Build Coastguard Worker 
42*9356374aSAndroid Build Coastguard Worker // LogAsLiteral()
43*9356374aSAndroid Build Coastguard Worker //
44*9356374aSAndroid Build Coastguard Worker // Annotates its argument as a string literal so that structured logging
45*9356374aSAndroid Build Coastguard Worker // captures it as a `literal` field instead of a `str` field (the default).
46*9356374aSAndroid Build Coastguard Worker // This does not affect the text representation, only the structure.
47*9356374aSAndroid Build Coastguard Worker //
48*9356374aSAndroid Build Coastguard Worker // Streaming `LogAsLiteral(s)` into a `std::ostream` behaves just like streaming
49*9356374aSAndroid Build Coastguard Worker // `s` directly.
50*9356374aSAndroid Build Coastguard Worker //
51*9356374aSAndroid Build Coastguard Worker // Using `LogAsLiteral()` is occasionally appropriate and useful when proxying
52*9356374aSAndroid Build Coastguard Worker // data logged from another system or another language.  For example:
53*9356374aSAndroid Build Coastguard Worker //
54*9356374aSAndroid Build Coastguard Worker //   void Logger::LogString(absl::string_view str, absl::LogSeverity severity,
55*9356374aSAndroid Build Coastguard Worker //                          const char *file, int line) {
56*9356374aSAndroid Build Coastguard Worker //     LOG(LEVEL(severity)).AtLocation(file, line) << str;
57*9356374aSAndroid Build Coastguard Worker //   }
58*9356374aSAndroid Build Coastguard Worker //   void Logger::LogStringLiteral(absl::string_view str,
59*9356374aSAndroid Build Coastguard Worker //                                 absl::LogSeverity severity, const char *file,
60*9356374aSAndroid Build Coastguard Worker //                                 int line) {
61*9356374aSAndroid Build Coastguard Worker //     LOG(LEVEL(severity)).AtLocation(file, line) << absl::LogAsLiteral(str);
62*9356374aSAndroid Build Coastguard Worker //   }
LogAsLiteral(absl::string_view s)63*9356374aSAndroid Build Coastguard Worker inline log_internal::AsLiteralImpl LogAsLiteral(absl::string_view s) {
64*9356374aSAndroid Build Coastguard Worker   return log_internal::AsLiteralImpl(s);
65*9356374aSAndroid Build Coastguard Worker }
66*9356374aSAndroid Build Coastguard Worker 
67*9356374aSAndroid Build Coastguard Worker ABSL_NAMESPACE_END
68*9356374aSAndroid Build Coastguard Worker }  // namespace absl
69*9356374aSAndroid Build Coastguard Worker 
70*9356374aSAndroid Build Coastguard Worker #endif  // ABSL_LOG_STRUCTURED_H_
71