1999-08-03 15:23:03 +08:00
|
|
|
#
|
|
|
|
# ldaperr.tcl: scan ldap.h for error return codes for initializing
|
|
|
|
# errorCode table.
|
|
|
|
#
|
|
|
|
|
|
|
|
proc genstrings {path} {
|
|
|
|
set fp [open $path]
|
|
|
|
while {[gets $fp line] != -1 &&
|
|
|
|
![string match "#define LDAP_SUCCESS*" $line]} { }
|
|
|
|
puts "/* This file automatically generated, hand edit at your own risk! */"
|
|
|
|
puts -nonewline "char *ldaptclerrorcode\[\] = {
|
|
|
|
NULL"
|
|
|
|
while {[gets $fp line] != -1} {
|
|
|
|
if {[clength $line] == 0 || [ctype space $line]} continue
|
2002-05-02 16:11:41 +08:00
|
|
|
if {[string match *typedef* $line]} break
|
|
|
|
if {![string match #define* $line]} continue
|
1999-08-03 15:23:03 +08:00
|
|
|
if {![string match "#define LDAP_*" $line]} continue
|
2000-06-23 07:21:05 +08:00
|
|
|
if {[string match "*LDAP_RANGE*" $line]} continue
|
2002-05-02 16:11:41 +08:00
|
|
|
if {[string match "*LDAP_API_RESULT*" $line]} continue
|
|
|
|
if {[string match {*\\} $line]} {
|
|
|
|
append line [gets $fp]
|
|
|
|
}
|
1999-08-03 15:23:03 +08:00
|
|
|
lassign $line define macro value
|
2000-06-23 07:21:05 +08:00
|
|
|
set ldap_errcode($macro) $value
|
|
|
|
}
|
2002-05-02 16:11:41 +08:00
|
|
|
#parray ldap_errcode
|
2000-06-23 07:21:05 +08:00
|
|
|
foreach i [array names ldap_errcode] {
|
|
|
|
set value $ldap_errcode($i)
|
|
|
|
#puts stderr "checking $value"
|
|
|
|
if [regexp {^[A-Z_]} $value] {
|
|
|
|
if [info exists ldap_errcode($value)] {
|
|
|
|
set value $ldap_errcode($value)
|
|
|
|
set ldap_errcode($i) $value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
set ldap_errname($value) $i
|
|
|
|
}
|
|
|
|
set lasterr 0
|
|
|
|
foreach value [lsort -integer [array names ldap_errname]] {
|
1999-08-03 15:23:03 +08:00
|
|
|
incr lasterr
|
|
|
|
while {$lasterr < $value} {
|
|
|
|
puts -nonewline ",\n\tNULL"
|
|
|
|
incr lasterr
|
|
|
|
}
|
2000-06-23 07:21:05 +08:00
|
|
|
puts -nonewline ",\n\t\"$ldap_errname($value)\""
|
1999-08-03 15:23:03 +08:00
|
|
|
}
|
|
|
|
puts "\n};"
|
|
|
|
puts "#define LDAPTCL_MAXERR\t$value"
|
|
|
|
}
|
|
|
|
|
|
|
|
#cmdtrace on
|
|
|
|
if !$tcl_interactive {
|
|
|
|
genstrings [lindex $argv 0]
|
|
|
|
}
|