Mark Slee | e9ce01c | 2007-05-16 02:29:53 +0000 | [diff] [blame] | 1 | // Copyright (c) 2006- Facebook |
| 2 | // Distributed under the Thrift Software License |
| 3 | // |
| 4 | // See accompanying file LICENSE or visit the Thrift site at: |
| 5 | // http://developers.facebook.com/thrift/ |
| 6 | |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 7 | #ifndef T_FUNCTION_H |
| 8 | #define T_FUNCTION_H |
| 9 | |
| 10 | #include <string> |
| 11 | #include "t_type.h" |
| 12 | #include "t_struct.h" |
ccheever | f53b5cf | 2007-02-05 20:33:11 +0000 | [diff] [blame] | 13 | #include "t_doc.h" |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 14 | |
| 15 | /** |
Mark Slee | f5377b3 | 2006-10-10 01:42:59 +0000 | [diff] [blame] | 16 | * Representation of a function. Key parts are return type, function name, |
| 17 | * optional modifiers, and an argument list, which is implemented as a thrift |
| 18 | * struct. |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 19 | * |
| 20 | * @author Mark Slee <mcslee@facebook.com> |
| 21 | */ |
ccheever | f53b5cf | 2007-02-05 20:33:11 +0000 | [diff] [blame] | 22 | class t_function : public t_doc { |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 23 | public: |
Mark Slee | 52f643d | 2006-08-09 00:03:43 +0000 | [diff] [blame] | 24 | t_function(t_type* returntype, |
| 25 | std::string name, |
| 26 | t_struct* arglist, |
| 27 | bool async=false) : |
| 28 | returntype_(returntype), |
| 29 | name_(name), |
| 30 | arglist_(arglist), |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 31 | async_(async) { |
Mark Slee | f0712dc | 2006-10-25 19:03:57 +0000 | [diff] [blame] | 32 | xceptions_ = new t_struct(NULL); |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 33 | } |
| 34 | |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 35 | t_function(t_type* returntype, |
| 36 | std::string name, |
| 37 | t_struct* arglist, |
| 38 | t_struct* xceptions, |
| 39 | bool async=false) : |
| 40 | returntype_(returntype), |
| 41 | name_(name), |
| 42 | arglist_(arglist), |
| 43 | xceptions_(xceptions), |
David Reiss | 6d94390 | 2008-03-14 00:51:42 +0000 | [diff] [blame] | 44 | async_(async) |
| 45 | { |
| 46 | if (async_ && !xceptions_->get_members().empty()) { |
| 47 | throw std::string("Async methods can't throw exceptions."); |
| 48 | } |
| 49 | } |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 50 | |
| 51 | ~t_function() {} |
| 52 | |
Mark Slee | f5377b3 | 2006-10-10 01:42:59 +0000 | [diff] [blame] | 53 | t_type* get_returntype() const { |
| 54 | return returntype_; |
| 55 | } |
| 56 | |
| 57 | const std::string& get_name() const { |
| 58 | return name_; |
| 59 | } |
| 60 | |
| 61 | t_struct* get_arglist() const { |
| 62 | return arglist_; |
| 63 | } |
| 64 | |
| 65 | t_struct* get_xceptions() const { |
| 66 | return xceptions_; |
| 67 | } |
| 68 | |
| 69 | bool is_async() const { |
| 70 | return async_; |
| 71 | } |
Mark Slee | b15a68b | 2006-06-07 06:46:24 +0000 | [diff] [blame] | 72 | |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 73 | private: |
| 74 | t_type* returntype_; |
| 75 | std::string name_; |
| 76 | t_struct* arglist_; |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 77 | t_struct* xceptions_; |
Mark Slee | 52f643d | 2006-08-09 00:03:43 +0000 | [diff] [blame] | 78 | bool async_; |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | #endif |