| 411 | } |
| 412 | |
| 413 | int get_attribute_quantity(const flow_file_record *ff) { |
| 414 | NULL_CHECK(0, ff); |
| 415 | NULL_CHECK(0, ff->attributes); |
| 416 | auto attribute_map = static_cast<AttributeMap*>(ff->attributes); |
| 417 | return attribute_map ? attribute_map->size() : 0; |
| 418 | } |
| 419 | |
| 420 | int get_all_attributes(const flow_file_record* ff, attribute_set *target) { |
| 421 | NULL_CHECK(0, ff, target); |