1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-05 16:44:21 +03:00
inform7/inter/bytecode-module/Chapter 4/The PropertyValue Construct.w
2022-02-05 12:27:28 +00:00

145 lines
6.4 KiB
OpenEdge ABL

[Inter::PropertyValue::] The PropertyValue Construct.
Defining the propertyvalue construct.
@
@e PROPERTYVALUE_IST
=
void Inter::PropertyValue::define(void) {
inter_construct *IC = Inter::Defn::create_construct(
PROPERTYVALUE_IST,
L"propertyvalue (%i+) (%i+) = (%c+)",
I"propertyvalue", I"propertyvalues");
METHOD_ADD(IC, CONSTRUCT_READ_MTID, Inter::PropertyValue::read);
METHOD_ADD(IC, CONSTRUCT_VERIFY_MTID, Inter::PropertyValue::verify);
METHOD_ADD(IC, CONSTRUCT_WRITE_MTID, Inter::PropertyValue::write);
}
@
@d PROP_PVAL_IFLD 2
@d OWNER_PVAL_IFLD 3
@d DVAL1_PVAL_IFLD 4
@d DVAL2_PVAL_IFLD 5
@d EXTENT_PVAL_IFR 6
=
void Inter::PropertyValue::read(inter_construct *IC, inter_bookmark *IBM, inter_line_parse *ilp, inter_error_location *eloc, inter_error_message **E) {
*E = Inter::Defn::vet_level(IBM, PROPERTYVALUE_IST, ilp->indent_level, eloc);
if (*E) return;
if (SymbolAnnotation::nonempty(&(ilp->set))) { *E = Inter::Errors::plain(I"__annotations are not allowed", eloc); return; }
inter_symbol *prop_name = Inter::Textual::find_symbol(InterBookmark::tree(IBM), eloc, InterBookmark::scope(IBM), ilp->mr.exp[0], PROPERTY_IST, E);
if (*E) return;
inter_symbol *owner_name = Inter::Textual::find_KOI(eloc, InterBookmark::scope(IBM), ilp->mr.exp[1], E);
if (*E) return;
inter_ti plist_ID;
if (Inter::Kind::is(owner_name)) plist_ID = Inter::Kind::properties_list(owner_name);
else plist_ID = Inter::Instance::properties_list(owner_name);
inter_node_list *FL = InterWarehouse::get_node_list(InterBookmark::warehouse(IBM), plist_ID);
if (FL == NULL) internal_error("no properties list");
inter_tree_node *X;
LOOP_THROUGH_INTER_NODE_LIST(X, FL) {
inter_symbol *prop_X = InterSymbolsTable::symbol_from_ID_at_node(X, PROP_PVAL_IFLD);
if (prop_X == prop_name)
{ *E = Inter::Errors::quoted(I"property already given", ilp->mr.exp[0], eloc); return; }
}
inter_symbol *val_kind = Inter::Property::kind_of(prop_name);
inter_ti con_val1 = 0;
inter_ti con_val2 = 0;
*E = Inter::Types::read(ilp->line, eloc, InterBookmark::tree(IBM), InterBookmark::package(IBM), val_kind, ilp->mr.exp[2], &con_val1, &con_val2, InterBookmark::scope(IBM));
if (*E) return;
*E = Inter::PropertyValue::new(IBM, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, prop_name), InterSymbolsTable::id_from_symbol_at_bookmark(IBM, owner_name),
con_val1, con_val2, (inter_ti) ilp->indent_level, eloc);
}
int Inter::PropertyValue::permitted(inter_tree_node *F, inter_package *pack, inter_symbol *owner, inter_symbol *prop_name) {
inter_ti plist_ID;
if (Inter::Kind::is(owner)) plist_ID = Inter::Kind::permissions_list(owner);
else plist_ID = Inter::Instance::permissions_list(owner);
inter_node_list *FL = Inode::ID_to_frame_list(F, plist_ID);
inter_tree_node *X;
LOOP_THROUGH_INTER_NODE_LIST(X, FL) {
inter_symbol *prop_allowed = InterSymbolsTable::symbol_from_ID_at_node(X, PROP_PERM_IFLD);
if (prop_allowed == prop_name)
return TRUE;
}
inter_symbol *inst_kind;
if (Inter::Kind::is(owner)) inst_kind = Inter::Kind::super(owner);
else inst_kind = Inter::Instance::kind_of(owner);
while (inst_kind) {
inter_node_list *FL =
Inode::ID_to_frame_list(F, Inter::Kind::permissions_list(inst_kind));
if (FL == NULL) internal_error("no permissions list");
inter_tree_node *X;
LOOP_THROUGH_INTER_NODE_LIST(X, FL) {
inter_symbol *prop_allowed = InterSymbolsTable::symbol_from_ID_at_node(X, PROP_PERM_IFLD);
if (prop_allowed == prop_name)
return TRUE;
}
inst_kind = Inter::Kind::super(inst_kind);
}
return FALSE;
}
inter_error_message *Inter::PropertyValue::new(inter_bookmark *IBM, inter_ti PID, inter_ti OID,
inter_ti con_val1, inter_ti con_val2, inter_ti level, inter_error_location *eloc) {
inter_tree_node *P = Inode::new_with_4_data_fields(IBM, PROPERTYVALUE_IST,
PID, OID, con_val1, con_val2, eloc, level);
inter_error_message *E = Inter::Defn::verify_construct(InterBookmark::package(IBM), P); if (E) return E;
NodePlacement::move_to_moving_bookmark(P, IBM);
return NULL;
}
void Inter::PropertyValue::verify(inter_construct *IC, inter_tree_node *P, inter_package *owner, inter_error_message **E) {
inter_ti vcount = Inode::bump_verification_count(P);
if (P->W.extent != EXTENT_PVAL_IFR) { *E = Inode::error(P, I"extent wrong", NULL); return; }
*E = Inter::Verify::symbol(owner, P, P->W.instruction[PROP_PVAL_IFLD], PROPERTY_IST); if (*E) return;
*E = Inter::Verify::symbol_KOI(owner, P, P->W.instruction[OWNER_PVAL_IFLD]); if (*E) return;
if (vcount == 0) {
inter_symbol *prop_name = InterSymbolsTable::symbol_from_ID(InterPackage::scope(owner), P->W.instruction[PROP_PVAL_IFLD]);;
inter_symbol *owner_name = InterSymbolsTable::symbol_from_ID(InterPackage::scope(owner), P->W.instruction[OWNER_PVAL_IFLD]);;
if (Inter::PropertyValue::permitted(P, owner, owner_name, prop_name) == FALSE) {
text_stream *err = Str::new();
WRITE_TO(err, "no permission for '%S' have this property", owner_name->symbol_name);
*E = Inode::error(P, err, prop_name->symbol_name); return;
}
inter_ti plist_ID;
if (Inter::Kind::is(owner_name)) plist_ID = Inter::Kind::properties_list(owner_name);
else plist_ID = Inter::Instance::properties_list(owner_name);
inter_node_list *FL = Inode::ID_to_frame_list(P, plist_ID);
if (FL == NULL) internal_error("no properties list");
inter_tree_node *X;
LOOP_THROUGH_INTER_NODE_LIST(X, FL) {
if (X->W.instruction[PROP_PVAL_IFLD] == P->W.instruction[PROP_PVAL_IFLD]) { *E = Inode::error(P, I"duplicate property value", NULL); return; }
if (X->W.instruction[OWNER_PVAL_IFLD] != P->W.instruction[OWNER_PVAL_IFLD]) { *E = Inode::error(P, I"instance property list malformed", NULL); return; }
}
InterNodeList::add(FL, P);
}
}
void Inter::PropertyValue::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, PROP_PVAL_IFLD);
inter_symbol *owner_name = InterSymbolsTable::symbol_from_ID_at_node(P, OWNER_PVAL_IFLD);
if ((prop_name) && (owner_name)) {
inter_symbol *val_kind = Inter::Property::kind_of(InterSymbolsTable::symbol_from_ID_at_node(P, PROP_PVAL_IFLD));
WRITE("propertyvalue %S %S = ", prop_name->symbol_name, owner_name->symbol_name);
Inter::Types::write(OUT, P, val_kind, P->W.instruction[DVAL1_PVAL_IFLD], P->W.instruction[DVAL2_PVAL_IFLD], InterPackage::scope_of(P), FALSE);
} else { *E = Inode::error(P, I"cannot write propertyvalue", NULL); return; }
}