amalgamate.py 3.0 KB

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