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 | */ |
Mark Slee | e9ce01c | 2007-05-16 02:29:53 +0000 | [diff] [blame] | 19 | |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 20 | #ifndef T_STRUCT_H |
| 21 | #define T_STRUCT_H |
| 22 | |
David Reiss | 566a987 | 2009-03-30 22:24:30 +0000 | [diff] [blame] | 23 | #include <algorithm> |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 24 | #include <vector> |
David Reiss | 566a987 | 2009-03-30 22:24:30 +0000 | [diff] [blame] | 25 | #include <utility> |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 26 | #include <string> |
| 27 | |
| 28 | #include "t_type.h" |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 29 | #include "t_field.h" |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 30 | |
Mark Slee | f0712dc | 2006-10-25 19:03:57 +0000 | [diff] [blame] | 31 | // Forward declare that puppy |
| 32 | class t_program; |
| 33 | |
Mark Slee | f5377b3 | 2006-10-10 01:42:59 +0000 | [diff] [blame] | 34 | /** |
| 35 | * A struct is a container for a set of member fields that has a name. Structs |
| 36 | * are also used to implement exception types. |
| 37 | * |
Mark Slee | f5377b3 | 2006-10-10 01:42:59 +0000 | [diff] [blame] | 38 | */ |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 39 | class t_struct : public t_type { |
| 40 | public: |
David Reiss | 566a987 | 2009-03-30 22:24:30 +0000 | [diff] [blame] | 41 | typedef std::vector<t_field*> members_type; |
| 42 | |
Mark Slee | f0712dc | 2006-10-25 19:03:57 +0000 | [diff] [blame] | 43 | t_struct(t_program* program) : |
| 44 | t_type(program), |
Mark Slee | 782abbb | 2007-01-19 00:17:02 +0000 | [diff] [blame] | 45 | is_xception_(false), |
David Reiss | f84b360 | 2007-09-17 21:16:32 +0000 | [diff] [blame] | 46 | xsd_all_(false) {} |
Mark Slee | b15a68b | 2006-06-07 06:46:24 +0000 | [diff] [blame] | 47 | |
Mark Slee | f0712dc | 2006-10-25 19:03:57 +0000 | [diff] [blame] | 48 | t_struct(t_program* program, const std::string& name) : |
| 49 | t_type(program, name), |
Mark Slee | 782abbb | 2007-01-19 00:17:02 +0000 | [diff] [blame] | 50 | is_xception_(false), |
David Reiss | f84b360 | 2007-09-17 21:16:32 +0000 | [diff] [blame] | 51 | xsd_all_(false) {} |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 52 | |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 53 | void set_name(const std::string& name) { |
| 54 | name_ = name; |
| 55 | } |
| 56 | |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 57 | void set_xception(bool is_xception) { |
| 58 | is_xception_ = is_xception; |
| 59 | } |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 60 | |
Mark Slee | 782abbb | 2007-01-19 00:17:02 +0000 | [diff] [blame] | 61 | void set_xsd_all(bool xsd_all) { |
| 62 | xsd_all_ = xsd_all; |
| 63 | } |
| 64 | |
| 65 | bool get_xsd_all() const { |
| 66 | return xsd_all_; |
| 67 | } |
| 68 | |
David Reiss | 566a987 | 2009-03-30 22:24:30 +0000 | [diff] [blame] | 69 | bool append(t_field* elem) { |
| 70 | typedef members_type::iterator iter_type; |
| 71 | std::pair<iter_type, iter_type> bounds = std::equal_range( |
| 72 | members_.begin(), members_.end(), elem, t_field::key_compare() |
| 73 | ); |
| 74 | if (bounds.first != bounds.second) { |
| 75 | return false; |
| 76 | } |
| 77 | members_.insert(bounds.second, elem); |
| 78 | return true; |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 79 | } |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 80 | |
David Reiss | 566a987 | 2009-03-30 22:24:30 +0000 | [diff] [blame] | 81 | const members_type& get_members() { |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 82 | return members_; |
| 83 | } |
| 84 | |
| 85 | bool is_struct() const { |
| 86 | return !is_xception_; |
| 87 | } |
| 88 | |
| 89 | bool is_xception() const { |
| 90 | return is_xception_; |
| 91 | } |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 92 | |
David Reiss | 18bf22d | 2007-08-28 20:49:17 +0000 | [diff] [blame] | 93 | virtual std::string get_fingerprint_material() const { |
| 94 | std::string rv = "{"; |
David Reiss | 566a987 | 2009-03-30 22:24:30 +0000 | [diff] [blame] | 95 | members_type::const_iterator m_iter; |
David Reiss | 18bf22d | 2007-08-28 20:49:17 +0000 | [diff] [blame] | 96 | for (m_iter = members_.begin(); m_iter != members_.end(); ++m_iter) { |
David Reiss | 6ce97e3 | 2007-08-30 23:18:31 +0000 | [diff] [blame] | 97 | rv += (*m_iter)->get_fingerprint_material(); |
David Reiss | 18bf22d | 2007-08-28 20:49:17 +0000 | [diff] [blame] | 98 | rv += ";"; |
| 99 | } |
| 100 | rv += "}"; |
| 101 | return rv; |
| 102 | } |
| 103 | |
David Reiss | 9885c68 | 2007-08-30 23:12:37 +0000 | [diff] [blame] | 104 | virtual void generate_fingerprint() { |
| 105 | t_type::generate_fingerprint(); |
David Reiss | 566a987 | 2009-03-30 22:24:30 +0000 | [diff] [blame] | 106 | members_type::const_iterator m_iter; |
David Reiss | 9885c68 | 2007-08-30 23:12:37 +0000 | [diff] [blame] | 107 | for (m_iter = members_.begin(); m_iter != members_.end(); ++m_iter) { |
David Reiss | 6ce97e3 | 2007-08-30 23:18:31 +0000 | [diff] [blame] | 108 | (*m_iter)->get_type()->generate_fingerprint(); |
David Reiss | 18bf22d | 2007-08-28 20:49:17 +0000 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 112 | private: |
David Reiss | 18bf22d | 2007-08-28 20:49:17 +0000 | [diff] [blame] | 113 | |
David Reiss | 566a987 | 2009-03-30 22:24:30 +0000 | [diff] [blame] | 114 | members_type members_; |
Mark Slee | 9cb7c61 | 2006-09-01 22:17:45 +0000 | [diff] [blame] | 115 | bool is_xception_; |
Mark Slee | 782abbb | 2007-01-19 00:17:02 +0000 | [diff] [blame] | 116 | |
| 117 | bool xsd_all_; |
Mark Slee | 3198572 | 2006-05-24 21:45:31 +0000 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | #endif |