X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fconfig.h;h=e3dda3dde149da0f27fba4177af85ab3d8aac096;hb=5c0b5b368867a9b8fe6c3ffe7887890584ee9643;hp=53c1de6328f38fdb7d96e3745860ca1d0456e426;hpb=0d3944c157baf45465880ccbd72c04945062832d;p=pazpar2-moved-to-github.git diff --git a/src/config.h b/src/config.h index 53c1de6..e3dda3d 100644 --- a/src/config.h +++ b/src/config.h @@ -11,9 +11,37 @@ struct conf_termlist struct conf_termlist *next; }; +// Describes known metadata elements and how they are to be manipulated +struct conf_metadata +{ + char *name; // The name of this element. Output by normalization stylesheet + int brief; // Is this element to be returned in the brief format? + enum + { + Metadata_type_generic, // Generic text field + Metadata_type_integer, // Integer type + Metadata_type_year // A year + } type; + enum + { + Metadata_sortkey_no, // This is not to be used as a sortkey + Metadata_sortkey_numeric, // Standard numerical sorting + Metadata_sortkey_range, // Range sorting (pick lowest or highest) + Metadata_sortkey_skiparticle // Skip leading article when sorting + } sortkey; + enum + { + Metadata_merge_no, // Don't merge + Metadata_merge_unique, // Include unique elements in merged block + Metadata_merge_longest, // Include the longest (strlen) value + Metadata_merge_range // Store value as a range of lowest-highest + } merge; +}; + struct conf_service { struct conf_termlist *termlists; + struct conf_metadata *metadata; }; struct conf_server