orxport.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. #!/usr/bin/env python3
  2. import getopt
  3. import os
  4. import sys
  5. import emoji
  6. import export
  7. import jsonutils
  8. import log
  9. import manifest
  10. VERSION = '0.1.0'
  11. HELP = f'''orxporter {VERSION}
  12. USAGE: orxport.py [options...]
  13. OPTIONS:
  14. -h prints this help message
  15. -m PATH manifest file path (default: manifest)
  16. -i PATH input directory path (default: in)
  17. -o PATH output directory path (default: out)
  18. -f PATH_EXPR output naming system (default: %f/%s)
  19. -F FORMAT[,FORMAT...] output formats (default: svg)
  20. -e FILTER emoji filter
  21. -j FILE export JSON replica of directory structure
  22. -J FILE export JSON metadata for mutstd website
  23. -c disable ANSI color codes
  24. -q WIDTHxHEIGHT ensure source images have given size
  25. -t NUM number of worker threads (default: 1)
  26. OUTPUT FORMATS:
  27. svg
  28. png-SIZE'''
  29. def main():
  30. manifest_path = 'manifest'
  31. input_path = 'in'
  32. output_path = 'out'
  33. output_naming = '%f/%s'
  34. output_formats = ['svg']
  35. emoji_filter = []
  36. json_out = None
  37. web_out = None
  38. src_size = None
  39. num_threads = 1
  40. try:
  41. opts, _ = getopt.getopt(sys.argv[1:],
  42. 'hm:i:o:f:F:ce:j:J:q:t:',
  43. ['help'])
  44. for opt, arg in opts:
  45. if opt in ['-h', '--help']:
  46. print(HELP)
  47. sys.exit()
  48. elif opt == '-m':
  49. manifest_path = arg
  50. elif opt == '-i':
  51. input_path = arg
  52. elif opt == '-o':
  53. output_path = arg
  54. elif opt == '-f':
  55. output_naming = arg
  56. elif opt == '-F':
  57. output_formats = arg.split(',')
  58. elif opt == '-c':
  59. log.use_color = False
  60. elif opt == '-e':
  61. k, v = arg.split('=')
  62. v = v.split(',')
  63. emoji_filter.append((k, v))
  64. elif opt == '-j':
  65. json_out = arg
  66. elif opt == '-J':
  67. web_out = arg
  68. elif opt == '-q':
  69. t1, t2 = arg.split('x')
  70. src_size = int(t1), int(t2)
  71. elif opt == '-t':
  72. num_threads = int(arg)
  73. if num_threads <= 0:
  74. raise ValueError
  75. except Exception:
  76. print(HELP)
  77. sys.exit(2)
  78. try:
  79. log.out(f'Loading manifest file...', 36)
  80. m = manifest.Manifest(os.path.dirname(manifest_path),
  81. os.path.basename(manifest_path))
  82. log.out(f'{len(m.emoji)} emoji defined', 33, 4)
  83. filtered_emoji = [e for e in m.emoji if emoji.match(e, emoji_filter)]
  84. if emoji_filter:
  85. log.out(f'{len(filtered_emoji)} / {len(m.emoji)} '
  86. f'emoji match filter', 34, 4)
  87. if json_out:
  88. jsonutils.write_emoji(filtered_emoji, json_out)
  89. elif web_out:
  90. jsonutils.write_web(filtered_emoji, web_out)
  91. else:
  92. export.export(m, filtered_emoji, input_path, output_formats,
  93. os.path.join(output_path, output_naming), src_size,
  94. num_threads)
  95. except Exception as e:
  96. log.out(f'!!! {e}', 31)
  97. sys.exit(1)
  98. log.out('All done', 36)
  99. if __name__ == '__main__':
  100. main()