summaryrefslogtreecommitdiff
path: root/mojo/public/cpp/bindings/string_traits_string_piece.h
blob: af6be893ac006aad361918ad65a0962c6eddd37f (plain)
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
// Copyright 2016 The Chromium 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 MOJO_PUBLIC_CPP_BINDINGS_STRING_TRAITS_STRING_PIECE_H_
#define MOJO_PUBLIC_CPP_BINDINGS_STRING_TRAITS_STRING_PIECE_H_

#include "base/strings/string_piece.h"
#include "mojo/public/cpp/bindings/string_traits.h"

namespace mojo {

template <>
struct StringTraits<base::StringPiece> {
  static bool IsNull(const base::StringPiece& input) {
    // base::StringPiece is always converted to non-null mojom string. We could
    // have let StringPiece containing a null data pointer map to null mojom
    // string, but StringPiece::empty() returns true in this case. It seems
    // confusing to mix the concept of empty and null strings, especially
    // because they mean different things in mojom.
    return false;
  }

  static void SetToNull(base::StringPiece* output) {
    // Convert null to an "empty" base::StringPiece.
    output->set(nullptr, 0);
  }

  static size_t GetSize(const base::StringPiece& input) { return input.size(); }

  static const char* GetData(const base::StringPiece& input) {
    return input.data();
  }

  static bool Read(StringDataView input, base::StringPiece* output) {
    output->set(input.storage(), input.size());
    return true;
  }
};

}  // namespace mojo

#endif  // MOJO_PUBLIC_CPP_BINDINGS_STRING_TRAITS_STRING_PIECE_H_