Avoid empty struct becuase some compilers dont like it.
[pazpar2-moved-to-github.git] / src / config.h
index 9d49ac5..56caece 100644 (file)
@@ -1,15 +1,44 @@
 #ifndef CONFIG_H
 #define CONFIG_H
 
-struct conf_termlist
+#include <libxslt/xslt.h>
+#include <libxslt/transform.h>
+#include <libxslt/xsltutils.h>
+
+// Describes known metadata elements and how they are to be manipulated
+struct conf_metadata 
 {
-    char *name;
-    struct conf_termlist *next;
+    char *name;  // The name of this element. Output by normalization stylesheet
+    int brief;   // Is this element to be returned in the brief format?
+    int termlist;// Is this field to be treated as a termlist for browsing?
+    int rank;    // Rank factor. 0 means don't use this field for ranking, 1 is default
+    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
+        Metadata_merge_all              // Just include all elements found
+    } merge;
 };
 
 struct conf_service
 {
-    struct conf_termlist *termlists;
+    int num_metadata;
+    struct conf_metadata *metadata;
 };
 
 struct conf_server
@@ -24,10 +53,40 @@ struct conf_server
 
 struct conf_queryprofile
 {
+    int dummy;
+};
+
+struct conf_retrievalmap
+{
+    enum {
+        Map_xslt
+    } type;
+    char *charset;
+    char *format;
+    xsltStylesheet *stylesheet;
+    struct conf_retrievalmap *next;
 };
 
 struct conf_retrievalprofile
 {
+    char *requestsyntax;
+    enum {
+        Nativesyn_xml,
+        Nativesyn_iso2709
+    } native_syntax;
+    enum {
+        Nativeform_na,
+        Nativeform_marc21,
+    } native_format;
+    char *native_encoding;
+    enum {
+        Nativemapto_na,
+        Nativemapto_marcxml,
+        Nativemapto_marcxchange
+    } native_mapto;
+    yaz_marc_t yaz_marc;
+    struct conf_retrievalmap *maplist;
+    struct conf_retrievalprofile *next;
 };
 
 struct conf_config