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 2/Transmigration.w
2022-02-05 12:27:28 +00:00

294 lines
12 KiB
OpenEdge ABL

[Inter::Transmigration::] Transmigration.
To move packages between repositories.
@
=
typedef struct transmigration_data {
int link_time;
struct inter_symbol *linked_to;
} transmigration_data;
transmigration_data Inter::Transmigration::new_transmigration_data(inter_symbol *S) {
transmigration_data td;
td.link_time = 0;
td.linked_to = NULL;
return td;
}
int ipct_cache_count = 0;
void Inter::Transmigration::cache(inter_symbol *S, inter_symbol *V) {
S->transmigration.linked_to = V;
S->transmigration.link_time = ipct_cache_count;
}
inter_symbol *Inter::Transmigration::cached_equivalent(inter_symbol *S) {
if (S->transmigration.link_time == ipct_cache_count) return S->transmigration.linked_to;
return NULL;
}
void Inter::Transmigration::move(inter_package *migrant, inter_package *destination, int tidy_origin) {
inter_package *P = migrant; while (P) P = InterPackage::parent(P); /* make names exist */
inter_tree *origin_tree = InterPackage::tree(migrant);
inter_tree *destination_tree = InterPackage::tree(destination);
inter_package *origin = InterPackage::parent(migrant);
inter_bookmark deletion_point, insertion_point, primitives_point, ptypes_point;
@<Create these bookmarks@>;
@<Mark the insertion and deletion points with comments@>;
@<Physically move the subtree to its new home@>;
@<Correct any references from the migrant to the origin@>;
if (tidy_origin) @<Correct any references from the origin to the migrant@>;
inter_package *connectors = LargeScale::connectors_package_if_it_exists(origin_tree);
if (connectors) {
inter_symbols_table *T = InterPackage::scope(connectors);
if (T == NULL) internal_error("package with no symbols");
LOOP_OVER_SYMBOLS_TABLE(symb, T) {
if (InterSymbol::is_socket(symb)) {
inter_symbol *target = Wiring::cable_end(symb);
inter_package *target_package = InterSymbol::package(target);
while ((target_package) && (target_package != migrant)) {
target_package = InterPackage::parent(target_package);
}
if (target_package == migrant) {
LOGIF(INTER_CONNECTORS, "Origin offers socket inside migrant: $3 == $3\n", symb, target);
inter_symbol *equivalent = Wiring::find_socket(destination_tree, symb->symbol_name);
if (equivalent) {
inter_symbol *e_target = Wiring::cable_end(equivalent);
if (!InterSymbol::is_defined(e_target)) {
LOGIF(INTER_CONNECTORS, "Able to match with $3 ~~> $3\n", equivalent, Wiring::cable_end(equivalent));
Wiring::wire_to(equivalent, target);
Wiring::wire_to(e_target, target);
} else {
LOGIF(INTER_CONNECTORS, "Clash of sockets\n");
}
} else {
Wiring::socket(destination_tree, symb->symbol_name, symb);
}
}
}
}
}
}
@<Log sockets in origin tree@> =
LOG("\n\n\nList of sockets in origin tree:\n");
inter_package *connectors = LargeScale::connectors_package_if_it_exists(origin_tree);
if (connectors) {
inter_symbols_table *T = InterPackage::scope(connectors);
if (T == NULL) internal_error("package with no symbols");
LOOP_OVER_SYMBOLS_TABLE(symb, T) {
if (InterSymbol::is_socket(symb)) {
LOG("$3\n", symb);
}
}
}
LOG("---\n\n");
@<Create these bookmarks@> =
deletion_point = InterBookmark::after_this_node(migrant->package_head);
insertion_point = InterBookmark::at_end_of_this_package(destination);
inter_tree_node *prims = NULL;
LOOP_THROUGH_INTER_CHILDREN(F, destination->package_head->tree->root_node)
if (F->W.instruction[ID_IFLD] == PRIMITIVE_IST)
prims = F;
if (prims == NULL) internal_error("dest has no prims");
primitives_point = InterBookmark::after_this_node(prims);
inter_tree_node *ptypes = NULL;
LOOP_THROUGH_INTER_CHILDREN(F, destination->package_head->tree->root_node)
if (F->W.instruction[ID_IFLD] == PACKAGETYPE_IST)
ptypes = F;
if (ptypes == NULL) internal_error("dest has no prims");
ptypes_point = InterBookmark::after_this_node(ptypes);
@<Mark the insertion and deletion points with comments@> =
inter_ti C1 = InterWarehouse::create_text(InterBookmark::warehouse(&deletion_point), InterBookmark::package(&deletion_point));
WRITE_TO(InterWarehouse::get_text(InterBookmark::warehouse(&deletion_point), C1),
"Exported %S here", InterPackage::name(migrant));
Inter::Comment::new(&deletion_point, (inter_ti) InterPackage::baseline(migrant), NULL, C1);
inter_ti C2 = InterWarehouse::create_text(InterBookmark::warehouse(&insertion_point), InterBookmark::package(&insertion_point));
WRITE_TO(InterWarehouse::get_text(InterBookmark::warehouse(&insertion_point), C2),
"Imported %S here", InterPackage::name(migrant));
Inter::Comment::new(&insertion_point, (inter_ti) InterPackage::baseline(destination) + 1, NULL, C2);
@<Physically move the subtree to its new home@> =
InterPackage::remove_subpackage_name(InterPackage::parent(migrant), migrant);
InterPackage::add_subpackage_name(destination, migrant);
NodePlacement::move_to_moving_bookmark(migrant->package_head, &insertion_point);
@ =
typedef struct ipct_state {
inter_package *migrant;
inter_package *destination;
inter_bookmark *primitives_point;
inter_bookmark *ptypes_point;
inter_tree *origin_tree;
inter_tree *destination_tree;
} ipct_state;
@<Initialise the IPCT state@> =
ipct_cache_count++;
ipct.migrant = migrant;
ipct.destination = destination;
ipct.origin_tree = origin_tree;
ipct.destination_tree = destination_tree;
ipct.primitives_point = &primitives_point;
ipct.ptypes_point = &ptypes_point;
@<Correct any references from the migrant to the origin@> =
ipct_state ipct;
@<Initialise the IPCT state@>;
InterTree::traverse(destination->package_head->tree,
Inter::Transmigration::correct_migrant, &ipct, migrant, 0);
@ =
void Inter::Transmigration::correct_migrant(inter_tree *I, inter_tree_node *P, void *state) {
ipct_state *ipct = (ipct_state *) state;
P->tree = I;
if ((P->W.instruction[ID_IFLD] == INV_IST) && (P->W.instruction[METHOD_INV_IFLD] == INVOKED_PRIMITIVE)) {
inter_symbol *primitive =
InterSymbolsTable::symbol_from_ID(InterTree::global_scope(ipct->origin_tree), P->W.instruction[INVOKEE_INV_IFLD]);
if (primitive) @<Correct the reference to this primitive@>;
}
if (P->W.instruction[ID_IFLD] == PACKAGE_IST) {
inter_package *pack = InterPackage::at_this_head(P);
if (pack == NULL) internal_error("no package defined here");
if (InterPackage::is_a_linkage_package(pack)) return;
@<Correct the reference to this package type@>;
inter_symbols_table *T = InterPackage::scope(pack);
if (T == NULL) internal_error("package with no symbols");
LOOP_OVER_SYMBOLS_TABLE(symb, T) {
if (Wiring::is_wired(symb)) {
inter_symbol *target = Wiring::cable_end(symb);
if (SymbolAnnotation::get_b(target, ARCHITECTURAL_IANN)) {
Wiring::wire_to(symb,
LargeScale::find_architectural_symbol(ipct->destination->package_head->tree, target->symbol_name, Produce::kind_to_symbol(NULL)));
} else if (InterSymbol::is_plug(target)) {
inter_symbol *equivalent = Inter::Transmigration::cached_equivalent(target);
if (equivalent == NULL) {
text_stream *N = Wiring::wired_to_name(target);
equivalent = Wiring::find_plug(ipct->destination->package_head->tree, N);
if (equivalent == NULL)
equivalent = Wiring::plug(ipct->destination->package_head->tree, N);
Inter::Transmigration::cache(target, equivalent);
}
Wiring::wire_to(symb, equivalent);
} else {
inter_package *target_package = InterSymbol::package(target);
while ((target_package) && (target_package != ipct->migrant)) {
target_package = InterPackage::parent(target_package);
}
if (target_package != ipct->migrant)
@<Correct the reference to this symbol@>;
}
}
}
}
}
@<Correct the reference to this primitive@> =
inter_symbol *equivalent_primitive = Inter::Transmigration::cached_equivalent(primitive);
if (equivalent_primitive == NULL) {
equivalent_primitive = InterSymbolsTable::symbol_from_name(InterTree::global_scope(ipct->destination_tree), primitive->symbol_name);
if (equivalent_primitive == NULL) @<Duplicate this primitive@>;
if (equivalent_primitive) Inter::Transmigration::cache(primitive, equivalent_primitive);
}
if (equivalent_primitive)
P->W.instruction[INVOKEE_INV_IFLD] = InterSymbolsTable::id_from_symbol(ipct->destination_tree, NULL, equivalent_primitive);
@<Duplicate this primitive@> =
equivalent_primitive = InterSymbolsTable::symbol_from_name_creating(InterTree::global_scope(ipct->destination_tree), primitive->symbol_name);
inter_tree_node *D = Inode::new_with_1_data_field(ipct->primitives_point, PRIMITIVE_IST, InterSymbolsTable::id_from_symbol(ipct->destination_tree, NULL, equivalent_primitive), NULL, 0);
inter_tree_node *old_D = primitive->definition;
for (int i=CAT_PRIM_IFLD; i<old_D->W.extent; i++) {
Inode::extend_instruction_by(D, 1);
D->W.instruction[i] = old_D->W.instruction[i];
}
inter_error_message *E = Inter::Defn::verify_construct(InterBookmark::package(ipct->primitives_point), D);
if (E) {
Inter::Errors::issue(E);
equivalent_primitive = NULL;
} else {
NodePlacement::move_to_moving_bookmark(D, ipct->primitives_point);
}
@<Correct the reference to this package type@> =
inter_symbol *original_ptype =
InterSymbolsTable::symbol_from_ID(
InterTree::global_scope(ipct->origin_tree), P->W.instruction[PTYPE_PACKAGE_IFLD]);
inter_symbol *equivalent_ptype = Inter::Transmigration::cached_equivalent(original_ptype);
if (equivalent_ptype == NULL) {
equivalent_ptype = InterSymbolsTable::symbol_from_name(InterTree::global_scope(ipct->destination_tree), original_ptype->symbol_name);
if (equivalent_ptype == NULL) @<Duplicate this package type@>;
if (equivalent_ptype) Inter::Transmigration::cache(original_ptype, equivalent_ptype);
}
if (equivalent_ptype)
P->W.instruction[PTYPE_PACKAGE_IFLD] = InterSymbolsTable::id_from_symbol(ipct->destination_tree, NULL, equivalent_ptype);
@<Duplicate this package type@> =
equivalent_ptype = InterSymbolsTable::symbol_from_name_creating(InterTree::global_scope(ipct->destination_tree), original_ptype->symbol_name);
inter_tree_node *D = Inode::new_with_1_data_field(ipct->ptypes_point, PACKAGETYPE_IST, InterSymbolsTable::id_from_symbol(ipct->destination_tree, NULL, equivalent_ptype), NULL, 0);
inter_error_message *E = Inter::Defn::verify_construct(InterBookmark::package(ipct->ptypes_point), D);
if (E) {
Inter::Errors::issue(E);
equivalent_ptype = NULL;
} else {
NodePlacement::move_to_moving_bookmark(D, ipct->ptypes_point);
}
@<Correct the reference to this symbol@> =
inter_symbol *equivalent = Inter::Transmigration::cached_equivalent(target);
if (equivalent == NULL) {
TEMPORARY_TEXT(URL)
InterSymbolsTable::write_symbol_URL(URL, target);
equivalent = InterSymbolsTable::URL_to_symbol(ipct->destination->package_head->tree, URL);
if ((equivalent == NULL) && (Inter::Kind::is(target)))
equivalent = LargeScale::find_symbol_in_tree(ipct->destination->package_head->tree, target->symbol_name);
if (equivalent == NULL)
equivalent = Wiring::plug(ipct->destination_tree, target->symbol_name);
DISCARD_TEXT(URL)
Inter::Transmigration::cache(target, equivalent);
}
Wiring::wire_to(symb, equivalent);
@<Correct any references from the origin to the migrant@> =
ipct_state ipct;
@<Initialise the IPCT state@>;
InterTree::traverse(origin->package_head->tree,
Inter::Transmigration::correct_origin, &ipct, NULL, 0);
@ =
void Inter::Transmigration::correct_origin(inter_tree *I, inter_tree_node *P, void *state) {
ipct_state *ipct = (ipct_state *) state;
if (P->W.instruction[ID_IFLD] == PACKAGE_IST) {
inter_package *pack = InterPackage::at_this_head(P);
if (pack == NULL) internal_error("no package defined here");
if (InterPackage::is_a_linkage_package(pack)) return;
inter_symbols_table *T = InterPackage::scope(pack);
if (T == NULL) internal_error("package with no symbols");
LOOP_OVER_SYMBOLS_TABLE(symb, T) {
if (Wiring::is_wired(symb)) {
inter_symbol *target = Wiring::cable_end(symb);
inter_package *target_package = InterSymbol::package(target);
while ((target_package) && (target_package != ipct->migrant)) {
target_package = InterPackage::parent(target_package);
}
if (target_package == ipct->migrant)
@<Correct the origin reference to this migrant symbol@>;
}
}
}
}
@<Correct the origin reference to this migrant symbol@> =
inter_symbol *equivalent = Inter::Transmigration::cached_equivalent(target);
if (equivalent == NULL) {
TEMPORARY_TEXT(URL)
InterSymbolsTable::write_symbol_URL(URL, target);
equivalent = Wiring::plug(ipct->origin_tree, URL);
DISCARD_TEXT(URL)
Inter::Transmigration::cache(target, equivalent);
}
Wiring::wire_to(symb, equivalent);