GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: node_union_bytes.h Lines: 28 28 100.0 %
Date: 2022-09-21 04:23:13 Branches: 4 6 66.7 %

Line Branch Exec Source
1
2
#ifndef SRC_NODE_UNION_BYTES_H_
3
#define SRC_NODE_UNION_BYTES_H_
4
5
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
6
7
// A union of const uint8_t* or const uint16_t* data that can be
8
// turned into external v8::String when given an isolate.
9
10
#include "v8.h"
11
12
namespace node {
13
14
class NonOwningExternalOneByteResource
15
    : public v8::String::ExternalOneByteStringResource {
16
 public:
17
447657
  explicit NonOwningExternalOneByteResource(const uint8_t* data, size_t length)
18
447657
      : data_(data), length_(length) {}
19
1611616
  ~NonOwningExternalOneByteResource() override = default;
20
21
5040489
  const char* data() const override {
22
5040489
    return reinterpret_cast<const char*>(data_);
23
  }
24
1790628
  size_t length() const override { return length_; }
25
26
  NonOwningExternalOneByteResource(const NonOwningExternalOneByteResource&) =
27
      delete;
28
  NonOwningExternalOneByteResource& operator=(
29
      const NonOwningExternalOneByteResource&) = delete;
30
31
 private:
32
  const uint8_t* data_;
33
  size_t length_;
34
};
35
36
class NonOwningExternalTwoByteResource
37
    : public v8::String::ExternalStringResource {
38
 public:
39
1158
  explicit NonOwningExternalTwoByteResource(const uint16_t* data, size_t length)
40
1158
      : data_(data), length_(length) {}
41
3652
  ~NonOwningExternalTwoByteResource() override = default;
42
43
30081
  const uint16_t* data() const override { return data_; }
44
4628
  size_t length() const override { return length_; }
45
46
  NonOwningExternalTwoByteResource(const NonOwningExternalTwoByteResource&) =
47
      delete;
48
  NonOwningExternalTwoByteResource& operator=(
49
      const NonOwningExternalTwoByteResource&) = delete;
50
51
 private:
52
  const uint16_t* data_;
53
  size_t length_;
54
};
55
56
// Similar to a v8::String, but it's independent from Isolates
57
// and can be materialized in Isolates as external Strings
58
// via ToStringChecked. The data pointers are owned by the caller.
59
class UnionBytes {
60
 public:
61
22407
  UnionBytes(const uint16_t* data, size_t length)
62
22407
      : one_bytes_(nullptr), two_bytes_(data), length_(length) {}
63
1695891
  UnionBytes(const uint8_t* data, size_t length)
64
1695891
      : one_bytes_(data), two_bytes_(nullptr), length_(length) {}
65
66
  UnionBytes(const UnionBytes&) = default;
67
  UnionBytes& operator=(const UnionBytes&) = default;
68
  UnionBytes(UnionBytes&&) = default;
69
  UnionBytes& operator=(UnionBytes&&) = default;
70
71
448845
  bool is_one_byte() const { return one_bytes_ != nullptr; }
72
1158
  const uint16_t* two_bytes_data() const {
73
1158
    CHECK_NOT_NULL(two_bytes_);
74
1158
    return two_bytes_;
75
  }
76
447657
  const uint8_t* one_bytes_data() const {
77
447657
    CHECK_NOT_NULL(one_bytes_);
78
447657
    return one_bytes_;
79
  }
80
448815
  v8::Local<v8::String> ToStringChecked(v8::Isolate* isolate) const {
81
448815
    if (is_one_byte()) {
82
      NonOwningExternalOneByteResource* source =
83
447657
          new NonOwningExternalOneByteResource(one_bytes_data(), length_);
84
895314
      return v8::String::NewExternalOneByte(isolate, source).ToLocalChecked();
85
    } else {
86
      NonOwningExternalTwoByteResource* source =
87
1158
          new NonOwningExternalTwoByteResource(two_bytes_data(), length_);
88
2316
      return v8::String::NewExternalTwoByte(isolate, source).ToLocalChecked();
89
    }
90
  }
91
  size_t length() { return length_; }
92
93
 private:
94
  const uint8_t* one_bytes_;
95
  const uint16_t* two_bytes_;
96
  size_t length_;
97
};
98
99
}  // namespace node
100
101
#endif  // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
102
103
#endif  // SRC_NODE_UNION_BYTES_H_