PY3: change shebang to python3 in source4/scripting/bin dir
[kai/samba-autobuild/.git] / source4 / scripting / bin / gen_ntstatus.py
1 #!/usr/bin/env python3
2
3 #
4 # Unix SMB/CIFS implementation.
5 #
6 # HRESULT Error definitions
7 #
8 # Copyright (C) Noel Power <noel.power@suse.com> 2014
9 #
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 #
23
24 import sys, os.path, io, string
25 from gen_error_common import parseErrorDescriptions, ErrorDef
26
27 def generateHeaderFile(out_file, errors):
28     out_file.write("/*\n")
29     out_file.write(" * Descriptions for errors generated from\n")
30     out_file.write(" * [MS-ERREF] http://msdn.microsoft.com/en-us/library/cc704588.aspx\n")
31     out_file.write(" */\n\n")
32     out_file.write("#ifndef _NTSTATUS_GEN_H\n")
33     out_file.write("#define _NTSTATUS_GEN_H\n")
34     for err in errors:
35         line = "#define %s NT_STATUS(%#x)\n" % (err.err_define, err.err_code)
36         out_file.write(line)
37     out_file.write("\n#endif /* _NTSTATUS_GEN_H */\n")
38
39 def generateSourceFile(out_file, errors):
40     out_file.write("/*\n")
41     out_file.write(" * Names for errors generated from\n")
42     out_file.write(" * [MS-ERREF] http://msdn.microsoft.com/en-us/library/cc704588.aspx\n")
43     out_file.write(" */\n")
44
45     out_file.write("static const nt_err_code_struct nt_errs[] = \n")
46     out_file.write("{\n")
47     for err in errors:
48         out_file.write("\t{ \"%s\", %s },\n" % (err.err_define, err.err_define))
49     out_file.write("{ 0, NT_STATUS(0) }\n")
50     out_file.write("};\n")
51
52     out_file.write("\n/*\n")
53     out_file.write(" * Descriptions for errors generated from\n")
54     out_file.write(" * [MS-ERREF] http://msdn.microsoft.com/en-us/library/cc704588.aspx\n")
55     out_file.write(" */\n")
56
57     out_file.write("static const nt_err_code_struct nt_err_desc[] = \n")
58     out_file.write("{\n")
59     for err in errors:
60         # Account for the possibility that some errors may not have descriptions
61         if err.err_string == "":
62             continue
63         out_file.write("\t{ N_(\"%s\"), %s },\n"%(err.err_string, err.err_define))
64     out_file.write("{ 0, NT_STATUS(0) }\n")
65     out_file.write("};")
66
67 def generatePythonFile(out_file, errors):
68     out_file.write("/*\n")
69     out_file.write(" * New descriptions for existing errors generated from\n")
70     out_file.write(" * [MS-ERREF] http://msdn.microsoft.com/en-us/library/cc704588.aspx\n")
71     out_file.write(" */\n")
72     out_file.write("#include <Python.h>\n")
73     out_file.write("#include \"python/py3compat.h\"\n")
74     out_file.write("#include \"includes.h\"\n\n")
75     out_file.write("static inline PyObject *ndr_PyLong_FromUnsignedLongLong(unsigned long long v)\n");
76     out_file.write("{\n");
77     out_file.write("\tif (v > LONG_MAX) {\n");
78     out_file.write("\t\treturn PyLong_FromUnsignedLongLong(v);\n");
79     out_file.write("\t} else {\n");
80     out_file.write("\t\treturn PyInt_FromLong(v);\n");
81     out_file.write("\t}\n");
82     out_file.write("}\n\n");
83     # This is needed to avoid a missing prototype error from the C
84     # compiler. There is never a prototype for this function, it is a
85     # module loaded by python with dlopen() and found with dlsym().
86     out_file.write("static struct PyModuleDef moduledef = {\n")
87     out_file.write("\tPyModuleDef_HEAD_INIT,\n")
88     out_file.write("\t.m_name = \"ntstatus\",\n")
89     out_file.write("\t.m_doc = \"NTSTATUS error defines\",\n")
90     out_file.write("\t.m_size = -1,\n")
91     out_file.write("};\n\n")
92     out_file.write("MODULE_INIT_FUNC(ntstatus)\n")
93     out_file.write("{\n")
94     out_file.write("\tPyObject *m;\n\n")
95     out_file.write("\tm = PyModule_Create(&moduledef);\n");
96     out_file.write("\tif (m == NULL)\n");
97     out_file.write("\t\treturn NULL;\n\n");
98     for err in errors:
99         line = """\tPyModule_AddObject(m, \"%s\", 
100                   \t\tndr_PyLong_FromUnsignedLongLong(NT_STATUS_V(%s)));\n""" % (err.err_define, err.err_define)
101         out_file.write(line)
102     out_file.write("\n");
103     out_file.write("\treturn m;\n");
104     out_file.write("}\n");
105
106 def transformErrorName( error_name ):
107     if error_name.startswith("STATUS_"):
108         error_name = error_name.replace("STATUS_", "", 1)
109     elif error_name.startswith("RPC_NT_"):
110         error_name = error_name.replace("RPC_NT_", "RPC_", 1)
111     elif error_name.startswith("EPT_NT_"):
112         error_name = error_name.replace("EPT_NT_", "EPT_", 1)
113     return "NT_STATUS_" + error_name
114
115 # Very simple script to generate files nterr_gen.c & ntstatus_gen.h.
116 # These files contain generated definitions.
117 # This script takes four inputs:
118 # [1]: The name of the text file which is the content of an HTML table
119 #      (e.g. the one found at http://msdn.microsoft.com/en-us/library/cc231200.aspx)
120 #      copied and pasted.
121 # [2]: The name of the output generated header file with NTStatus #defines
122 # [3]: The name of the output generated source file with C arrays
123 # [4]: The name of the output generated python file
124 def main ():
125     input_file = None;
126
127     if len(sys.argv) == 5:
128         input_file =  sys.argv[1]
129         gen_headerfile_name = sys.argv[2]
130         gen_sourcefile_name = sys.argv[3]
131         gen_pythonfile_name = sys.argv[4]
132     else:
133         print("usage: %s winerrorfile headerfile sourcefile pythonfile" % (sys.argv[0]))
134         sys.exit()
135
136     # read in the data
137     file_contents = open(input_file, "r")
138
139     errors = parseErrorDescriptions(file_contents, False, transformErrorName)
140
141     print("writing new header file: %s" % gen_headerfile_name)
142     out_file = open(gen_headerfile_name, "w")
143     generateHeaderFile(out_file, errors)
144     out_file.close()
145     print("writing new source file: %s" % gen_sourcefile_name)
146     out_file = open(gen_sourcefile_name, "w")
147     generateSourceFile(out_file, errors)
148     out_file.close()
149     print("writing new python file: %s" % gen_pythonfile_name)
150     out_file = open(gen_pythonfile_name, "w")
151     generatePythonFile(out_file, errors)
152     out_file.close()
153
154 if __name__ == '__main__':
155
156     main()