c592e45400
R=machenbach@chromium.org,jgruber@chromium.org,mythria@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.v8:v8_win_dbg,v8_mac_dbg;master.tryserver.chromium.android:android_arm64_dbg_recipe Review-Url: https://codereview.chromium.org/2410353005 Cr-Commit-Position: refs/heads/master@{#40300}
101 lines
2.4 KiB
C++
101 lines
2.4 KiB
C++
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef V8_OSTREAMS_H_
|
|
#define V8_OSTREAMS_H_
|
|
|
|
#include <cstddef>
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <ostream> // NOLINT
|
|
#include <streambuf>
|
|
|
|
#include "include/v8config.h"
|
|
#include "src/base/macros.h"
|
|
#include "src/globals.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
|
|
class OFStreamBase : public std::streambuf {
|
|
public:
|
|
explicit OFStreamBase(FILE* f);
|
|
virtual ~OFStreamBase();
|
|
|
|
protected:
|
|
FILE* const f_;
|
|
|
|
virtual int sync();
|
|
virtual int_type overflow(int_type c);
|
|
virtual std::streamsize xsputn(const char* s, std::streamsize n);
|
|
};
|
|
|
|
|
|
// An output stream writing to a file.
|
|
class V8_EXPORT_PRIVATE OFStream : public std::ostream {
|
|
public:
|
|
explicit OFStream(FILE* f);
|
|
virtual ~OFStream();
|
|
|
|
private:
|
|
OFStreamBase buf_;
|
|
};
|
|
|
|
|
|
// Wrappers to disambiguate uint16_t and uc16.
|
|
struct AsUC16 {
|
|
explicit AsUC16(uint16_t v) : value(v) {}
|
|
uint16_t value;
|
|
};
|
|
|
|
|
|
struct AsUC32 {
|
|
explicit AsUC32(int32_t v) : value(v) {}
|
|
int32_t value;
|
|
};
|
|
|
|
|
|
struct AsReversiblyEscapedUC16 {
|
|
explicit AsReversiblyEscapedUC16(uint16_t v) : value(v) {}
|
|
uint16_t value;
|
|
};
|
|
|
|
struct AsEscapedUC16ForJSON {
|
|
explicit AsEscapedUC16ForJSON(uint16_t v) : value(v) {}
|
|
uint16_t value;
|
|
};
|
|
|
|
struct AsHex {
|
|
explicit AsHex(uint64_t v, uint8_t min_width = 0)
|
|
: value(v), min_width(min_width) {}
|
|
uint64_t value;
|
|
uint8_t min_width;
|
|
};
|
|
|
|
// Writes the given character to the output escaping everything outside of
|
|
// printable/space ASCII range. Additionally escapes '\' making escaping
|
|
// reversible.
|
|
std::ostream& operator<<(std::ostream& os, const AsReversiblyEscapedUC16& c);
|
|
|
|
// Same as AsReversiblyEscapedUC16 with additional escaping of \n, \r, " and '.
|
|
V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os,
|
|
const AsEscapedUC16ForJSON& c);
|
|
|
|
// Writes the given character to the output escaping everything outside
|
|
// of printable ASCII range.
|
|
std::ostream& operator<<(std::ostream& os, const AsUC16& c);
|
|
|
|
// Writes the given character to the output escaping everything outside
|
|
// of printable ASCII range.
|
|
std::ostream& operator<<(std::ostream& os, const AsUC32& c);
|
|
|
|
// Writes the given number to the output in hexadecimal notation.
|
|
std::ostream& operator<<(std::ostream& os, const AsHex& v);
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#endif // V8_OSTREAMS_H_
|