blob: 5874b4f5ae32d02bdcc65d2efd2bcd19fcb1a8ed [file] [log] [blame]
Craig Tillerdb57c4f2015-02-24 10:34:47 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * Copyright 2015, Google Inc.
Craig Tillerdb57c4f2015-02-24 10:34:47 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
yang-g9e2f90c2015-08-21 15:35:03 -070034#ifndef GRPCXX_SUPPORT_SLICE_H
35#define GRPCXX_SUPPORT_SLICE_H
Craig Tillerdb57c4f2015-02-24 10:34:47 -080036
yang-g9e2f90c2015-08-21 15:35:03 -070037#include <grpc++/support/config.h>
Craig Tillerf40df232016-03-25 13:38:14 -070038#include <grpc/support/slice.h>
Craig Tillerdb57c4f2015-02-24 10:34:47 -080039
40namespace grpc {
41
Vijay Pai93beeb82016-01-07 12:12:40 -080042/// A wrapper around \a gpr_slice.
Craig Tillerd6599a32015-09-03 09:37:02 -070043///
44/// A slice represents a contiguous reference counted array of bytes.
45/// It is cheap to take references to a slice, and it is cheap to create a
46/// slice pointing to a subset of another slice.
Yang Gao61c41312015-03-10 12:42:18 -070047class Slice GRPC_FINAL {
Craig Tillerdb57c4f2015-02-24 10:34:47 -080048 public:
Craig Tillerd6599a32015-09-03 09:37:02 -070049 /// Construct an empty slice.
Craig Tillerdb57c4f2015-02-24 10:34:47 -080050 Slice();
Craig Tillerd6599a32015-09-03 09:37:02 -070051 // Destructor - drops one reference.
Craig Tillerdb57c4f2015-02-24 10:34:47 -080052 ~Slice();
Craig Tillerd6599a32015-09-03 09:37:02 -070053
Craig Tillerdb57c4f2015-02-24 10:34:47 -080054 enum AddRef { ADD_REF };
Craig Tillerd6599a32015-09-03 09:37:02 -070055 /// Construct a slice from \a slice, adding a reference.
Craig Tillerdb57c4f2015-02-24 10:34:47 -080056 Slice(gpr_slice slice, AddRef);
Craig Tillerd6599a32015-09-03 09:37:02 -070057
Craig Tillerdb57c4f2015-02-24 10:34:47 -080058 enum StealRef { STEAL_REF };
Craig Tillerd6599a32015-09-03 09:37:02 -070059 /// Construct a slice from \a slice, stealing a reference.
Craig Tillerdb57c4f2015-02-24 10:34:47 -080060 Slice(gpr_slice slice, StealRef);
Craig Tillerd6599a32015-09-03 09:37:02 -070061
62 /// Copy constructor, adds a reference.
Craig Tillerdb57c4f2015-02-24 10:34:47 -080063 Slice(const Slice& other);
Craig Tillerd6599a32015-09-03 09:37:02 -070064
65 /// Assignment, reference count is unchanged.
Yang Gao61c41312015-03-10 12:42:18 -070066 Slice& operator=(Slice other) {
67 std::swap(slice_, other.slice_);
68 return *this;
69 }
Craig Tillerdb57c4f2015-02-24 10:34:47 -080070
Craig Tillerd6599a32015-09-03 09:37:02 -070071 /// Byte size.
Craig Tillerdb57c4f2015-02-24 10:34:47 -080072 size_t size() const { return GPR_SLICE_LENGTH(slice_); }
Craig Tillerd6599a32015-09-03 09:37:02 -070073
74 /// Raw pointer to the beginning (first element) of the slice.
Craig Tiller7536af02015-12-22 13:49:30 -080075 const uint8_t* begin() const { return GPR_SLICE_START_PTR(slice_); }
Craig Tillerd6599a32015-09-03 09:37:02 -070076
77 /// Raw pointer to the end (one byte \em past the last element) of the slice.
Craig Tiller7536af02015-12-22 13:49:30 -080078 const uint8_t* end() const { return GPR_SLICE_END_PTR(slice_); }
Craig Tillerdb57c4f2015-02-24 10:34:47 -080079
yang-ga324c4f2016-06-24 11:57:07 -070080 /// Raw C slice. Caller needs to call gpr_slice_unref when done.
81 gpr_slice c_slice() const { return gpr_slice_ref(slice_); }
82
Craig Tillerdb57c4f2015-02-24 10:34:47 -080083 private:
Yang Gao61c41312015-03-10 12:42:18 -070084 friend class ByteBuffer;
85
Craig Tillerdb57c4f2015-02-24 10:34:47 -080086 gpr_slice slice_;
87};
88
Yang Gao61c41312015-03-10 12:42:18 -070089} // namespace grpc
Craig Tillerdb57c4f2015-02-24 10:34:47 -080090
David Garcia Quintas2bf574f2016-01-14 15:27:08 -080091#endif // GRPCXX_SUPPORT_SLICE_H