David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 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 | |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 20 | #include <iostream> |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 21 | |
Roger Meier | 49ff8b1 | 2012-04-13 09:12:31 +0000 | [diff] [blame] | 22 | #include <thrift/protocol/TBinaryProtocol.h> |
| 23 | #include <thrift/transport/TSocket.h> |
| 24 | #include <thrift/transport/TTransportUtils.h> |
James E. King, III | 82ae957 | 2017-08-05 12:23:54 -0400 | [diff] [blame] | 25 | #include <thrift/stdcxx.h> |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 26 | |
| 27 | #include "../gen-cpp/Calculator.h" |
| 28 | |
| 29 | using namespace std; |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 30 | using namespace apache::thrift; |
| 31 | using namespace apache::thrift::protocol; |
| 32 | using namespace apache::thrift::transport; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 33 | |
| 34 | using namespace tutorial; |
| 35 | using namespace shared; |
| 36 | |
Konrad Grochowski | 157872d | 2014-11-06 19:55:28 +0100 | [diff] [blame] | 37 | int main() { |
James E. King, III | 82ae957 | 2017-08-05 12:23:54 -0400 | [diff] [blame] | 38 | stdcxx::shared_ptr<TTransport> socket(new TSocket("localhost", 9090)); |
| 39 | stdcxx::shared_ptr<TTransport> transport(new TBufferedTransport(socket)); |
| 40 | stdcxx::shared_ptr<TProtocol> protocol(new TBinaryProtocol(transport)); |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 41 | CalculatorClient client(protocol); |
| 42 | |
| 43 | try { |
| 44 | transport->open(); |
David Reiss | 0c90f6f | 2008-02-06 22:18:40 +0000 | [diff] [blame] | 45 | |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 46 | client.ping(); |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 47 | cout << "ping()" << endl; |
David Reiss | 0c90f6f | 2008-02-06 22:18:40 +0000 | [diff] [blame] | 48 | |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 49 | cout << "1 + 1 = " << client.add(1, 1) << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 50 | |
| 51 | Work work; |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 52 | work.op = Operation::DIVIDE; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 53 | work.num1 = 1; |
| 54 | work.num2 = 0; |
| 55 | |
| 56 | try { |
Roger Meier | 585b7b8 | 2012-10-24 21:12:47 +0000 | [diff] [blame] | 57 | client.calculate(1, work); |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 58 | cout << "Whoa? We can divide by zero!" << endl; |
| 59 | } catch (InvalidOperation& io) { |
| 60 | cout << "InvalidOperation: " << io.why << endl; |
| 61 | // or using generated operator<<: cout << io << endl; |
Konrad Grochowski | 3b115df | 2015-05-18 17:58:36 +0200 | [diff] [blame] | 62 | // or by using std::exception native method what(): cout << io.what() << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 63 | } |
| 64 | |
Bryan Duxbury | 833ae49 | 2010-09-27 17:26:02 +0000 | [diff] [blame] | 65 | work.op = Operation::SUBTRACT; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 66 | work.num1 = 15; |
| 67 | work.num2 = 10; |
| 68 | int32_t diff = client.calculate(1, work); |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 69 | cout << "15 - 10 = " << diff << endl; |
David Reiss | 0c90f6f | 2008-02-06 22:18:40 +0000 | [diff] [blame] | 70 | |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 71 | // Note that C++ uses return by reference for complex types to avoid |
| 72 | // costly copy construction |
| 73 | SharedStruct ss; |
| 74 | client.getStruct(ss, 1); |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 75 | cout << "Received log: " << ss << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 76 | |
| 77 | transport->close(); |
Konrad Grochowski | a8eec71 | 2014-09-04 00:56:27 +0200 | [diff] [blame] | 78 | } catch (TException& tx) { |
| 79 | cout << "ERROR: " << tx.what() << endl; |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 80 | } |
Mark Slee | 07a3aab | 2007-03-07 05:45:10 +0000 | [diff] [blame] | 81 | } |