unicorn Ruby/Rack server user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
blob 9765f860dbc007f3a662f4a15e969d575911a58a 883 bytes (raw)
name: ext/unicorn_http/gperf.rb 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
#!/usr/bin/ruby -w
buf = STDIN.read # output of: gperf ext/unicorn_http/common_fields.gperf

# this is supposed to fail if it doesn't subsitute anything:
print buf.sub!(

# make sure all functions are static
/\nstruct \w+ \*\n(\w+_)?lookup/) {
  "\nstatic#$&"
}.

gsub!(
# gperf 3.0.x used "(int)(long)", 3.1 uses "(int)(size_t)",
#  input: {(int)(size_t)&((struct cf_pool_t *)0)->cf_pool_str3},
# output: {offsetof(struct cf_pool_t, cf_pool_str3)},
/{\(int\)\(\w+\)\&\(\((struct \w+) *\*\)0\)->(\w+)}/) {
  "{offsetof(#$1, #$2)}"
}.

# make sure everything is 64-bit safe and compilers don't truncate
gsub!(/\b(?:unsigned )?int\b/, 'size_t').

# This isn't need for %switch%, but we'll experiment with to see
# if it's necessary, or not.
# don't give compilers a reason to complain, (struct foo *)->name
# is size_t, so unused slots should be size_t:
gsub(/\{-1\}/, '{(size_t)-1}')

debug log:

solving 9765f86 ...
found 9765f86 in https://yhbt.net/unicorn.git/

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/unicorn.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).