Define OID_STD_H no longer needed for oid_std.c code
[yaz-moved-to-github.git] / src / oidtoc.tcl
1 # This file is part of the YAZ toolkit
2 # Copyright (c) Index Data 2006-2007
3 # See the file LICENSE for details.
4 #
5 # $Id: oidtoc.tcl,v 1.5 2007-05-06 20:18:29 adam Exp $
6 #
7 # Converts a CSV file with Object identifiers to C
8
9 proc readoids {input} {
10     set csv [open $input r]
11     set lineno 0 
12
13     while {1} {
14         incr lineno
15         set cnt [gets $csv line]
16         if {$cnt < 0} {
17             break
18         }
19         if {![string compare [string index $line 0] \"]} {
20             continue
21         }
22         set tokens [string map {, { }} $line]
23         if {[llength $tokens] != 3} {
24             puts "$input:$lineno: Bad line '$line'"
25             exit 1
26         }
27         lappend oids $tokens
28     }
29     close $csv
30     if {![info exists oids]} {
31         puts "$input:0 No OIDS"
32         exit 1
33     }
34     return $oids
35 }
36
37 proc oid_to_c {srcdir input cname hname} {
38     set oids [readoids "${srcdir}/${input}"]
39
40     set cfile [open "${srcdir}/${cname}" w]
41     set hfile [open "${srcdir}/../include/yaz/${hname}" w]
42
43     puts $cfile "/** \\file $cname"
44     puts $hfile "/** \\file $hname"
45     set preamble "    \\brief Standard Object Identifiers: Generated from $input */"
46     puts $cfile $preamble
47     puts $hfile $preamble
48     puts $hfile "\#ifndef OID_STD_H"
49     puts $hfile "\#define OID_STD_H"
50
51     puts $cfile "\#include <yaz/oid_db.h>"
52     puts $cfile ""
53     # To avoid LNK4049
54     puts $hfile "\#ifdef YAZ_DLL"
55     puts $hfile "\#define OID_EXPORT YAZ_EXPORT"
56     puts $hfile "\#else"
57     puts $hfile "\#define OID_EXPORT YAZ_IMPORT"
58     puts $hfile "\#endif"
59
60     puts $hfile "YAZ_BEGIN_CDECL"
61     foreach oid $oids {
62         set lname [string tolower [lindex $oid 2]]
63         set lname [string map {- _ . _ { } _ ( {} ) {}} $lname]
64         set prefix [string tolower [lindex $oid 0]]
65         
66         puts -nonewline $cfile "YAZ_EXPORT extern const int yaz_oid_${prefix}_${lname}\[\] = \{"
67         puts -nonewline $cfile [string map {. ,} [lindex $oid 1]]
68         puts $cfile ",-1\};"
69
70         puts $hfile "OID_EXPORT extern const int yaz_oid_${prefix}_${lname}\[\];"
71     }
72
73     puts $cfile "YAZ_EXPORT struct yaz_oid_entry yaz_oid_standard_entries\[\] ="
74     puts $cfile "\{"
75     foreach oid $oids {
76         set lname [string tolower [lindex $oid 2]]
77         set lname [string map {- _ . _ { } _ ( {} ) {}} $lname]
78         set prefix [string tolower [lindex $oid 0]]
79         
80         puts -nonewline $cfile "\t\{CLASS_[lindex $oid 0], "
81         puts -nonewline $cfile "yaz_oid_${prefix}_${lname}, "
82         puts -nonewline $cfile \"[lindex $oid 2]\"
83         puts $cfile "\},"
84     }
85
86     puts $cfile "\t\{CLASS_NOP, 0, 0\}"
87     puts $cfile "\};"
88
89     puts $hfile "OID_EXPORT extern struct yaz_oid_entry yaz_oid_standard_entries\[\];"
90     puts $hfile "YAZ_END_CDECL"
91     puts $hfile "\#endif"
92     close $cfile
93     close $hfile
94 }
95
96 if {[llength $argv] != 4} {
97     puts "oidtoc.tcl srcdir csv cfile hfile"
98     exit 1
99 }
100 oid_to_c [lindex $argv 0] [lindex $argv 1] [lindex $argv 2] [lindex $argv 3]