1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 01:54:21 +03:00
inform7/inter/bytecode-module/Chapter 4/The Property Construct.w
2022-02-07 23:30:40 +00:00

86 lines
3.7 KiB
OpenEdge ABL

[Inter::Property::] The Property Construct.
Defining the property construct.
@
@e PROPERTY_IST
=
void Inter::Property::define(void) {
inter_construct *IC = InterConstruct::create_construct(PROPERTY_IST, I"property");
InterConstruct::specify_syntax(IC, L"property (%i+) (%i+)");
InterConstruct::permit(IC, INSIDE_PLAIN_PACKAGE_ICUP);
METHOD_ADD(IC, CONSTRUCT_READ_MTID, Inter::Property::read);
METHOD_ADD(IC, CONSTRUCT_TRANSPOSE_MTID, Inter::Property::transpose);
METHOD_ADD(IC, CONSTRUCT_VERIFY_MTID, Inter::Property::verify);
METHOD_ADD(IC, CONSTRUCT_WRITE_MTID, Inter::Property::write);
}
@
@d DEFN_PROP_IFLD 2
@d KIND_PROP_IFLD 3
@d PERM_LIST_PROP_IFLD 4
@d EXTENT_PROP_IFR 5
=
void Inter::Property::read(inter_construct *IC, inter_bookmark *IBM, inter_line_parse *ilp, inter_error_location *eloc, inter_error_message **E) {
*E = InterConstruct::vet_level(IBM, PROPERTY_IST, ilp->indent_level, eloc);
if (*E) return;
inter_symbol *prop_name = Inter::Textual::new_symbol(eloc, InterBookmark::scope(IBM), ilp->mr.exp[0], E);
if (*E) return;
inter_symbol *prop_kind = Inter::Textual::find_symbol(InterBookmark::tree(IBM), eloc, InterBookmark::scope(IBM), ilp->mr.exp[1], KIND_IST, E);
if (*E) return;
SymbolAnnotation::copy_set_to_symbol(&(ilp->set), prop_name);
*E = Inter::Property::new(IBM, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, prop_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, prop_kind), (inter_ti) ilp->indent_level, eloc);
}
inter_error_message *Inter::Property::new(inter_bookmark *IBM, inter_ti PID, inter_ti KID, inter_ti level, inter_error_location *eloc) {
inter_warehouse *warehouse = InterBookmark::warehouse(IBM);
inter_ti L1 = InterWarehouse::create_node_list(warehouse, InterBookmark::package(IBM));
inter_tree_node *P = Inode::new_with_3_data_fields(IBM, PROPERTY_IST, PID, KID, L1, eloc, level);
inter_error_message *E = InterConstruct::verify_construct(InterBookmark::package(IBM), P);
if (E) return E;
NodePlacement::move_to_moving_bookmark(P, IBM);
return NULL;
}
void Inter::Property::transpose(inter_construct *IC, inter_tree_node *P, inter_ti *grid, inter_ti grid_extent, inter_error_message **E) {
P->W.instruction[PERM_LIST_PROP_IFLD] = grid[P->W.instruction[PERM_LIST_PROP_IFLD]];
}
void Inter::Property::verify(inter_construct *IC, inter_tree_node *P, inter_package *owner, inter_error_message **E) {
if (P->W.extent != EXTENT_PROP_IFR) { *E = Inode::error(P, I"extent wrong", NULL); return; }
*E = Inter::Verify::defn(owner, P, DEFN_PROP_IFLD); if (*E) return;
*E = Inter::Verify::symbol(owner, P, P->W.instruction[KIND_PROP_IFLD], KIND_IST);
}
inter_ti Inter::Property::permissions_list(inter_symbol *prop_name) {
if (prop_name == NULL) return 0;
inter_tree_node *D = InterSymbol::definition(prop_name);
if (D == NULL) return 0;
return D->W.instruction[PERM_LIST_PROP_IFLD];
}
void Inter::Property::write(inter_construct *IC, OUTPUT_STREAM, inter_tree_node *P, inter_error_message **E) {
inter_symbol *prop_name = InterSymbolsTable::symbol_from_ID_at_node(P, DEFN_PROP_IFLD);
inter_symbol *prop_kind = InterSymbolsTable::symbol_from_ID_at_node(P, KIND_PROP_IFLD);
if ((prop_name) && (prop_kind)) {
WRITE("property %S %S", prop_name->symbol_name, prop_kind->symbol_name);
SymbolAnnotation::write_annotations(OUT, P, prop_name);
} else { *E = Inode::error(P, I"cannot write property", NULL); return; }
}
inter_symbol *Inter::Property::kind_of(inter_symbol *prop_symbol) {
if (prop_symbol == NULL) return NULL;
inter_tree_node *D = InterSymbol::definition(prop_symbol);
if (D == NULL) return NULL;
if (D->W.instruction[ID_IFLD] != PROPERTY_IST) return NULL;
return InterSymbolsTable::symbol_from_ID_at_node(D, KIND_PROP_IFLD);
}