diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-24 23:16:07 -0400 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-24 23:16:07 -0400 |
| commit | eef5de613c75661e5d94baa086f6f2ddc26c7ed0 (patch) | |
| tree | 180230f6a245c5bca94d894273f5d2b93ded3f04 /lib/frame.cpp | |
| parent | d5ee4e39e5b5b3b8daa85cd972802195ad35e965 (diff) | |
| download | verbly-eef5de613c75661e5d94baa086f6f2ddc26c7ed0.tar.gz verbly-eef5de613c75661e5d94baa086f6f2ddc26c7ed0.tar.bz2 verbly-eef5de613c75661e5d94baa086f6f2ddc26c7ed0.zip | |
Added verb frames
In addition: - Added prepositions. - Rewrote a lot of the query interface. It now, for a lot of relationships, supports nested AND, OR, and NOT logic. - Rewrote the token class. It is now a union-like class instead of being polymorphic, which means smart pointers are no longer necessary. - Querying with regards to word derivation has been temporarily removed. - Sentinel values are now supported for all word types. - The VerbNet data retrieved from http://verbs.colorado.edu/~mpalmer/projects/verbnet/downloads.html was found to not be perfectly satisfactory in some regards, especially regarding adjective phrases. A patch file is now included in the repository describing the changes made to the VerbNet v3.2 download for the canonical verbly datafile.
Diffstat (limited to 'lib/frame.cpp')
| -rw-r--r-- | lib/frame.cpp | 320 |
1 files changed, 320 insertions, 0 deletions
| diff --git a/lib/frame.cpp b/lib/frame.cpp new file mode 100644 index 0000000..ccec81b --- /dev/null +++ b/lib/frame.cpp | |||
| @@ -0,0 +1,320 @@ | |||
| 1 | #include "verbly.h" | ||
| 2 | |||
| 3 | namespace verbly { | ||
| 4 | |||
| 5 | frame::selrestr::type frame::selrestr::get_type() const | ||
| 6 | { | ||
| 7 | return _type; | ||
| 8 | } | ||
| 9 | |||
| 10 | frame::selrestr::selrestr(const selrestr& other) | ||
| 11 | { | ||
| 12 | _type = other._type; | ||
| 13 | |||
| 14 | switch (_type) | ||
| 15 | { | ||
| 16 | case frame::selrestr::type::singleton: | ||
| 17 | { | ||
| 18 | _singleton.pos = other._singleton.pos; | ||
| 19 | new(&_singleton.restriction) std::string(other._singleton.restriction); | ||
| 20 | |||
| 21 | break; | ||
| 22 | } | ||
| 23 | |||
| 24 | case frame::selrestr::type::group: | ||
| 25 | { | ||
| 26 | new(&_group.children) std::list<selrestr>(other._group.children); | ||
| 27 | _group.orlogic = other._group.orlogic; | ||
| 28 | |||
| 29 | break; | ||
| 30 | } | ||
| 31 | |||
| 32 | case frame::selrestr::type::empty: | ||
| 33 | { | ||
| 34 | // Nothing! | ||
| 35 | |||
| 36 | break; | ||
| 37 | } | ||
| 38 | } | ||
| 39 | } | ||
| 40 | |||
| 41 | frame::selrestr::~selrestr() | ||
| 42 | { | ||
| 43 | switch (_type) | ||
| 44 | { | ||
| 45 | case frame::selrestr::type::singleton: | ||
| 46 | { | ||
| 47 | using string_type = std::string; | ||
| 48 | _singleton.restriction.~string_type(); | ||
| 49 | |||
| 50 | break; | ||
| 51 | } | ||
| 52 | |||
| 53 | case frame::selrestr::type::group: | ||
| 54 | { | ||
| 55 | using list_type = std::list<selrestr>; | ||
| 56 | _group.children.~list_type(); | ||
| 57 | |||
| 58 | break; | ||
| 59 | } | ||
| 60 | |||
| 61 | case frame::selrestr::type::empty: | ||
| 62 | { | ||
| 63 | // Nothing! | ||
| 64 | |||
| 65 | break; | ||
| 66 | } | ||
| 67 | } | ||
| 68 | } | ||
| 69 | |||
| 70 | frame::selrestr& frame::selrestr::operator=(const selrestr& other) | ||
| 71 | { | ||
| 72 | this->~selrestr(); | ||
| 73 | |||
| 74 | _type = other._type; | ||
| 75 | |||
| 76 | switch (_type) | ||
| 77 | { | ||
| 78 | case frame::selrestr::type::singleton: | ||
| 79 | { | ||
| 80 | _singleton.pos = other._singleton.pos; | ||
| 81 | new(&_singleton.restriction) std::string(other._singleton.restriction); | ||
| 82 | |||
| 83 | break; | ||
| 84 | } | ||
| 85 | |||
| 86 | case frame::selrestr::type::group: | ||
| 87 | { | ||
| 88 | new(&_group.children) std::list<selrestr>(other._group.children); | ||
| 89 | _group.orlogic = other._group.orlogic; | ||
| 90 | |||
| 91 | break; | ||
| 92 | } | ||
| 93 | |||
| 94 | case frame::selrestr::type::empty: | ||
| 95 | { | ||
| 96 | // Nothing! | ||
| 97 | |||
| 98 | break; | ||
| 99 | } | ||
| 100 | } | ||
| 101 | |||
| 102 | return *this; | ||
| 103 | } | ||
| 104 | |||
| 105 | frame::selrestr::selrestr() : _type(frame::selrestr::type::empty) | ||
| 106 | { | ||
| 107 | |||
| 108 | } | ||
| 109 | |||
| 110 | frame::selrestr::selrestr(std::string restriction, bool pos) : _type(frame::selrestr::type::singleton) | ||
| 111 | { | ||
| 112 | new(&_singleton.restriction) std::string(restriction); | ||
| 113 | _singleton.pos = pos; | ||
| 114 | } | ||
| 115 | |||
| 116 | std::string frame::selrestr::get_restriction() const | ||
| 117 | { | ||
| 118 | assert(_type == frame::selrestr::type::singleton); | ||
| 119 | |||
| 120 | return _singleton.restriction; | ||
| 121 | } | ||
| 122 | |||
| 123 | bool frame::selrestr::get_pos() const | ||
| 124 | { | ||
| 125 | assert(_type == frame::selrestr::type::singleton); | ||
| 126 | |||
| 127 | return _singleton.pos; | ||
| 128 | } | ||
| 129 | |||
| 130 | frame::selrestr::selrestr(std::list<selrestr> children, bool orlogic) : _type(frame::selrestr::type::group) | ||
| 131 | { | ||
| 132 | new(&_group.children) std::list<selrestr>(children); | ||
| 133 | _group.orlogic = orlogic; | ||
| 134 | } | ||
| 135 | |||
| 136 | std::list<frame::selrestr> frame::selrestr::get_children() const | ||
| 137 | { | ||
| 138 | assert(_type == frame::selrestr::type::group); | ||
| 139 | |||
| 140 | return _group.children; | ||
| 141 | } | ||
| 142 | |||
| 143 | std::list<frame::selrestr>::const_iterator frame::selrestr::begin() const | ||
| 144 | { | ||
| 145 | assert(_type == frame::selrestr::type::group); | ||
| 146 | |||
| 147 | return _group.children.begin(); | ||
| 148 | } | ||
| 149 | |||
| 150 | std::list<frame::selrestr>::const_iterator frame::selrestr::end() const | ||
| 151 | { | ||
| 152 | assert(_type == frame::selrestr::type::group); | ||
| 153 | |||
| 154 | return _group.children.end(); | ||
| 155 | } | ||
| 156 | |||
| 157 | bool frame::selrestr::get_orlogic() const | ||
| 158 | { | ||
| 159 | assert(_type == frame::selrestr::type::group); | ||
| 160 | |||
| 161 | return _group.orlogic; | ||
| 162 | } | ||
| 163 | |||
| 164 | frame::part::type frame::part::get_type() const | ||
| 165 | { | ||
| 166 | return _type; | ||
| 167 | } | ||
| 168 | |||
| 169 | frame::part::part() | ||
| 170 | { | ||
| 171 | |||
| 172 | } | ||
| 173 | |||
| 174 | frame::part::part(const part& other) | ||
| 175 | { | ||
| 176 | _type = other._type; | ||
| 177 | |||
| 178 | switch (_type) | ||
| 179 | { | ||
| 180 | case frame::part::type::noun_phrase: | ||
| 181 | { | ||
| 182 | new(&_noun_phrase.role) std::string(other._noun_phrase.role); | ||
| 183 | new(&_noun_phrase.selrestrs) selrestr(other._noun_phrase.selrestrs); | ||
| 184 | new(&_noun_phrase.synrestrs) std::set<std::string>(other._noun_phrase.synrestrs); | ||
| 185 | |||
| 186 | break; | ||
| 187 | } | ||
| 188 | |||
| 189 | case frame::part::type::literal_preposition: | ||
| 190 | { | ||
| 191 | new(&_literal_preposition.choices) std::vector<std::string>(other._literal_preposition.choices); | ||
| 192 | |||
| 193 | break; | ||
| 194 | } | ||
| 195 | |||
| 196 | case frame::part::type::selection_preposition: | ||
| 197 | { | ||
| 198 | new(&_selection_preposition.preprestrs) std::vector<std::string>(other._selection_preposition.preprestrs); | ||
| 199 | |||
| 200 | break; | ||
| 201 | } | ||
| 202 | |||
| 203 | case frame::part::type::literal: | ||
| 204 | { | ||
| 205 | new(&_literal.lexval) std::string(other._literal.lexval); | ||
| 206 | |||
| 207 | break; | ||
| 208 | } | ||
| 209 | |||
| 210 | default: | ||
| 211 | { | ||
| 212 | // Nothing! | ||
| 213 | |||
| 214 | break; | ||
| 215 | } | ||
| 216 | } | ||
| 217 | } | ||
| 218 | |||
| 219 | frame::part::~part() | ||
| 220 | { | ||
| 221 | switch (_type) | ||
| 222 | { | ||
| 223 | case frame::part::type::noun_phrase: | ||
| 224 | { | ||
| 225 | using string_type = std::string; | ||
| 226 | using set_type = std::set<std::string>; | ||
| 227 | |||
| 228 | _noun_phrase.role.~string_type(); | ||
| 229 | _noun_phrase.selrestrs.~selrestr(); | ||
| 230 | _noun_phrase.synrestrs.~set_type(); | ||
| 231 | |||
| 232 | break; | ||
| 233 | } | ||
| 234 | |||
| 235 | case frame::part::type::literal_preposition: | ||
| 236 | { | ||
| 237 | using vector_type = std::vector<std::string>; | ||
| 238 | _literal_preposition.choices.~vector_type(); | ||
| 239 | |||
| 240 | break; | ||
| 241 | } | ||
| 242 | |||
| 243 | case frame::part::type::selection_preposition: | ||
| 244 | { | ||
| 245 | using vector_type = std::vector<std::string>; | ||
| 246 | _selection_preposition.preprestrs.~vector_type(); | ||
| 247 | |||
| 248 | break; | ||
| 249 | } | ||
| 250 | |||
| 251 | case frame::part::type::literal: | ||
| 252 | { | ||
| 253 | using string_type = std::string; | ||
| 254 | _literal.lexval.~string_type(); | ||
| 255 | |||
| 256 | break; | ||
| 257 | } | ||
| 258 | |||
| 259 | default: | ||
| 260 | { | ||
| 261 | // Nothing! | ||
| 262 | |||
| 263 | break; | ||
| 264 | } | ||
| 265 | } | ||
| 266 | } | ||
| 267 | |||
| 268 | std::string frame::part::get_role() const | ||
| 269 | { | ||
| 270 | assert(_type == frame::part::type::noun_phrase); | ||
| 271 | |||
| 272 | return _noun_phrase.role; | ||
| 273 | } | ||
| 274 | |||
| 275 | frame::selrestr frame::part::get_selrestrs() const | ||
| 276 | { | ||
| 277 | assert(_type == frame::part::type::noun_phrase); | ||
| 278 | |||
| 279 | return _noun_phrase.selrestrs; | ||
| 280 | } | ||
| 281 | |||
| 282 | std::set<std::string> frame::part::get_synrestrs() const | ||
| 283 | { | ||
| 284 | assert(_type == frame::part::type::noun_phrase); | ||
| 285 | |||
| 286 | return _noun_phrase.synrestrs; | ||
| 287 | } | ||
| 288 | |||
| 289 | std::vector<std::string> frame::part::get_choices() const | ||
| 290 | { | ||
| 291 | assert(_type == frame::part::type::literal_preposition); | ||
| 292 | |||
| 293 | return _literal_preposition.choices; | ||
| 294 | } | ||
| 295 | |||
| 296 | std::vector<std::string> frame::part::get_preprestrs() const | ||
| 297 | { | ||
| 298 | assert(_type == frame::part::type::selection_preposition); | ||
| 299 | |||
| 300 | return _selection_preposition.preprestrs; | ||
| 301 | } | ||
| 302 | |||
| 303 | std::string frame::part::get_literal() const | ||
| 304 | { | ||
| 305 | assert(_type == frame::part::type::literal); | ||
| 306 | |||
| 307 | return _literal.lexval; | ||
| 308 | } | ||
| 309 | |||
| 310 | std::vector<frame::part> frame::parts() const | ||
| 311 | { | ||
| 312 | return _parts; | ||
| 313 | } | ||
| 314 | |||
| 315 | std::map<std::string, frame::selrestr> frame::roles() const | ||
| 316 | { | ||
| 317 | return _roles; | ||
| 318 | } | ||
| 319 | |||
| 320 | }; | ||
