1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-29 05:24:57 +03:00
inform7/inbuild/supervisor-module/Chapter 5/Pipeline Services.w
2020-05-09 13:07:39 +01:00

26 lines
694 B
OpenEdge ABL

[Pipelines::] Pipeline Services.
Behaviour specific to copies of the pipeline genre.
@h Scanning metadata.
Metadata for pipelines -- or rather, the complete lack of same -- is stored
in the following structure.
=
typedef struct inform_pipeline {
struct inbuild_copy *as_copy;
struct semantic_version_number version;
CLASS_DEFINITION
} inform_pipeline;
@ This is called as soon as a new copy |C| of the language genre is created.
=
void Pipelines::scan(inbuild_copy *C) {
inform_pipeline *P = CREATE(inform_pipeline);
P->as_copy = C;
P->version = VersionNumbers::null();
if (C == NULL) internal_error("no copy to scan");
Copies::set_metadata(C, STORE_POINTER_inform_pipeline(P));
}