blob: 8c32a30d76258e7b3b807292b62dba09eea34adb [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
44/* Increment the refcount of s. Requires slice is initialized.
45 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
48/* Decrement the ref count of s. If the ref count of s reaches zero, all
49 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
56/* Create a slice pointing at some data. Calls malloc to allocate a refcount
57 for the object, and arranges that destroy will be called with the pointer
58 passed in at destruction. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070059GPRAPI grpc_slice grpc_slice_new(void *p, size_t len, void (*destroy)(void *));
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070060
Craig Tillerd41a4a72016-10-26 16:16:06 -070061/* Equivalent to grpc_slice_new, but with a separate pointer that is
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070062 passed to the destroy function. This function can be useful when
63 the data is part of a larger structure that must be destroyed when
64 the data is no longer needed. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070065GPRAPI grpc_slice grpc_slice_new_with_user_data(void *p, size_t len,
66 void (*destroy)(void *),
67 void *user_data);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070068
Craig Tillerd41a4a72016-10-26 16:16:06 -070069/* Equivalent to grpc_slice_new, but with a two argument destroy function that
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070070 also takes the slice length. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070071GPRAPI grpc_slice grpc_slice_new_with_len(void *p, size_t len,
72 void (*destroy)(void *, size_t));
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070073
Craig Tillerd41a4a72016-10-26 16:16:06 -070074/* Equivalent to grpc_slice_new(malloc(len), len, free), but saves one malloc()
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070075 call.
76 Aborts if malloc() fails. */
Craig Tillerd41a4a72016-10-26 16:16:06 -070077GPRAPI grpc_slice grpc_slice_malloc(size_t length);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070078
Craig Tiller7c70b6c2017-01-23 07:48:42 -080079/* Intern a slice:
80
81 The return value for two invocations of this function with the same sequence
82 of bytes is a slice which points to the same memory. */
83GPRAPI grpc_slice grpc_slice_intern(grpc_slice slice);
84
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070085/* Create a slice by copying a string.
86 Does not preserve null terminators.
87 Equivalent to:
88 size_t len = strlen(source);
Craig Tillerd41a4a72016-10-26 16:16:06 -070089 grpc_slice slice = grpc_slice_malloc(len);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070090 memcpy(slice->data, source, len); */
Craig Tillerd41a4a72016-10-26 16:16:06 -070091GPRAPI grpc_slice grpc_slice_from_copied_string(const char *source);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070092
93/* Create a slice by copying a buffer.
94 Equivalent to:
Craig Tillerd41a4a72016-10-26 16:16:06 -070095 grpc_slice slice = grpc_slice_malloc(len);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070096 memcpy(slice->data, source, len); */
Craig Tillerd41a4a72016-10-26 16:16:06 -070097GPRAPI grpc_slice grpc_slice_from_copied_buffer(const char *source, size_t len);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -070098
99/* Create a slice pointing to constant memory */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700100GPRAPI grpc_slice grpc_slice_from_static_string(const char *source);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700101
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800102/* Create a slice pointing to constant memory */
103GPRAPI grpc_slice grpc_slice_from_static_buffer(const void *source, size_t len);
104
David Garcia Quintas2f4679e2017-04-14 13:06:27 -0700105/* Return a result slice derived from s, which shares a ref count with \a s,
106 where result.data==s.data+begin, and result.length==end-begin. The ref count
107 of \a s is increased by one. Do not assign result back to \a s.
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700108 Requires s initialized, begin <= end, begin <= s.length, and
109 end <= source->length. */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700110GPRAPI grpc_slice grpc_slice_sub(grpc_slice s, size_t begin, size_t end);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700111
Craig Tillerd41a4a72016-10-26 16:16:06 -0700112/* The same as grpc_slice_sub, but without altering the ref count */
113GPRAPI grpc_slice grpc_slice_sub_no_ref(grpc_slice s, size_t begin, size_t end);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700114
115/* Splits s into two: modifies s to be s[0:split], and returns a new slice,
116 sharing a refcount with s, that contains s[split:s.length].
117 Requires s intialized, split <= s.length */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700118GPRAPI grpc_slice grpc_slice_split_tail(grpc_slice *s, size_t split);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700119
120/* Splits s into two: modifies s to be s[split:s.length], and returns a new
121 slice, sharing a refcount with s, that contains s[0:split].
122 Requires s intialized, split <= s.length */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700123GPRAPI grpc_slice grpc_slice_split_head(grpc_slice *s, size_t split);
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700124
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800125GPRAPI grpc_slice grpc_empty_slice(void);
126
127GPRAPI uint32_t grpc_slice_default_hash_impl(grpc_slice s);
128GPRAPI int grpc_slice_default_eq_impl(grpc_slice a, grpc_slice b);
129
130GPRAPI int grpc_slice_eq(grpc_slice a, grpc_slice b);
Craig Tiller0451c3d2016-11-17 09:34:14 -0800131
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700132/* Returns <0 if a < b, ==0 if a == b, >0 if a > b
133 The order is arbitrary, and is not guaranteed to be stable across different
134 versions of the API. */
Craig Tillerd41a4a72016-10-26 16:16:06 -0700135GPRAPI int grpc_slice_cmp(grpc_slice a, grpc_slice b);
136GPRAPI int grpc_slice_str_cmp(grpc_slice a, const char *b);
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800137GPRAPI int grpc_slice_buf_cmp(grpc_slice a, const void *b, size_t blen);
138
139/* return non-zero if the first blen bytes of a are equal to b */
140GPRAPI int grpc_slice_buf_start_eq(grpc_slice a, const void *b, size_t blen);
141
142/* return the index of the last instance of \a c in \a s, or -1 if not found */
143GPRAPI int grpc_slice_rchr(grpc_slice s, char c);
144GPRAPI int grpc_slice_chr(grpc_slice s, char c);
145
146/* return the index of the first occurance of \a needle in \a haystack, or -1 if
147 * it's not found */
148GPRAPI int grpc_slice_slice(grpc_slice haystack, grpc_slice needle);
149
150GPRAPI uint32_t grpc_slice_hash(grpc_slice s);
Craig Tillere52bbb12016-11-10 15:34:06 -0800151
Craig Tillerb121fc72016-11-03 15:22:59 -0700152/* Do two slices point at the same memory, with the same length
153 If a or b is inlined, actually compares data */
Craig Tillerd57a1482016-11-16 14:45:10 -0800154GPRAPI int grpc_slice_is_equivalent(grpc_slice a, grpc_slice b);
Craig Tillerb121fc72016-11-03 15:22:59 -0700155
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800156/* Return a slice pointing to newly allocated memory that has the same contents
157 * as \a s */
158GPRAPI grpc_slice grpc_slice_dup(grpc_slice a);
159
160/* Return a copy of slice as a C string. Offers no protection against embedded
161 NULL's. Returned string must be freed with gpr_free. */
162GPRAPI char *grpc_slice_to_c_string(grpc_slice s);
163
David Garcia Quintase8fd66b2016-07-27 22:05:37 -0700164#ifdef __cplusplus
165}
166#endif
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800167
Craig Tiller5b676a62016-10-26 21:09:29 -0700168#endif /* GRPC_SLICE_H */