blob: 19f546afb6e795bc4e9c0c1696b1c86213617085 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -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
Craig Tiller5b676a62016-10-26 21:09:29 -070034#ifndef GRPC_SLICE_H
35#define GRPC_SLICE_H
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036
David Garcia Quintas2425bbb2016-01-25 17:32:48 -080037#include <grpc/impl/codegen/slice.h>
David Garcia Quintas61887dc2016-07-27 23:17:34 -070038#include <grpc/support/sync.h>
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070039
40#ifdef __cplusplus
41extern "C" {
42#endif
43
Alexander Polcynd809a152017-05-03 14:49:41 -070044/** Increment the refcount of s. Requires slice is initialized.
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070045 Returns s. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070046GPRAPI grpc_slice grpc_slice_ref(grpc_slice s);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070047
Alexander Polcynd809a152017-05-03 14:49:41 -070048/** Decrement the ref count of s. If the ref count of s reaches zero, all
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070049 slices sharing the ref count are destroyed, and considered no longer
Craig Tillerd41a4a72016-10-26 16:16:06 -070050 initialized. If s is ultimately derived from a call to grpc_slice_new(start,
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070051 len, dest) where dest!=NULL , then (*dest)(start) is called, else if s is
Craig Tillerd41a4a72016-10-26 16:16:06 -070052 ultimately derived from a call to grpc_slice_new_with_len(start, len, dest)
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070053 where dest!=NULL , then (*dest)(start, len). Requires s initialized. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070054GPRAPI void grpc_slice_unref(grpc_slice s);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070055
Alexander Polcynd809a152017-05-03 14:49:41 -070056/** Copy slice - create a new slice that contains the same data as s */
Craig Tiller85bf34a2017-04-21 16:14:59 -070057GPRAPI grpc_slice grpc_slice_copy(grpc_slice s);
58
Alexander Polcynd809a152017-05-03 14:49:41 -070059/** Create a slice pointing at some data. Calls malloc to allocate a refcount
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070060 for the object, and arranges that destroy will be called with the pointer
61 passed in at destruction. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070062GPRAPI grpc_slice grpc_slice_new(void *p, size_t len, void (*destroy)(void *));
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070063
Alexander Polcynd809a152017-05-03 14:49:41 -070064/** Equivalent to grpc_slice_new, but with a separate pointer that is
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070065 passed to the destroy function. This function can be useful when
66 the data is part of a larger structure that must be destroyed when
67 the data is no longer needed. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070068GPRAPI grpc_slice grpc_slice_new_with_user_data(void *p, size_t len,
69 void (*destroy)(void *),
70 void *user_data);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070071
Alexander Polcynd809a152017-05-03 14:49:41 -070072/** Equivalent to grpc_slice_new, but with a two argument destroy function that
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070073 also takes the slice length. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070074GPRAPI grpc_slice grpc_slice_new_with_len(void *p, size_t len,
75 void (*destroy)(void *, size_t));
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070076
Alexander Polcynd809a152017-05-03 14:49:41 -070077/** Equivalent to grpc_slice_new(malloc(len), len, free), but saves one malloc()
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070078 call.
79 Aborts if malloc() fails. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070080GPRAPI grpc_slice grpc_slice_malloc(size_t length);
Craig Tiller423d6fd2017-04-12 13:15:45 -070081GPRAPI grpc_slice grpc_slice_malloc_large(size_t length);
82
83#define GRPC_SLICE_MALLOC(len) \
84 ((len) <= GRPC_SLICE_INLINED_SIZE \
85 ? (grpc_slice){.refcount = NULL, \
86 .data.inlined = {.length = (uint8_t)(len)}} \
87 : grpc_slice_malloc_large((len)))
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070088
Alexander Polcynd809a152017-05-03 14:49:41 -070089/** Intern a slice:
Craig Tiller7c70b6c2017-01-23 07:48:42 -080090
91 The return value for two invocations of this function with the same sequence
92 of bytes is a slice which points to the same memory. */
93GPRAPI grpc_slice grpc_slice_intern(grpc_slice slice);
94
Alexander Polcynd809a152017-05-03 14:49:41 -070095/** Create a slice by copying a string.
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070096 Does not preserve null terminators.
97 Equivalent to:
98 size_t len = strlen(source);
Craig Tillerd41a4a72016-10-26 16:16:06 -070099 grpc_slice slice = grpc_slice_malloc(len);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700100 memcpy(slice->data, source, len); */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700101GPRAPI grpc_slice grpc_slice_from_copied_string(const char *source);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700102
Alexander Polcynd809a152017-05-03 14:49:41 -0700103/** Create a slice by copying a buffer.
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700104 Equivalent to:
Craig Tillerd41a4a72016-10-26 16:16:06 -0700105 grpc_slice slice = grpc_slice_malloc(len);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700106 memcpy(slice->data, source, len); */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700107GPRAPI grpc_slice grpc_slice_from_copied_buffer(const char *source, size_t len);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700108
Alexander Polcynd809a152017-05-03 14:49:41 -0700109/** Create a slice pointing to constant memory */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700110GPRAPI grpc_slice grpc_slice_from_static_string(const char *source);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700111
Alexander Polcynd809a152017-05-03 14:49:41 -0700112/** Create a slice pointing to constant memory */
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800113GPRAPI grpc_slice grpc_slice_from_static_buffer(const void *source, size_t len);
114
Alexander Polcynd809a152017-05-03 14:49:41 -0700115/** Return a result slice derived from s, which shares a ref count with \a s,
David Garcia Quintas2f4679e2017-04-14 13:06:27 -0700116 where result.data==s.data+begin, and result.length==end-begin. The ref count
117 of \a s is increased by one. Do not assign result back to \a s.
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700118 Requires s initialized, begin <= end, begin <= s.length, and
119 end <= source->length. */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700120GPRAPI grpc_slice grpc_slice_sub(grpc_slice s, size_t begin, size_t end);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700121
Alexander Polcynd809a152017-05-03 14:49:41 -0700122/** The same as grpc_slice_sub, but without altering the ref count */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700123GPRAPI grpc_slice grpc_slice_sub_no_ref(grpc_slice s, size_t begin, size_t end);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700124
Alexander Polcynd809a152017-05-03 14:49:41 -0700125/** Splits s into two: modifies s to be s[0:split], and returns a new slice,
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700126 sharing a refcount with s, that contains s[split:s.length].
127 Requires s intialized, split <= s.length */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700128GPRAPI grpc_slice grpc_slice_split_tail(grpc_slice *s, size_t split);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700129
Craig Tiller0d23d892017-04-20 14:46:37 -0700130typedef enum {
131 GRPC_SLICE_REF_TAIL = 1,
132 GRPC_SLICE_REF_HEAD = 2,
133 GRPC_SLICE_REF_BOTH = 1 + 2
134} grpc_slice_ref_whom;
135
Alexander Polcynd809a152017-05-03 14:49:41 -0700136/** The same as grpc_slice_split_tail, but with an option to skip altering
Craig Tiller255ea132017-04-12 17:18:56 -0700137 * refcounts (grpc_slice_split_tail_maybe_ref(..., true) is equivalent to
138 * grpc_slice_split_tail(...)) */
139GPRAPI grpc_slice grpc_slice_split_tail_maybe_ref(grpc_slice *s, size_t split,
Craig Tiller0d23d892017-04-20 14:46:37 -0700140 grpc_slice_ref_whom ref_whom);
Craig Tiller423d6fd2017-04-12 13:15:45 -0700141
Alexander Polcynd809a152017-05-03 14:49:41 -0700142/** Splits s into two: modifies s to be s[split:s.length], and returns a new
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700143 slice, sharing a refcount with s, that contains s[0:split].
144 Requires s intialized, split <= s.length */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700145GPRAPI grpc_slice grpc_slice_split_head(grpc_slice *s, size_t split);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700146
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800147GPRAPI grpc_slice grpc_empty_slice(void);
148
149GPRAPI uint32_t grpc_slice_default_hash_impl(grpc_slice s);
150GPRAPI int grpc_slice_default_eq_impl(grpc_slice a, grpc_slice b);
151
152GPRAPI int grpc_slice_eq(grpc_slice a, grpc_slice b);
Craig Tiller0451c3d2016-11-17 09:34:14 -0800153
Alexander Polcynd809a152017-05-03 14:49:41 -0700154/** Returns <0 if a < b, ==0 if a == b, >0 if a > b
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700155 The order is arbitrary, and is not guaranteed to be stable across different
156 versions of the API. */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700157GPRAPI int grpc_slice_cmp(grpc_slice a, grpc_slice b);
158GPRAPI int grpc_slice_str_cmp(grpc_slice a, const char *b);
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800159GPRAPI int grpc_slice_buf_cmp(grpc_slice a, const void *b, size_t blen);
160
Alexander Polcynd809a152017-05-03 14:49:41 -0700161/** return non-zero if the first blen bytes of a are equal to b */
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800162GPRAPI int grpc_slice_buf_start_eq(grpc_slice a, const void *b, size_t blen);
163
Alexander Polcynd809a152017-05-03 14:49:41 -0700164/** return the index of the last instance of \a c in \a s, or -1 if not found */
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800165GPRAPI int grpc_slice_rchr(grpc_slice s, char c);
166GPRAPI int grpc_slice_chr(grpc_slice s, char c);
167
Alexander Polcynd809a152017-05-03 14:49:41 -0700168/** return the index of the first occurance of \a needle in \a haystack, or -1
Alexander Polcyn41ff2e12017-05-10 15:19:01 -0700169 if it's not found */
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800170GPRAPI int grpc_slice_slice(grpc_slice haystack, grpc_slice needle);
171
172GPRAPI uint32_t grpc_slice_hash(grpc_slice s);
Craig Tillere52bbb12016-11-10 15:34:06 -0800173
Alexander Polcynd809a152017-05-03 14:49:41 -0700174/** Do two slices point at the same memory, with the same length
Craig Tillerb121fc72016-11-03 15:22:59 -0700175 If a or b is inlined, actually compares data */
Craig Tillerd57a1482016-11-16 14:45:10 -0800176GPRAPI int grpc_slice_is_equivalent(grpc_slice a, grpc_slice b);
Craig Tillerb121fc72016-11-03 15:22:59 -0700177
Alexander Polcynd809a152017-05-03 14:49:41 -0700178/** Return a slice pointing to newly allocated memory that has the same contents
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800179 * as \a s */
180GPRAPI grpc_slice grpc_slice_dup(grpc_slice a);
181
Alexander Polcynd809a152017-05-03 14:49:41 -0700182/** Return a copy of slice as a C string. Offers no protection against embedded
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800183 NULL's. Returned string must be freed with gpr_free. */
184GPRAPI char *grpc_slice_to_c_string(grpc_slice s);
185
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700186#ifdef __cplusplus
187}
188#endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800189
Craig Tiller5b676a62016-10-26 21:09:29 -0700190#endif /* GRPC_SLICE_H */