blob: edfa0adf9d8603625797fc30527935ec79274c44 [file] [log] [blame]
Craig Tiller5dc3b302015-06-15 16:06:50 -07001/*
2 *
David Garcia Quintas3598d442016-03-15 14:53:05 -07003 * Copyright 2015-2016, Google Inc.
Craig Tiller5dc3b302015-06-15 16:06:50 -07004 * 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 Tiller9a4dddd2016-03-25 17:08:13 -070034#ifndef GRPC_CORE_LIB_TRANSPORT_CHTTP2_INCOMING_METADATA_H
35#define GRPC_CORE_LIB_TRANSPORT_CHTTP2_INCOMING_METADATA_H
Craig Tiller5dc3b302015-06-15 16:06:50 -070036
Craig Tiller9533d042016-03-25 17:11:06 -070037#include "src/core/lib/transport/transport.h"
Craig Tiller5dc3b302015-06-15 16:06:50 -070038
39typedef struct {
40 grpc_linked_mdelem *elems;
41 size_t count;
42 size_t capacity;
43 gpr_timespec deadline;
Craig Tiller9d35a1f2015-11-02 14:16:12 -080044 int published;
Craig Tiller5dc3b302015-06-15 16:06:50 -070045} grpc_chttp2_incoming_metadata_buffer;
46
47/** assumes everything initially zeroed */
Craig Tiller98505102015-06-16 11:33:15 -070048void grpc_chttp2_incoming_metadata_buffer_init(
49 grpc_chttp2_incoming_metadata_buffer *buffer);
50void grpc_chttp2_incoming_metadata_buffer_destroy(
51 grpc_chttp2_incoming_metadata_buffer *buffer);
Craig Tiller9d35a1f2015-11-02 14:16:12 -080052void grpc_chttp2_incoming_metadata_buffer_publish(
53 grpc_chttp2_incoming_metadata_buffer *buffer, grpc_metadata_batch *batch);
Craig Tiller5dc3b302015-06-15 16:06:50 -070054
Craig Tiller98505102015-06-16 11:33:15 -070055void grpc_chttp2_incoming_metadata_buffer_add(
56 grpc_chttp2_incoming_metadata_buffer *buffer, grpc_mdelem *elem);
57void grpc_chttp2_incoming_metadata_buffer_set_deadline(
58 grpc_chttp2_incoming_metadata_buffer *buffer, gpr_timespec deadline);
Craig Tiller5dc3b302015-06-15 16:06:50 -070059
Craig Tiller9a4dddd2016-03-25 17:08:13 -070060#endif /* GRPC_CORE_LIB_TRANSPORT_CHTTP2_INCOMING_METADATA_H */