]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/lib/c_glib/src/thrift/c_glib/transport/thrift_buffered_transport_factory.c
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / lib / c_glib / src / thrift / c_glib / transport / thrift_buffered_transport_factory.c
1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20 #include <thrift/c_glib/thrift.h>
21 #include <thrift/c_glib/transport/thrift_buffered_transport.h>
22 #include <thrift/c_glib/transport/thrift_buffered_transport_factory.h>
23
24 G_DEFINE_TYPE (ThriftBufferedTransportFactory,
25 thrift_buffered_transport_factory,
26 THRIFT_TYPE_TRANSPORT_FACTORY)
27
28 /* Wraps a transport with a ThriftBufferedTransport. */
29 ThriftTransport *
30 thrift_buffered_transport_factory_get_transport (ThriftTransportFactory *factory,
31 ThriftTransport *transport)
32 {
33 THRIFT_UNUSED_VAR (factory);
34
35 return THRIFT_TRANSPORT (g_object_new (THRIFT_TYPE_BUFFERED_TRANSPORT,
36 "transport", transport,
37 NULL));
38 }
39
40 static void
41 thrift_buffered_transport_factory_init (ThriftBufferedTransportFactory *self)
42 {
43 THRIFT_UNUSED_VAR (self);
44 }
45
46 static void
47 thrift_buffered_transport_factory_class_init (ThriftBufferedTransportFactoryClass *klass)
48 {
49 ThriftTransportFactoryClass *base_class =
50 THRIFT_TRANSPORT_FACTORY_CLASS (klass);
51
52 base_class->get_transport =
53 klass->get_transport =
54 thrift_buffered_transport_factory_get_transport;
55 }