[Extensions::] Extension Services. Behaviour specific to copies of the extension genre. @h Scanning metadata. An extension has a title and an author name, each of which is limited in length to one character less than the following constants: @d MAX_EXTENSION_TITLE_LENGTH 51 @d MAX_EXTENSION_AUTHOR_LENGTH 51 = typedef struct inform_extension { struct inbuild_copy *as_copy; struct wording body_text; /* Body of source text supplied in extension, if any */ int body_text_unbroken; /* Does this contain text waiting to be sentence-broken? */ struct compiled_documentation *documentation; /* or |NULL| if none supplied */ int documentation_sought; /* Has it yet been looked for? */ int standard; /* the (or perhaps just a) Standard Rules extension */ int authorial_modesty; /* Do not credit in the compiled game */ struct text_stream *rubric_as_lexed; /* brief description found in opening lines */ struct text_stream *extra_credit_as_lexed; struct source_file *read_into_file; /* Which source file loaded this */ struct inbuild_requirement *must_satisfy; int loaded_from_built_in_area; /* Located within Inform application */ struct inform_project *read_into_project; /* If any */ struct parse_node_tree *syntax_tree; struct parse_node *inclusion_sentence; /* Where the source called for this */ int auto_included; struct linked_list *search_list; /* of |inbuild_nest| */ int word_count; /* or 0 if this hasn't been read (yet) */ struct linked_list *activations; /* of |element_activation| */ struct linked_list *extensions; /* of |inbuild_requirement| */ struct linked_list *kits; /* of |inbuild_requirement| */ struct inbuild_nest *materials_nest; int documented_on_this_run; CLASS_DEFINITION } inform_extension; @ This is called as soon as a new copy |C| of the extension genre is created. We scan the extension file for the title, author, version number and any compatibility notes given (such as "for Glulx only"). = void Extensions::scan(inbuild_copy *C) { inform_extension *E = CREATE(inform_extension); E->as_copy = C; Copies::set_metadata(C, STORE_POINTER_inform_extension(E)); @; TEMPORARY_TEXT(claimed_author_name) TEMPORARY_TEXT(claimed_title) TEMPORARY_TEXT(reqs) semantic_version_number V = VersionNumbers::null(); filename *extension_source_filename = NULL; @; @; if (Works::is_basic_inform(C->edition->work)) E->standard = TRUE; if (Works::is_standard_rules(C->edition->work)) E->standard = TRUE; if (C->location_if_path) { text_stream *force_JSON_write = NULL; TEMPORARY_TEXT(JSON_author_name) TEMPORARY_TEXT(JSON_title) @; @; if (force_JSON_write) @; DISCARD_TEXT(JSON_author_name) DISCARD_TEXT(JSON_title) } DISCARD_TEXT(claimed_author_name) DISCARD_TEXT(claimed_title) DISCARD_TEXT(reqs) } @ = E->body_text = EMPTY_WORDING; E->body_text_unbroken = FALSE; E->documentation = NULL; E->documentation_sought = FALSE; E->standard = FALSE; E->authorial_modesty = FALSE; E->read_into_file = NULL; E->rubric_as_lexed = Str::new(); E->extra_credit_as_lexed = NULL; E->must_satisfy = NULL; E->loaded_from_built_in_area = FALSE; E->read_into_project = NULL; E->syntax_tree = SyntaxTree::new(); E->inclusion_sentence = NULL; E->auto_included = FALSE; E->search_list = NEW_LINKED_LIST(inbuild_nest); E->word_count = 0; E->activations = NEW_LINKED_LIST(element_activation); E->extensions = NEW_LINKED_LIST(inbuild_requirement); E->kits = NEW_LINKED_LIST(inbuild_requirement); E->materials_nest = NULL; E->documented_on_this_run = FALSE; @ The following scans a potential extension file. If it seems malformed, a suitable error is written to the stream |error_text|. If not, this is left alone, and the version number is returned. = @ = TEMPORARY_TEXT(titling_line) TEMPORARY_TEXT(version_text) filename *F = Extensions::main_source_file(C); FILE *EXTF = Filenames::fopen_caseless(F, "r"); if (EXTF == NULL) { filename *A = Extensions::alternative_source_file(C->location_if_path); if (A) { EXTF = Filenames::fopen_caseless(A, "r"); if (EXTF) { extension_source_filename = A; @; fclose(EXTF); } else Copies::attach_error(C, CopyErrors::new_F(OPEN_FAILED_CE, -1, F)); } else Copies::attach_error(C, CopyErrors::new_F(OPEN_FAILED_CE, -1, F)); } else { extension_source_filename = F; @; fclose(EXTF); } if (C->location_if_path) { TEMPORARY_TEXT(correct_leafname) WRITE_TO(correct_leafname, "%S.i7x", claimed_title); if (Str::ne_insensitive(correct_leafname, Filenames::get_leafname(extension_source_filename))) { int allow = FALSE; if ((repair_mode) && (Extensions::rename_file(extension_source_filename, correct_leafname))) allow = TRUE; if (allow == FALSE) { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "the source file in the extension is called '%S' but should be '%S' to match the contents", Filenames::get_leafname(extension_source_filename), correct_leafname); Copies::attach_error(C, CopyErrors::new_T(EXT_BAD_FILENAME_CE, -1, error_text)); DISCARD_TEXT(error_text) } } } DISCARD_TEXT(titling_line) DISCARD_TEXT(version_text) @ = @; @; @; if (Str::len(version_text) > 0) { V = VersionNumbers::from_text(version_text); if (VersionNumbers::is_null(V)) { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "the version number '%S' is malformed", version_text); Copies::attach_error(C, CopyErrors::new_T(EXT_MISWORDED_CE, -1, error_text)); DISCARD_TEXT(error_text) } } if ((Str::len(version_text) == 0) && (C->location_if_path)) { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "an extension stored in a directory must have a version number"); Copies::attach_error(C, CopyErrors::new_T(EXT_MISWORDED_CE, -1, error_text)); DISCARD_TEXT(error_text) V = VersionNumbers::from_text(I"1"); } @ The titling line is terminated by any of |0A|, |0D|, |0A 0D| or |0D 0A|, or by the local |\n| for good measure. @ = inchar32_t c; int commented_out = FALSE, quoted = FALSE, content_found = FALSE; while ((c = TextFiles::utf8_fgetc(EXTF, NULL, NULL)) != CH32EOF) { if (c == 0xFEFF) continue; /* skip the optional Unicode BOM pseudo-character */ if (commented_out) { if (c == ']') commented_out = FALSE; } else if (quoted) { if (c == '"') quoted = FALSE; PUT_TO(titling_line, c); } else { if (c == '[') commented_out = TRUE; else { if (c == '"') quoted = TRUE; else if ((c == '\x0a') || (c == '\x0d') || (c == '\n')) { if (content_found) break; c = ' '; } else if (Characters::is_whitespace(c) == FALSE) { content_found = TRUE; } PUT_TO(titling_line, c); } } } if (content_found == FALSE) { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "extension doesn't have an identifying title line at the top"); Copies::attach_error(C, CopyErrors::new_T(EXT_MISWORDED_CE, -1, error_text)); DISCARD_TEXT(error_text) } Str::trim_white_space(titling_line); Works::normalise_casing_mixed(titling_line); @ In the following, all possible newlines are converted to white space, and all white space before a quoted rubric text is ignored. We need to do this partly because users have probably keyed a double line break before the rubric, but also because we might have stopped reading the titling line halfway through a line division combination like |0A 0D|, so that the first thing we read here is a meaningless |0D|. @ = inchar32_t c; int found_start = FALSE; while ((c = TextFiles::utf8_fgetc(EXTF, NULL, NULL)) != CH32EOF) { if ((c == '\x0a') || (c == '\x0d') || (c == '\n') || (c == '\t')) c = ' '; if ((c != ' ') && (found_start == FALSE)) { if (c == '"') found_start = TRUE; else break; } else { if (c == '"') break; if (found_start) PUT_TO(E->rubric_as_lexed, c); } } @ In general, once case-normalised, a titling line looks like this: >> Version 2/070423 Of Going To The Zoo (For Glulx Only) By Cary Grant Begins Here. and the version information, the VM restriction and the full stop are all optional, but the division word "of" and the concluding "begin[s] here" are not. We break it up into pieces; for speed, we won't use the lexer to load the entire file. @ = match_results mr = Regexp::create_mr(); if (Str::get_last_char(titling_line) == '.') Str::delete_last_character(titling_line); if ((Regexp::match(&mr, titling_line, U"(%c*) Begin Here")) || (Regexp::match(&mr, titling_line, U"(%c*) Begins Here"))) { Str::copy(titling_line, mr.exp[0]); } else { if ((Regexp::match(&mr, titling_line, U"(%c*) Start Here")) || (Regexp::match(&mr, titling_line, U"(%c*) Starts Here"))) { Str::copy(titling_line, mr.exp[0]); } Copies::attach_error(C, CopyErrors::new_T(EXT_MISWORDED_CE, -1, I"the opening line does not end 'begin(s) here'")); } @; if (Regexp::match(&mr, titling_line, U"The (%c*)")) Str::copy(titling_line, mr.exp[0]); @; @; Regexp::dispose_of(&mr); @ We make no attempt to check the version number for validity: the purpose of the census is to identify extensions and reject accidentally included other files, not to syntax-check all extensions to see if they would work if used. @ = if (Regexp::match(&mr, titling_line, U"Version (%c*?) Of (%c*)")) { Str::copy(version_text, mr.exp[0]); Str::copy(titling_line, mr.exp[1]); } @ The earliest "by" is the divider: note that extension titles are not allowed to contain this word, so "North By Northwest By Cary Grant" is not a situation we need to contend with. @ = int quote_found = FALSE, brackets_underflowed = FALSE, brackets_in_author = FALSE; int which = 1, bl = 0; for (int i=0; i = if (Regexp::match(&mr, claimed_title, U"(%c*?) *(%(%c*%))")) { Str::copy(claimed_title, mr.exp[0]); Str::copy(reqs, mr.exp[1]); } @ = if (Str::len(claimed_title) == 0) { WRITE_TO(claimed_title, "Unknown"); } if (Str::len(claimed_author_name) == 0) { WRITE_TO(claimed_author_name, "Anonymous"); } if (Str::len(claimed_title) > MAX_EXTENSION_TITLE_LENGTH) Copies::attach_error(C, CopyErrors::new_N(EXT_TITLE_TOO_LONG_CE, -1, Str::len(claimed_title))); if (Str::len(claimed_author_name) > MAX_EXTENSION_AUTHOR_LENGTH) Copies::attach_error(C, CopyErrors::new_N(EXT_AUTHOR_TOO_LONG_CE, -1, Str::len(claimed_author_name))); C->edition = Editions::new( Works::new_raw(C->edition->work->genre, claimed_title, claimed_author_name), V); if (Str::len(reqs) > 0) { compatibility_specification *CS = Compatibility::from_text(reqs); if (CS) C->edition->compatibility = CS; else { TEMPORARY_TEXT(err) WRITE_TO(err, "cannot read compatibility '%S'", reqs); Copies::attach_error(C, CopyErrors::new_T(EXT_MISWORDED_CE, -1, err)); DISCARD_TEXT(err) } } @ = filename *F = Filenames::in(C->location_if_path, I"extension_metadata.json"); if (TextFiles::exists(F)) { JSONMetadata::read_metadata_file(C, F, JSON_title, JSON_author_name); if (C->metadata_record) { @; JSON_value *extension_details = JSON::look_up_object(C->metadata_record, I"extension-details"); if (extension_details) @; JSON_value *needs = JSON::look_up_object(C->metadata_record, I"needs"); if (needs) { JSON_value *V; LOOP_OVER_LINKED_LIST(V, JSON_value, needs->if_list) @; } } } else { SVEXPLAIN(2, "(no JSON metadata file found at %f)\n", F); if (repair_mode) { force_JSON_write = I"the JSON file is currently missing"; } else { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "the extension directory contains no 'extension_metadata.json' file"); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, error_text)); DISCARD_TEXT(error_text) } } @ = JSON_value *activates = JSON::look_up_object(C->metadata_record, I"activates"); if (activates) { JSON_value *V; LOOP_OVER_LINKED_LIST(V, JSON_value, activates->if_list) Extensions::activation(E, V->if_string, TRUE); } JSON_value *deactivates = JSON::look_up_object(C->metadata_record, I"deactivates"); if (deactivates) { JSON_value *V; LOOP_OVER_LINKED_LIST(V, JSON_value, deactivates->if_list) Extensions::activation(E, V->if_string, FALSE); } @ = ; @ = int parity = TRUE; JSON_value *if_clause = JSON::look_up_object(V, I"if"); JSON_value *unless_clause = JSON::look_up_object(V, I"unless"); if (unless_clause) { if_clause = unless_clause; parity = FALSE; } if (if_clause) { TEMPORARY_TEXT(err) WRITE_TO(err, "extension dependencies must be unconditional"); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, err)); DISCARD_TEXT(err) } JSON_value *need_clause = JSON::look_up_object(V, I"need"); if (need_clause) { JSON_value *need_type = JSON::look_up_object(need_clause, I"type"); JSON_value *need_title = JSON::look_up_object(need_clause, I"title"); JSON_value *need_author = JSON::look_up_object(need_clause, I"author"); JSON_value *need_version = JSON::look_up_object(need_clause, I"version"); if (Str::eq(need_type->if_string, I"extension")) @ else if (Str::eq(need_type->if_string, I"kit")) @ else { TEMPORARY_TEXT(err) WRITE_TO(err, "an extension can only have extensions and kits as dependencies"); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, err)); DISCARD_TEXT(err) } } @ = text_stream *extension_title = need_title->if_string; text_stream *extension_author = need_author?(need_author->if_string):NULL; inbuild_work *work = Works::new(extension_genre, extension_title, extension_author); if (need_version) @ else @; @ = semantic_version_number V = VersionNumbers::from_text(need_version->if_string); if (VersionNumbers::is_null(V)) { TEMPORARY_TEXT(err) WRITE_TO(err, "cannot read version number '%S'", need_version->if_string); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, err)); DISCARD_TEXT(err) } else { inbuild_requirement *req = Requirements::new(work, VersionNumberRanges::compatibility_range(V)); ADD_TO_LINKED_LIST(req, inbuild_requirement, E->extensions); } @ = inbuild_requirement *req = Requirements::any_version_of(work); ADD_TO_LINKED_LIST(req, inbuild_requirement, E->extensions); @ = text_stream *kit_title = need_title->if_string; text_stream *kit_author = need_author?(need_author->if_string):NULL; inbuild_work *work = Works::new(kit_genre, kit_title, kit_author); if (need_version) @ else @; @ = semantic_version_number V = VersionNumbers::from_text(need_version->if_string); if (VersionNumbers::is_null(V)) { TEMPORARY_TEXT(err) WRITE_TO(err, "cannot read version number '%S'", need_version->if_string); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, err)); DISCARD_TEXT(err) } else { inbuild_requirement *req = Requirements::new(work, VersionNumberRanges::compatibility_range(V)); ADD_TO_LINKED_LIST(req, inbuild_requirement, E->kits); } @ = inbuild_requirement *req = Requirements::any_version_of(work); ADD_TO_LINKED_LIST(req, inbuild_requirement, E->kits); @ If the JSON file disagrees with the source of the extension about any one of the version number, the title, or the author name, or indeed is simply absent, then we need to detect that and either flag an error, or force a repair. @ = semantic_version_number V2 = C->edition->version; if (VersionNumbers::ne(V, V2)) { if (repair_mode) { force_JSON_write = I"the JSON file gives the wrong version number"; C->edition->version = V; } else { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "the extension itself gives version number '%v', " "but the metadata file says '%v': these need to match", &V, &V2); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, error_text)); DISCARD_TEXT(error_text) } } if (Str::ne(JSON_title, C->edition->work->title)) { if (repair_mode) { force_JSON_write = I"the JSON file gives the wrong title"; } else { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "the extension itself gives title '%S', " "but the metadata file says '%S': these need to match", C->edition->work->title, JSON_title); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, error_text)); DISCARD_TEXT(error_text) } } if (Str::ne(JSON_author_name, C->edition->work->author_name)) { if (repair_mode) { force_JSON_write = I"the JSON file gives the wrong author name"; } else { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "the extension itself gives author name '%S', " "but the metadata file says '%S': these need to match", C->edition->work->author_name, JSON_author_name); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, error_text)); DISCARD_TEXT(error_text) } } @ This is where incorrect or missing JSON metadata is repaired. If there was metadata at all, we rewrite it with the correct author, title and version. If not, we create it in a minimal sort of way, with just an |is| object. @ = if (repair_mode == FALSE) internal_error("should not try to write JSON except in repair mode"); if (C->location_if_path == NULL) internal_error("should not try to write JSON except for a directory extension"); JSON_value *is_object = NULL; @; @; @; @ = if (C->metadata_record) is_object = JSON::look_up_object(C->metadata_record, I"is"); if (is_object == NULL) { is_object = JSON::new_object(); C->metadata_record = JSON::new_object(); JSON::add_to_object(C->metadata_record, I"is", is_object); } @ = JSON::change_object(is_object, I"type", JSON::new_string(I"extension")); JSON::change_object(is_object, I"title", JSON::new_string(C->edition->work->title)); JSON::change_object(is_object, I"author", JSON::new_string(C->edition->work->author_name)); TEMPORARY_TEXT(v) WRITE_TO(v, "%v", &(C->edition->version)); JSON::change_object(is_object, I"version", JSON::new_string(v)); DISCARD_TEXT(v) @ = filename *F = Filenames::in(C->location_if_path, I"extension_metadata.json"); text_stream JSONF_struct; text_stream *OUT = &JSONF_struct; if (STREAM_OPEN_TO_FILE(OUT, F, UTF8_ENC) == FALSE) { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "extension metadata file 'extension_metadata.json' was missing " "or incorrect, and I was unable to write a better one"); Copies::attach_error(C, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, error_text)); DISCARD_TEXT(error_text) } else { JSON::encode(OUT, C->metadata_record); STREAM_CLOSE(OUT); WRITE_TO(STDERR, "(Writing JSON metadata file to %f, because %S)\n", F, force_JSON_write); } @ Language elements can be activated or deactivated: = void Extensions::activation(inform_extension *E, text_stream *name, int act) { element_activation *EA = CREATE(element_activation); EA->element_name = Str::duplicate(name); EA->activate = act; ADD_TO_LINKED_LIST(EA, element_activation, E->activations); } @ Since there are two ways extensions can be stored: = inform_extension *Extensions::from_copy(inbuild_copy *C) { inform_extension *ext = ExtensionBundleManager::from_copy(C); if (ext == NULL) ext = ExtensionManager::from_copy(C); return ext; } filename *Extensions::main_source_file(inbuild_copy *C) { filename *F = C->location_if_file; if (F == NULL) { pathname *P = C->location_if_path; if (P) { TEMPORARY_TEXT(leaf) WRITE_TO(leaf, "%S.i7x", C->edition->work->title); F = Filenames::in(Pathnames::down(P, I"Source"), leaf); DISCARD_TEXT(leaf) } } return F; } filename *Extensions::alternative_source_file(pathname *P) { if (P) { P = Pathnames::down(P, I"Source"); linked_list *L = Directories::listing(P); filename *A = NULL; text_stream *entry; LOOP_OVER_LINKED_LIST(entry, text_stream, L) { if (Platform::is_folder_separator(Str::get_last_char(entry)) == FALSE) { filename *F = Filenames::in(P, entry); TEMPORARY_TEXT(fext) Filenames::write_extension(fext, F); if (Str::eq_insensitive(fext, I".i7x")) A = F; DISCARD_TEXT(fext) if (A) break; } } return A; } return NULL; } pathname *Extensions::materials_path(inform_extension *E) { pathname *P = E->as_copy->location_if_path; if (P) P = Pathnames::down(P, I"Materials"); return P; } inbuild_nest *Extensions::materials_nest(inform_extension *E) { pathname *P = Extensions::materials_path(E); if ((E->materials_nest == NULL) && (P)) { E->materials_nest = Nests::new(P); Nests::set_tag(E->materials_nest, EXTENSION_NEST_TAG); } return E->materials_nest; } @h Cached metadata. = void Extensions::set_word_count(inform_extension *E, int wc) { E->word_count = wc; } int Extensions::get_word_count(inform_extension *E) { return E->word_count; } text_stream *Extensions::get_sort_word_count(inform_extension *E) { text_stream *T = Str::new(); WRITE_TO(T, "%8d", E->word_count); return T; } int Extensions::compare_by_edition(inform_extension *E1, inform_extension *E2) { if ((E1 == NULL) || (E2 == NULL)) internal_error("bad work match"); int d = Works::cmp(E1->as_copy->edition->work, E2->as_copy->edition->work); if (d != 0) return d; return VersionNumbers::cmp( E1->as_copy->edition->version, E2->as_copy->edition->version); } int Extensions::compare_by_author(inform_extension *E1, inform_extension *E2) { if ((E1 == NULL) || (E2 == NULL)) internal_error("bad work match"); int d = Str::cmp(E2->as_copy->edition->work->author_name, E1->as_copy->edition->work->author_name); if (d != 0) return d; return Extensions::compare_by_edition(E1, E2); } int Extensions::compare_by_title(inform_extension *E1, inform_extension *E2) { if ((E1 == NULL) || (E2 == NULL)) internal_error("bad work match"); int d = Str::cmp(E2->as_copy->edition->work->title, E1->as_copy->edition->work->title); if (d != 0) return d; return Extensions::compare_by_edition(E1, E2); } int Extensions::compare_by_length(inform_extension *E1, inform_extension *E2) { if ((E1 == NULL) || (E2 == NULL)) internal_error("bad work match"); int d = Str::cmp( Extensions::get_sort_word_count(E2), Extensions::get_sort_word_count(E1)); if (d != 0) return d; return Extensions::compare_by_edition(E1, E2); } @h Search list. Sometimes ane extension is being looked at in isolation, and then |read_into_project| will be |NULL|; but if it is being loaded to be included in the source text of a project, then... = void Extensions::set_associated_project(inform_extension *E, inform_project *P) { E->read_into_project = P; } @ ...and this affects its search list, because now its own inclusions can see the Materials folder of the project in question: = linked_list *Extensions::nest_list(inform_extension *E) { if (E == NULL) return Supervisor::shared_nest_list(); RUN_ONLY_FROM_PHASE(NESTED_INBUILD_PHASE) if (LinkedLists::len(E->search_list) == 0) { inform_project *proj = E->read_into_project; if (proj) ADD_TO_LINKED_LIST(proj->materials_nest, inbuild_nest, E->search_list); inbuild_nest *N; linked_list *L = Supervisor::shared_nest_list(); LOOP_OVER_LINKED_LIST(N, inbuild_nest, L) ADD_TO_LINKED_LIST(N, inbuild_nest, E->search_list); } return E->search_list; } @h Language element activation. Note that this function is meaningful only when this module is part of the |inform7| executable, and it invites us to activate or deactivate language features as |E| would like. = void Extensions::activate_elements(inform_extension *E, inform_project *proj) { element_activation *EA; LOOP_OVER_LINKED_LIST(EA, element_activation, E->activations) { compiler_feature *P = Features::from_name(EA->element_name); if (P == NULL) { TEMPORARY_TEXT(err) WRITE_TO(err, "extension metadata refers to unknown compiler feature '%S'", EA->element_name); Copies::attach_error(E->as_copy, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, err)); DISCARD_TEXT(err) } else { if (EA->activate) Features::activate(P); else if (Features::deactivate(P) == FALSE) { TEMPORARY_TEXT(err) WRITE_TO(err, "extension metadata asks to deactivate mandatory compiler feature '%S'", EA->element_name); Copies::attach_error(E->as_copy, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, err)); DISCARD_TEXT(err) } } } linked_list *L = NEW_LINKED_LIST(inbuild_nest); inbuild_nest *N = Extensions::materials_nest(E); ADD_TO_LINKED_LIST(N, inbuild_nest, L); inbuild_requirement *req; LOOP_OVER_LINKED_LIST(req, inbuild_requirement, E->kits) { if (Projects::add_kit_dependency(proj, req->work->raw_title, NULL, NULL, NULL, L) == FALSE) { TEMPORARY_TEXT(err) WRITE_TO(err, "extension metadata says that the extension contains the kit '%S', but it doesn't", req->work->raw_title); Copies::attach_error(E->as_copy, CopyErrors::new_T(METADATA_MALFORMED_CE, -1, err)); DISCARD_TEXT(err) } } } @h Graph. The dependency graph is not so much constructed as discovered; dependencies are made to each other extension as it's Included in this one, during the course of reading in the text. Note that this function is not called when graphing a project which Includes this extension: this is called only when //inbuild// wants to see the graph of an extension in isolation from projects. (That's why we must perform the Inclusion traverse: for a project this traverse would come later, but with no project involved, we must take action ourselves.) = void Extensions::construct_graph(inform_extension *E) { if (Supervisor::project_set_at_command_line() == NULL) { Copies::get_source_text(E->as_copy, I"graphing extension"); Sentences::set_start_of_source(sfsm, -1); Inclusions::traverse(E->as_copy, E->syntax_tree); linked_list *L = NEW_LINKED_LIST(inbuild_nest); inbuild_nest *N = Extensions::materials_nest(E); ADD_TO_LINKED_LIST(N, inbuild_nest, L); inbuild_requirement *req; LOOP_OVER_LINKED_LIST(req, inbuild_requirement, E->kits) { inform_kit *K = Kits::find_by_name(req->work->raw_title, L, NULL); if (K) Graphs::need_this_to_use(E->as_copy->vertex, K->as_copy->vertex); } } } @h Read source text. The scan only skimmed the surface of the file, and didn't try to parse it as natural language text with Preform. But if the extension turns out to be one that we need to use for something, we'll need to read its full text eventually. This is that time. At present all extensions are assumed to have English as the language of syntax. = void Extensions::read_source_text_for(inform_extension *E) { inform_language *L = Languages::find_for(I"English", Extensions::nest_list(E)); Languages::read_Preform_definition(L, Extensions::nest_list(E)); filename *F = Extensions::main_source_file(E->as_copy); TEMPORARY_TEXT(synopsis) @; E->read_into_file = SourceText::read_file(E->as_copy, F, synopsis, FALSE); SVEXPLAIN(1, "(from %f)\n", F); DISCARD_TEXT(synopsis) if (E->read_into_file) { text_stream *doc = TextFromFiles::torn_off_documentation(E->read_into_file); if (Str::len(doc) > 0) E->documentation = DocumentationCompiler::compile_from_text(doc, E, NULL); else E->documentation = NULL; E->read_into_file->your_ref = STORE_POINTER_inbuild_copy(E->as_copy); @; E->body_text_unbroken = FALSE; } } @ We concoct a textual synopsis in the form = (text) "Pantomime Sausages by Mr Punch" = to be used by |SourceFiles::read_extension_source_text| for printing to |stdout|. Since we dare not assume |stdout| can manage characters outside the basic ASCII range, we flatten them from general ISO to plain ASCII. @ = if (VersionNumbers::is_null(E->as_copy->edition->version) == FALSE) WRITE_TO(synopsis, "version %v of ", &(E->as_copy->edition->version)); WRITE_TO(synopsis, "%S by %S", E->as_copy->edition->work->title, E->as_copy->edition->work->author_name); LOOP_THROUGH_TEXT(pos, synopsis) Str::put(pos, Characters::make_filename_safe( Str::get(pos))); @ Note that if there is an active project, then we are reading the extension in order to include it in that, and so we send it to the project's syntax tree, rather than to the extension's own one. But if we are simply examining the extension by running |-graph| on it in the Inbuild command line, for example, then its sentences will go to the extension's own tree. @ = wording EXW = E->read_into_file->text_read; E->body_text = EXW; E->body_text_unbroken = TRUE; /* mark this to be sentence-broken */ inform_project *project = E->read_into_project; if (project) E->syntax_tree = project->syntax_tree; Sentences::break_into_extension_copy(E->syntax_tree, E->body_text, E->as_copy, project); E->body_text_unbroken = FALSE; @ And here's the top line: = source_location Extensions::top_line_location(inform_extension *E) { source_location sl; sl.file_of_origin = E->read_into_file; sl.line_number = 1; return sl; } @ In directory extensions, documentation can be stored separately: = compiled_documentation *Extensions::get_documentation(inform_extension *E, filename *sitemap) { if (E == NULL) return NULL; int was = SourceText::for_documentation_only(TRUE); Copies::get_source_text(E->as_copy, I"getting documentation"); /* in the unlikely event this has not happened yet */ SourceText::for_documentation_only(was); if (E->documentation_sought == FALSE) { if (E->as_copy->location_if_path) { pathname *D = Pathnames::down(E->as_copy->location_if_path, I"Documentation"); if (Directories::exists(D)) @; } E->documentation_sought = TRUE; } return E->documentation; } @ = if (E->documentation) { TEMPORARY_TEXT(error_text) WRITE_TO(error_text, "this extension provides documentation both as a file and in its source"); Copies::attach_error(E->as_copy, CopyErrors::new_T(EXT_MISWORDED_CE, -1, error_text)); DISCARD_TEXT(error_text) } else { E->documentation = DocumentationCompiler::compile_from_path(D, E, sitemap); } @ And this serves the |-document| feature of inbuild: = void Extensions::document(inform_extension *E, pathname *dest, filename *sitemap) { SVEXPLAIN(1, "(documenting %X to %p)\n", E->as_copy->edition->work, dest); compiled_documentation *cd = Extensions::get_documentation(E, sitemap); DocumentationRenderer::as_HTML(dest, cd, NULL, NULL); } @ When the extension source text was read from its |source_file|, we attached a reference to say which |inform_extension| it was, and here we make use of that: = inform_extension *Extensions::corresponding_to(source_file *sf) { if (sf == NULL) return NULL; inbuild_copy *C = RETRIEVE_POINTER_inbuild_copy(sf->your_ref); if (C == NULL) return NULL; if ((C->edition->work->genre != extension_genre) && (C->edition->work->genre != extension_bundle_genre)) return NULL; return Extensions::from_copy(C); } @h Miscellaneous. = void Extensions::write(OUTPUT_STREAM, inform_extension *E) { if (E == NULL) WRITE("none"); else WRITE("%X", E->as_copy->edition->work); } void Extensions::write_name_to_file(inform_extension *E, OUTPUT_STREAM) { WRITE("%S", E->as_copy->edition->work->raw_title); } void Extensions::write_author_to_file(inform_extension *E, OUTPUT_STREAM) { WRITE("%S", E->as_copy->edition->work->raw_author_name); } @ Three pieces of information will be set later on, by other parts of Inform calling the routines below. The rubric text for an extension, which is double-quoted matter just below its "begins here" line, is parsed as a sentence and will be read as an assertion in the usual way when the material from this extension is being worked through (quite a long time after the EF structure was created). When that happens, the following function will be called to set the rubric. = void Extensions::set_rubric(inform_extension *E, text_stream *text) { if (E == NULL) internal_error("no extension"); E->rubric_as_lexed = Str::duplicate(text); LOGIF(EXTENSIONS_CENSUS, "Extension rubric: %S\n", E->rubric_as_lexed); } text_stream *Extensions::get_rubric(inform_extension *E) { if (E == NULL) return NULL; return E->rubric_as_lexed; } @ The optional extra credit line is used to acknowledge I6 sources, collaborators, translators and so on. = void Extensions::set_extra_credit(inform_extension *E, text_stream *text) { if (E == NULL) internal_error("no extension"); E->extra_credit_as_lexed = Str::duplicate(text); LOGIF(EXTENSIONS_CENSUS, "Extension extra credit: %S\n", E->extra_credit_as_lexed); } @ The use option "authorial modesty" is unusual in applying to the extension it is found in, not the whole source text. When we read it, we call one of the following routines, depending on whether it was in an extension or in the main source text: = int general_authorial_modesty = FALSE; void Extensions::set_authorial_modesty(inform_extension *E) { if (E == NULL) internal_error("no extension"); E->authorial_modesty = TRUE; } void Extensions::set_general_authorial_modesty(void) { general_authorial_modesty = TRUE; } @ The inclusion sentence for an extension is where it was Included in a project's syntax tree (if it was). It isn't used in compilation, only for problem messages and the index. = void Extensions::set_inclusion_sentence(inform_extension *E, parse_node *N) { E->inclusion_sentence = N; } parse_node *Extensions::get_inclusion_sentence(inform_extension *E) { if (E == NULL) return NULL; return E->inclusion_sentence; } @ An extension is "standard" if it's either the Standard Rules or Basic Inform. = int Extensions::is_standard(inform_extension *E) { if (E == NULL) return FALSE; return E->standard; } @h Version requirements. When it's known that an extension must satisfy a given version requirement -- say, being version 7.2.1 or better -- the following is called. Note that if incompatible requirements are placed on it, the range in |E->must_satisfy| becomes empty and stays that way. = void Extensions::must_satisfy(inform_extension *E, inbuild_requirement *req) { if (E->must_satisfy == NULL) E->must_satisfy = req; else VersionNumberRanges::intersect_range(E->must_satisfy->version_range, req->version_range); } @ And it is certainly possible, if an extension is loaded for multiple reasons with different versioning needs, that the extension no longer meets its requirements (even though it did when first loaded). This tests for that: = int Extensions::satisfies(inform_extension *E) { if (E == NULL) return FALSE; return Requirements::meets(E->as_copy->edition, E->must_satisfy); } @h File hierarchy tidying. = int Extensions::rename_directory(pathname *P, text_stream *new_name) { TEMPORARY_TEXT(task) WRITE_TO(task, "(Changing directory name '%p' to '%S')\n", P, new_name); int rv = Directories::rename(P, new_name); if (rv) WRITE_TO(STDOUT, "%S", task); return rv; } int Extensions::rename_file(filename *F, text_stream *new_name) { TEMPORARY_TEXT(task) WRITE_TO(task, "(Changing file name '%f' to '%S')\n", F, new_name); int rv = Filenames::rename(F, new_name); if (rv) WRITE_TO(STDOUT, "%S", task); return rv; } @h Modernisation. = int Extensions::modernise(inform_extension *E, text_stream *OUT) { if (E->as_copy->edition->work->genre == extension_bundle_genre) { WRITE("already in directory format\n"); return TRUE; } ExtensionConverter::go(E, OUT); return TRUE; }