Update vendor/ for the last commit
[debiancodesearch.git] / vendor / github.com / apache / thrift / test / threads / ThreadsClient.cpp
blob9306a3f2528c413badd252298fe2a2040b09bc8a
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
20 // This autogenerated skeleton file illustrates how to build a server.
21 // You should copy it to another filename to avoid overwriting it.
23 #include "ThreadsTest.h"
24 #include <thrift/protocol/TBinaryProtocol.h>
25 #include <thrift/server/TThreadPoolServer.h>
26 #include <thrift/transport/TSocket.h>
27 #include <thrift/transport/TTransportUtils.h>
28 #include <thrift/concurrency/Monitor.h>
29 #include <thrift/concurrency/ThreadManager.h>
30 #include <thrift/concurrency/PlatformThreadFactory.h>
31 #if _WIN32
32 #include <thrift/windows/TWinsockSingleton.h>
33 #endif
35 using boost::shared_ptr;
36 using namespace apache::thrift;
37 using namespace apache::thrift::protocol;
38 using namespace apache::thrift::transport;
39 using namespace apache::thrift::server;
40 using namespace apache::thrift::concurrency;
42 int main(int argc, char **argv) {
43 #if _WIN32
44 transport::TWinsockSingleton::create();
45 #endif
46 int port = 9090;
47 std::string host = "localhost";
49 shared_ptr<TTransport> transport(new TSocket(host, port));
50 shared_ptr<TProtocol> protocol(new TBinaryProtocol(transport));
52 transport->open();
54 ThreadsTestClient client(protocol);
55 int val;
56 val = client.threadOne(5);
57 fprintf(stderr, "%d\n", val);
58 val = client.stop();
59 fprintf(stderr, "%d\n", val);
60 val = client.threadTwo(5);
61 fprintf(stderr, "%d\n", val);
63 transport->close();
65 fprintf(stderr, "done.\n");
67 return 0;