summaryrefslogtreecommitdiffstats
path: root/sig2code.awk
blob: d6bdb0da59542d88008c09a36a4739c33099db52 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
BEGIN {
    FS = "[ \t]*->[ \t]*";

    #read in codes
    while (getline < "sig2code.txt")
    {
        sub(/^[ \t]*/, ""); 
        if (NF < 2)
            continue;

        #print $1, $2
        sigmap[$2] = $1
    }

    close("sig2code.txt");

    FS = "[ \t]*,[ \t]*"; 

    print "/* Include in your C module */";
    print "static PY_SIGNAL_SPEC_REC py_sigmap[] = {";
}

function match_type(t)
{
    for (type in sigmap)
    {
        if (index(t, type) != 0)
            return sigmap[type];
    }

    return "?";
}

$1 ~ /^[ \t]*"/ && $1 !~ /"script error"/ { 
    sub(/^[ \t]*/, ""); 

    signal = $1
    if (signal ~ /.*<cmd>$/)
    {
        varsig = 1;
        sub(/<cmd>/, "", signal);
    }
    else
        varsig = 0;

    args = "";
    for (i = 2; i <= NF; i++)
    {
        args = args""match_type($i);
    }

    printf("    {%s, \"%s\", 0, 0, %d},\n", signal, args, varsig);
}

END {
    print "    {NULL}" ;
    print "};";
    print "";
    print "#define py_sigmap_len() (sizeof(py_sigmap) / sizeof(py_sigmap[0]) - 1)";
}