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 44 45 46 47 48 49
|
#ifndef AWS_CRT_PYTHON_EVENT_STREAM_H
#define AWS_CRT_PYTHON_EVENT_STREAM_H
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include "module.h"
struct aws_array_list;
struct aws_event_stream_header_value_pair;
PyObject *aws_py_event_stream_rpc_client_connection_connect(PyObject *self, PyObject *args);
PyObject *aws_py_event_stream_rpc_client_connection_close(PyObject *self, PyObject *args);
PyObject *aws_py_event_stream_rpc_client_connection_is_open(PyObject *self, PyObject *args);
PyObject *aws_py_event_stream_rpc_client_connection_send_protocol_message(PyObject *self, PyObject *args);
PyObject *aws_py_event_stream_rpc_client_connection_new_stream(PyObject *self, PyObject *args);
PyObject *aws_py_event_stream_rpc_client_continuation_activate(PyObject *self, PyObject *args);
PyObject *aws_py_event_stream_rpc_client_continuation_send_message(PyObject *self, PyObject *args);
PyObject *aws_py_event_stream_rpc_client_continuation_is_closed(PyObject *self, PyObject *args);
/**
* Given a python list of Headers, init an aws_array_list of aws_event_stream_header_value_pairs.
* All variable-length values are copied (owned) by the new headers.
* Returns false and sets python exception if error occurred.
*/
bool aws_py_event_stream_native_headers_init(struct aws_array_list *native_headers, PyObject *headers_py);
/**
* Given an array of aws_event_stream_header_value_pair, create a python list containing (name, value, type) tuples.
* Returns a new reference if successful.
* Returns NULL and sets a python exception if error occurs.
*/
PyObject *aws_py_event_stream_python_headers_create(
struct aws_event_stream_header_value_pair *native_headers,
size_t count);
/**
* Common callback used by both connection and continuation messages.
* user_data should be a python callable that takes an error_code and returns nothing. */
void aws_py_event_stream_rpc_client_on_message_flush(int error_code, void *user_data);
/* Given a python object, return a pointer to its underlying native type.
* If NULL is returned, a python error has been set */
struct aws_event_stream_rpc_client_connection *aws_py_get_event_stream_rpc_client_connection(PyObject *connection);
struct aws_event_stream_rpc_client_continuation_token *aws_py_get_event_stream_rpc_client_continuation(
PyObject *continuation);
#endif /* AWS_CRT_PYTHON_EVENT_STREAM_H */
|