| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #!/bin/bash
- #
- # Generate header insert for HTTP methods
- #
- # Copyright (c) 2015-2021 Karlson2k (Evgeny Grin) <[email protected]>
- #
- # Copying and distribution of this file, with or without modification, are
- # permitted in any medium without royalty provided the copyright notice
- # and this notice are preserved. This file is offered as-is, without any
- # warranty.
- wget -nv http://www.iana.org/assignments/http-methods/methods.csv -O methods.csv || exit
- echo Generating...
- echo '/**
- * @defgroup methods HTTP methods
- * HTTP methods (as strings).
- * See: http://www.iana.org/assignments/http-methods/http-methods.xml
- * Registry export date: '"$(date -u +%Y-%m-%d)"'
- * @{
- */
- /* Main HTTP methods. */' > header_insert_methods.h && \
- gawk -e 'BEGIN {FPAT = "([^,]*)|(\"[^\"]+\")"}
- FNR > 1 {
- gsub(/^\[|^"\[|\]"$|\]$/, "", $4)
- gsub(/\]\[/, "; ", $4)
- if (substr($4, 1, 26) == "RFC-ietf-httpbis-semantics") {
- if ($2 == "yes")
- { safe_m = "Safe. " }
- else
- { safe_m = "Not safe." }
- if ($3 == "yes")
- { indem_m = "Idempotent. " }
- else
- { indem_m = "Not idempotent." }
- print "/* " safe_m " " indem_m " " $4 ". */"
- mthd = gensub(/\*/, "ASTERISK", "g", $1)
- mthd = gensub(/[^a-zA-Z0-9_]/, "_", "g", mthd)
- printf ("%-32s \"%s\"\n", "#define MHD_HTTP_METHOD_" toupper(mthd), $1)
- }
- }' methods.csv >> header_insert_methods.h && \
- echo '
- /* Additional HTTP methods. */' >> header_insert_methods.h && \
- gawk -e 'BEGIN {FPAT = "([^,]*)|(\"[^\"]+\")"}
- FNR > 1 {
- gsub(/^\[|^"\[|\]"$|\]$/, "", $4)
- gsub(/\]\[/, "; ", $4)
- if (substr($4, 1, 26) != "RFC-ietf-httpbis-semantics") {
- if ($2 == "yes")
- { safe_m = "Safe. " }
- else
- { safe_m = "Not safe." }
- if ($3 == "yes")
- { indem_m = "Idempotent. " }
- else
- { indem_m = "Not idempotent." }
- print "/* " safe_m " " indem_m " " $4 ". */"
- mthd = gensub(/\*/, "ASTERISK", "g", $1)
- mthd = gensub(/[^a-zA-Z0-9_]/, "_", "g", mthd)
- printf ("%-38s \"%s\"\n", "#define MHD_HTTP_METHOD_" toupper(mthd), $1)
- }
- }' methods.csv >> header_insert_methods.h && \
- echo OK && \
- rm methods.csv || exit
|