blob: 44753383dc99fd9566d1399981f972c8b7f3da77 [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001/*
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
Konrad Grochowskia8eec712014-09-04 00:56:27 +020020#include <iostream>
Mark Slee07a3aab2007-03-07 05:45:10 +000021
Roger Meier49ff8b12012-04-13 09:12:31 +000022#include <thrift/protocol/TBinaryProtocol.h>
23#include <thrift/transport/TSocket.h>
24#include <thrift/transport/TTransportUtils.h>
Mark Slee07a3aab2007-03-07 05:45:10 +000025
26#include "../gen-cpp/Calculator.h"
27
28using namespace std;
T Jake Lucianib5e62212009-01-31 22:36:20 +000029using namespace apache::thrift;
30using namespace apache::thrift::protocol;
31using namespace apache::thrift::transport;
Mark Slee07a3aab2007-03-07 05:45:10 +000032
33using namespace tutorial;
34using namespace shared;
35
Konrad Grochowski157872d2014-11-06 19:55:28 +010036int main() {
Roger Meier5f2d34e2013-11-16 16:43:41 +010037 boost::shared_ptr<TTransport> socket(new TSocket("localhost", 9090));
38 boost::shared_ptr<TTransport> transport(new TBufferedTransport(socket));
39 boost::shared_ptr<TProtocol> protocol(new TBinaryProtocol(transport));
Mark Slee07a3aab2007-03-07 05:45:10 +000040 CalculatorClient client(protocol);
41
42 try {
43 transport->open();
David Reiss0c90f6f2008-02-06 22:18:40 +000044
Mark Slee07a3aab2007-03-07 05:45:10 +000045 client.ping();
Konrad Grochowskia8eec712014-09-04 00:56:27 +020046 cout << "ping()" << endl;
David Reiss0c90f6f2008-02-06 22:18:40 +000047
Konrad Grochowskia8eec712014-09-04 00:56:27 +020048 cout << "1 + 1 = " << client.add(1, 1) << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +000049
50 Work work;
Bryan Duxbury833ae492010-09-27 17:26:02 +000051 work.op = Operation::DIVIDE;
Mark Slee07a3aab2007-03-07 05:45:10 +000052 work.num1 = 1;
53 work.num2 = 0;
54
55 try {
Roger Meier585b7b82012-10-24 21:12:47 +000056 client.calculate(1, work);
Konrad Grochowskia8eec712014-09-04 00:56:27 +020057 cout << "Whoa? We can divide by zero!" << endl;
58 } catch (InvalidOperation& io) {
59 cout << "InvalidOperation: " << io.why << endl;
60 // or using generated operator<<: cout << io << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +000061 }
62
Bryan Duxbury833ae492010-09-27 17:26:02 +000063 work.op = Operation::SUBTRACT;
Mark Slee07a3aab2007-03-07 05:45:10 +000064 work.num1 = 15;
65 work.num2 = 10;
66 int32_t diff = client.calculate(1, work);
Konrad Grochowskia8eec712014-09-04 00:56:27 +020067 cout << "15 - 10 = " << diff << endl;
David Reiss0c90f6f2008-02-06 22:18:40 +000068
Mark Slee07a3aab2007-03-07 05:45:10 +000069 // Note that C++ uses return by reference for complex types to avoid
70 // costly copy construction
71 SharedStruct ss;
72 client.getStruct(ss, 1);
Konrad Grochowskia8eec712014-09-04 00:56:27 +020073 cout << "Received log: " << ss << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +000074
75 transport->close();
Konrad Grochowskia8eec712014-09-04 00:56:27 +020076 } catch (TException& tx) {
77 cout << "ERROR: " << tx.what() << endl;
Mark Slee07a3aab2007-03-07 05:45:10 +000078 }
Konrad Grochowski240120c2014-11-18 11:33:31 +010079
Mark Slee07a3aab2007-03-07 05:45:10 +000080}