amalgamate.py 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # This Source Code Form is subject to the terms of the Mozilla Public
  2. # License, v. 2.0. If a copy of the MPL was not distributed with this
  3. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. from __future__ import print_function
  5. import re
  6. import argparse
  7. import os.path
  8. import io
  9. parser = argparse.ArgumentParser()
  10. parser.add_argument('version', help='file version')
  11. parser.add_argument('outfile', help='outfile with extension .c/.h')
  12. parser.add_argument('inputs', nargs='*', action='store', help='input filenames')
  13. args = parser.parse_args()
  14. outname = args.outfile.split("/")[-1]
  15. is_c = False
  16. if outname[-2:] == ".c":
  17. is_c = True
  18. pos = outname.find(".")
  19. if pos > 0:
  20. outname = outname[:pos]
  21. include_re = re.compile("^#include (\".*\").*$")
  22. guard_re = re.compile("^#(?:(?:ifndef|define) [A-Z_]+_H_|endif /\* [A-Z_]+_H_ \*/|endif // [A-Z_]+_H_)")
  23. print ("Starting amalgamating file "+ args.outfile)
  24. file = io.open(args.outfile, 'w')
  25. file.write(u"""/* THIS IS A SINGLE-FILE DISTRIBUTION CONCATENATED FROM THE OPEN62541 SOURCES
  26. * visit http://open62541.org/ for information about this software
  27. * Git-Revision: %s
  28. */
  29. /*
  30. * Copyright (C) 2014-2016 the contributors as stated in the AUTHORS file
  31. *
  32. * This file is part of open62541. open62541 is free software: you can
  33. * redistribute it and/or modify it under the terms of the Mozilla Public
  34. * License v2.0 as stated in the LICENSE file provided with open62541.
  35. *
  36. * open62541 is distributed in the hope that it will be useful, but WITHOUT ANY
  37. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  38. * A PARTICULAR PURPOSE.
  39. */\n\n""" % args.version)
  40. if is_c:
  41. file.write(u'''#ifndef UA_DYNAMIC_LINKING_EXPORT
  42. # define UA_DYNAMIC_LINKING_EXPORT
  43. #endif
  44. #include "%s.h"
  45. ''' % outname)
  46. else:
  47. file.write(u'''#ifndef %s
  48. #define %s
  49. #ifdef __cplusplus
  50. extern "C" {
  51. #endif\n''' % (outname.upper() + u"_H_", outname.upper() + u"_H_") )
  52. for fname in args.inputs:
  53. with io.open(fname, encoding="utf8") as infile:
  54. file.write(u"\n/*********************************** amalgamated original file \"" + fname + u"\" ***********************************/\n\n")
  55. print ("Integrating file '" + fname + "'...", end=""),
  56. for line in infile:
  57. inc_res = include_re.match(line)
  58. guard_res = guard_re.match(line)
  59. if not inc_res and not guard_res:
  60. file.write(line)
  61. print ("done."),
  62. if not is_c:
  63. file.write(u'''
  64. #ifdef __cplusplus
  65. } // extern "C"
  66. #endif
  67. #endif /* %s */\n''' % (outname.upper() + u"_H_"))
  68. file.close()
  69. print ("The size of "+args.outfile+" is "+ str(os.path.getsize(args.outfile))+" Bytes.")