#!/usr/bin/env python3 # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. from __future__ import print_function import argparse from io import open parser = argparse.ArgumentParser() parser.add_argument('statuscodes', help='path/to/Opc.Ua.StatusCodes.csv') parser.add_argument('outfile', help='outfile w/o extension') args = parser.parse_args() rows = [] with open(args.statuscodes, mode="rt", encoding='utf8') as f: lines = f.readlines() for l in lines: rows.append(tuple(l.strip().split(','))) fh = open(args.outfile + ".h", "wt", encoding='utf8') fc = open(args.outfile + ".c", "wt", encoding='utf8') def printh(string): print(string, end=u'\n', file=fh) def printc(string): print(string, end=u'\n', file=fc) ######################### # Print the header file # ######################### printh(u'''/** .. _statuscodes: * * StatusCodes * =========== * * StatusCodes are extensively used in the OPC UA protocol and in the open62541 * API. They are represented by the :ref:`statuscode` data type. The following * definitions are autogenerated from the ``Opc.Ua.StatusCodes.csv`` file provided * with the OPC UA standard. */ /* These StatusCodes are manually generated. */ #define UA_STATUSCODE_INFOTYPE_DATAVALUE 0x00000400 #define UA_STATUSCODE_INFOBITS_OVERFLOW 0x00000080 ''') for row in rows: printh(u"/* %s */\n#define UA_STATUSCODE_%s %s\n" % (row[2][1:-1], row[0].upper(), row[1])) printh(u'''/* Depending on the version of the schema, the following might be already defined: */ #ifndef UA_STATUSCODE_GOOD # define UA_STATUSCODE_GOOD 0x00000000 #endif #ifndef UA_STATUSCODE_UNCERTAIN # define UA_STATUSCODE_UNCERTAIN 0x40000000 #endif #ifndef UA_STATUSCODE_BAD # define UA_STATUSCODE_BAD 0x80000000 #endif ''') ######################### # Print the source file # ######################### count = 2 + len(rows) printc(u'''/********************************** * Autogenerated -- do not modify * **********************************/ #include typedef struct { UA_StatusCode code; const char *name; } UA_StatusCodeName; #ifndef UA_ENABLE_STATUSCODE_DESCRIPTIONS static const char * emptyStatusCodeName = ""; const char * UA_StatusCode_name(UA_StatusCode code) { return emptyStatusCodeName; } #else static const size_t statusCodeDescriptionsSize = %i; static const UA_StatusCodeName statusCodeDescriptions[%i] = { {UA_STATUSCODE_GOOD, \"Good\"},''' % (count, count)) for row in rows: printc(u" {UA_STATUSCODE_%s, \"%s\"}," % (row[0].upper(), row[0])) printc(u''' {0xffffffff, "Unknown StatusCode"} }; const char * UA_StatusCode_name(UA_StatusCode code) { for (size_t i = 0; i < statusCodeDescriptionsSize; ++i) { if (UA_StatusCode_isEqualTop(statusCodeDescriptions[i].code,code)) return statusCodeDescriptions[i].name; } return statusCodeDescriptions[statusCodeDescriptionsSize-1].name; } #endif''') fc.close() fh.close()