-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadas.py
More file actions
673 lines (454 loc) · 22.8 KB
/
adas.py
File metadata and controls
673 lines (454 loc) · 22.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
#################### Disabling Byte Code Generation ####################
import sys
sys.dont_write_bytecode = True
#################### Application Imports ####################
from getopt import getopt, GetoptError
from os import path
from re import compile, DOTALL, Pattern, RegexFlag, search, VERBOSE
from typing import List, Dict, Optional
from xml.etree import ElementTree
from xml.etree.ElementTree import parse, ParseError, fromstring
#################### Constants ####################
# The current release of ADAS (as it stands, this is a pre-release).
SCRIPT_VERSION: str = "v0.0.1-pre-release"
# Used for re.search
FLAGS: RegexFlag = VERBOSE | DOTALL
# The default/fallback value for fillColor="X" if it cannot be parsed/converted.
BLACK_HEX: str = "#000000"
# The regex pattern used by fc_is_already_hex()
# After multiple implementations, regex has been found to be more reliable than using base 16/32 conversion.
HEX_COLOR_PATTERN: Pattern = compile(r'^#([A-Fa-f0-9]{3}|[A-Fa-f0-9]{4}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{8})$')
# The root namespace for the converted SVG file.
SVG_NAMESPACE: str = "http://www.w3.org/2000/svg"
ANDROID_NAMESPACE: str = "{http://schemas.android.com/apk/res/android}"
# Prefix strings used during color resolution of non-16-bit integers.
SDK_COLOR_PREFIX = "@android:color/"
USER_MADE_COLOR_PREFIX = "@color/"
# A collection of built-in color names from the Android SDK and their associated Hex Values.
# Pulled from https://developer.android.com/reference/android/graphics/Color#constants_1
# The alpha channels were removed for 16 bit integer compatibility.
GRAPHICS_COLOR_MAP: Dict[str, str] = {
"black": BLACK_HEX,
"blue": "#0000FF",
"cyan": "#00FFFF",
"dkgray": "#444444",
"gray": "#888888",
"green": "#00FF00",
"ltgray": "#CCCCCC",
"magenta": "#FF00FF",
"red": "#FF0000",
"transparent": "#00000000",
"white": "#FFFFFF",
"yellow": "#FFFF00"
}
#################### Required User Input ###################
# The path to the VectorDrawable XML file that will be converted.
DRAWABLE_XML_FILEPATH: Optional[str] = None
# The path to the SVG that will be written upon a successful conversion.
OUTPUT_SVG_FILEPATH: Optional[str] = None
#################### Optional User Input/States ####################
# The path to the colors.xml file.
# This file contains a collection of color properties that may be used for more complex DrawableVector.
#
# This collection is broken down as follows:
# The property name (Resource ID) is the "name" attribute
# The property value is usually a Hex Value.
COLORS_XML_FILEPATH: Optional[str] = None
# The path to the strings.xml file.
# This file contains a collection of string resources that may be used for more complex DrawableVector.
#
# This collection is broken down as follows:
# The property name (Resource ID) is the "name" attribute
# The property value is usually Path Data.
STRINGS_XML_FILEPATH: Optional[str] = None
# This state variable is set to True if the flags "-c" or "--colors" are passed.
USING_COLOR_RESOURCES: bool = False
# This state variable is set to True if the flags "-s" or "--strings" are passed.
USING_STRING_RESOURCES: bool = False
# The map will be populated using COLORS_XML_FILE if USING_COLOR_RESOURCES is set to True.
COLOR_RESOURCES_MAP: Dict[str, str] = {}
# The map will be populated using STRINGS_XML_FILEPATH if USING_STRING_RESOURCES is set to True.
STRING_RESOURCES_MAP: Dict[str, str] = {}
################### Input Mutatation Functions ###################
def set_color_resource_map() -> None:
global COLOR_RESOURCES_MAP
try:
COLOR_RESOURCES_MAP = load_color_map_xml(COLORS_XML_FILEPATH)
except Exception as e:
print("[WARNING]: A fatal error occured while loading COLORS_XML_FILEPATH.")
print(f"[ERROR]: {e}")
exit(1)
def set_string_resource_map() -> None:
global STRING_RESOURCES_MAP
try:
STRING_RESOURCES_MAP = load_string_map_xml(STRINGS_XML_FILEPATH)
except Exception as e:
print("[WARNING]: A fatal error occured while loading STRING_RESOURCES_MAP.")
print(f"[ERROR]: {e}")
exit(1)
#################### Formatting Helper Functions ####################
def expand_fc_if_needed(fill_color: str) -> str:
"""
If a fill_color is only 3 or 4 characters, it is missing one of each R, G, B, and potentially A (Alpha).
An expanded fill_color will be returned if the length is 3 or 4, otherwise, the original value is returned.
"""
if not fill_color.startswith("#"):
return fill_color
length = len(fill_color)
red: Optional[str] = None
green: Optional[str] = None
blue: Optional[str] = None
alpha: Optional[str] = None
# Expanding 3 char hex sequences to 6 char sequences.
# "#RGB" -> "#RRBBGG"
if length == 4:
red = fill_color[1]
green = fill_color[2]
blue = fill_color[3]
return f"#{red*2}{green*2}{blue*2}"
# Expanding 4 char hex sequences to 8 char hex sequences
# Noteably, this involves flipping the alpha channel, from the first two chars of the sequence to the last two.
# Without this, previous implementations had transparency and color mismatching issues.
# Pulled from: https://observablehq.com/@dralletje/android-xml-to-svg#cell-203
elif length == 5:
alpha = fill_color[1]
red = fill_color[2]
green = fill_color[3]
blue = fill_color[4]
return f"#{red*2}{green*2}{blue*2}{alpha*2}"
# Much 4 char hex sequences, 8 char sequences also require alpha channel flipping.
# There are other aspects of SVG compliance that were covered in the guide above, however, none apply here.
elif length == 9:
alpha = fill_color[1] + fill_color[2]
red = fill_color[3] + fill_color[4]
green = fill_color[5] + fill_color[6]
blue = fill_color[7] + fill_color[8]
return f"#{red}{green}{blue}{alpha}"
# Falling back to original input, since it can't safely be expanded.
return fill_color
def fc_has_color_reference(fill_color: str) -> bool:
"""Checks if the current fill color is a color reference, if so, additional resolution is required."""
if not isinstance(fill_color, str):
return False
# Checking if a user defined color prefix is present.
elif fill_color.startswith(USER_MADE_COLOR_PREFIX):
return True
# Checking if a built-in SDK color is present.
elif fill_color.startswith(SDK_COLOR_PREFIX):
return True
return False
def fc_is_already_hex(fill_color: str) -> bool:
"""Checking if a hex sequence is valid PRIOR to any conversion attempts, ultimately to save cpu cycles."""
return True if HEX_COLOR_PATTERN.fullmatch(fill_color) else False
def has_aosp_copyright(contents: str) -> bool:
"""Checking if the provided contents contains the Android Open Source Project (AOSP)'s Copyright."""
PATTERN = r"Copyright\s+\(C\)\s+\d{4}.*?The\s+Android\s+Open\s+Source\s+Project"
REGEX = compile(PATTERN, FLAGS)
return REGEX.search(contents) is not None
def has_xml_header(contents: str) -> bool:
"""Checking if the provided contents contains the expected XML header attribute."""
return contents.startswith('<?xml version="1.0" encoding="utf-8"?>')
def pd_has_string_reference(path_data: str) -> bool:
"""Checks if the current path data is a string reference, if so, additional resolution is required."""
if not isinstance(path_data, str):
return False
return False if not path_data else "@string/" in path_data
def check_drawable_vector_format(drawable_vector_contents: str):
"""
Both of the checks below are non-fatal and serve primarily for debugging purposes.
It is entirely possible to parse a raw <vector>...</vector> however:
The AOSP releases standardized DrawableVectors here:
https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:vectordrawable/vectordrawable/src/androidTest/res/
"""
if not has_xml_header(drawable_vector_contents):
print(f"[WARNING]: The XML header is missing for: {DRAWABLE_XML_FILEPATH}")
print("[WARNING]: This may impact the result of the current conversion.")
print("[INFO]: Attempting to continue..")
if not has_aosp_copyright(drawable_vector_contents):
print("[WARNING]: The Android Open Source Project (AOSP) copyright was not located.")
print("[WARNING]: This may impact the result of the current conversion.")
print("[INFO]: Attempting to continue..")
#################### File Parsing Functionality ####################
def load_drawable_vector_xml(drawable_vector_path: str) -> str:
"""Parses the DrawableVector XML and returns its contents as a string, or exits on an exception."""
try:
with open(drawable_vector_path, "r", encoding="utf-8") as file:
return file.read()
except Exception as e:
print("An exception occured while trying to read the provided XML file.")
print(f"Error: {e}")
exit(1)
def load_color_map_xml(colors_xml_path: str) -> Dict[str, str]:
"""Parses colors.xml into a Dict[str, str] or exits on an exception."""
color_map = {
"": BLACK_HEX # Used as the default return value if resolution fails.
}
tree: Optional[ElementTree] = None
# Parsing the colors.xml file into an ElementTree
try:
tree = parse(colors_xml_path)
except Exception as e:
print("[WARNING]: Unable to load the color map for the specified file.")
print(f"[ERROR]: {e}")
exit(1)
root = tree.getroot()
# Iterating through the resolved color elements within colors.xml
for color in root.findall('color'):
color_map[color.get('name')] = color.text
return color_map
def load_string_map_xml(string_xml_path: str) -> Dict[str, str]:
"""Parses strings.xml into a Dict[str, str] or exits on an exception."""
string_map = {}
tree: Optional[ElementTree] = None
# Parsing the strings.xml file into an ElementTree
try:
tree = parse(string_xml_path)
except Exception as e:
print("[WARNING]: Unable to load the color map for the specified file.")
print(f"[ERROR]: {e}")
exit(1)
root = tree.getroot()
# Iterating through the resolved values within strings.xml
for string in root.findall('string'):
string_map[string.get('name')] = string.text
return string_map
#################### Resource Resolution ####################
def resolve_color_reference(color_reference_key: str) -> str:
"""
Takes a resolved color resource from colors.xml as input.
If the referenced string is already in hex:
- The current value is returned without modifications.
If the referenced string is a color reference:
- It starts with either "@android:color/" or "@color/" (if user-defined)
- A lookup is performed on this key using COLOR_RESOURCES_MAP
"""
result: Optional[str] = None
# Removing the SDK prefix then returning the built-in color's equivalent Hex Code.
if color_reference_key.startswith(SDK_COLOR_PREFIX):
color_reference_key = color_reference_key.removeprefix(SDK_COLOR_PREFIX)
result = (GRAPHICS_COLOR_MAP or {}).get(color_reference_key)
# Removing the color resource prefix then returning the user-defined Hex Code representation.
elif color_reference_key.startswith(USER_MADE_COLOR_PREFIX):
color_reference_key = color_reference_key.removeprefix(USER_MADE_COLOR_PREFIX)
result = (COLOR_RESOURCES_MAP or {}).get(color_reference_key)
# Warning the user the resolution failed and ADAS will fallback to BLACK_HEX (#000000)
if not result:
print(f"[WARNING]: Could not locate the specified key '{color_reference_key}'.")
print(f"[INFO]: Falling back to '{BLACK_HEX}'")
return BLACK_HEX
# Ensuring the resolved resource value is a valid hex sequence.
# If the value is valid, it is returned, otherwise, BLACK_HEX is returned.
return result if fc_is_already_hex(result) else BLACK_HEX
def resolve_string_reference(string_reference_key: str) -> str:
"""
Takes a resolved string resource from string.xml as input.
A lookup is performed using STRING_RESOURCES_MAP.
"""
if not string_reference_key:
print(f"[WARNING]: An empty value was returned using the key '{string_reference_key}'.")
print("[WARNING]: This may cause the converted SVG to be malformed.")
return ""
# Ensuring the resolved path data value is not a NoneType.
# This avoids an incorrect insertion during conversion.
return (STRING_RESOURCES_MAP or {}).get(string_reference_key, "")
#################### Conversion/Output Functionality ####################
def remove_units_from_numeric_string(numeric_string: str):
"""
Sanitizing numeric strings, namely the height and width properties that usually contain units.
While modern browsers will usually default to pixels when faced with an unsupported unit, this ensures broad compatibility.
"""
return (numeric_string
.replace("dp", "")
.replace("px", "")
.replace("dip", "")
)
def parse_nodes_from_xml_paths(paths: List[Dict[str, str]]) -> List[str]:
"""
Parses each path node from the provided list of paths.
"""
path_elements = []
for path_node in paths:
final_fill_color: str = path_node.get("fillColor") or BLACK_HEX
final_path_data: str = path_node.get("pathData") or ""
final_fill_type: str = path_node.get("fillType") or ""
# Handling color references via string resolution.
if fc_has_color_reference(final_fill_color):
final_fill_color = resolve_color_reference(final_fill_color)
# Handling string references via string resolution.
if pd_has_string_reference(final_path_data):
string_reference_key = final_path_data.removeprefix("@string/")
final_path_data = resolve_string_reference(string_reference_key)
# Performing a conditional expansion of the final color, if required.
final_fill_color = expand_fc_if_needed(final_fill_color)
# Building and appending each path element at the end of the current iteration.
path_element = '<path fill="' + final_fill_color + '"'
# Conditionally appending the result from the conversion "fillColor=" to "fill-rule=", if present.
# Unlike the other optional arguments, the value for the SVG fill-rule attribute must be all lowercase.
# Per: https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Attribute/fill-rule
if final_fill_type:
path_element += ' fill-rule="' + final_fill_type.lower() + '"'
# Conditionally appending the result from the conversion "strokeColor=" to "stoke=", if present.
if path_node.get("strokeColor"):
path_element += ' stroke="' + path_node.get("strokeColor") + '"'
# Conditionally appending the result from the conversion "strokeColor=" to "stoke=", if present.
if path_node.get("strokeWidth"):
path_element += ' stroke-width="' + path_node.get("strokeWidth") + '"'
# An SVG is nothing if not for path data, so this is an expected value.
path_element += ' d="' + final_path_data + '"/>'
# Appending the concatenated element and continuing with the current iterator.
path_elements.append(path_element)
return path_elements
def write_output_svg(metadata_attributes: Dict[str, str], paths: List[Dict[str, str]]):
"""
Used in convert_drawable_to_svg() to output the contents of the converted SVG.
"""
# This list holds all <path> elements that were parsed from the input XML.
path_elements: List[str] = parse_nodes_from_xml_paths(paths)
# This could included in svg_contents directly, but for maintainability, it is declared as a standalone variable.
path_data: str = "\n".join(path_elements)
# Sanitizing the SVG height/width, alongside the viewbox height/width to ensure broad compatibility with older browsers.
height: str = remove_units_from_numeric_string(
metadata_attributes.get('height', '0')
)
width: str = remove_units_from_numeric_string(
metadata_attributes.get('width', '0')
)
viewport_width: str = remove_units_from_numeric_string(
metadata_attributes.get('viewportWidth', '0')
)
viewport_height: str = remove_units_from_numeric_string(
metadata_attributes.get('viewportHeight', '0')
)
view_box: str = f"0 0 {viewport_width} {viewport_height}"
svg_content: str = f'''
<svg xmlns="{SVG_NAMESPACE}" height="{height}" width="{width}" viewBox="{view_box}">
{path_data}
</svg>'''.replace(" ", "")
try:
with open(OUTPUT_SVG_FILEPATH, "w", encoding="utf-8") as f:
f.write(svg_content)
print(f"[SUCCESS]: Converted {DRAWABLE_XML_FILEPATH} to: {OUTPUT_SVG_FILEPATH}")
except Exception as e:
print(f"[WARNING]: Unable to export: {OUTPUT_SVG_FILEPATH}")
print(f"[ERROR]: {e}")
def convert_drawable_to_svg():
"""Handles the conversion operations from XML to SVG."""
if USING_COLOR_RESOURCES:
set_color_resource_map()
if USING_STRING_RESOURCES:
set_string_resource_map()
drawable_vector_contents: Optional[str] = load_drawable_vector_xml(DRAWABLE_XML_FILEPATH)
if drawable_vector_contents is None:
exit(1)
check_drawable_vector_format(drawable_vector_contents)
try:
xml_root = fromstring(drawable_vector_contents)
except ParseError as e:
print("[ERROR]: Unable to parse the specified file's contents using ElementTree.")
print("[INFO]: If this issue persists with an official AOSP vector, please make a bug report using the url below.")
print("[LINK]: https://github.com/Static-Codes/AndroidDrawableToSVG/issues")
print(f"[ERROR]: {e}")
exit(1)
# These metadata attributes are to be expected in a properly formatted, AOSP-licensed DrawableVector.
metadata_attributes = {
"height": xml_root.get(f"{ANDROID_NAMESPACE}height", ""),
"width": xml_root.get(f"{ANDROID_NAMESPACE}width", ""),
"viewportHeight": xml_root.get(f"{ANDROID_NAMESPACE}viewportHeight", ""),
"viewportWidth": xml_root.get(f"{ANDROID_NAMESPACE}viewportWidth", "")
}
# This will be populated assuming root.findall() locates <path> elements within the XML root namespace.
nodes = []
# Iterating through each of the path nodes in the DrawableVector XML's root namespace.
# In hindsight it was very much a mistake to use Regex for this initially.
for node in xml_root.findall(".//path"):
nodes.append({
"fillColor": node.get(f"{ANDROID_NAMESPACE}fillColor", ""),
"fillType": node.get(f"{ANDROID_NAMESPACE}fillType", ""),
"strokeColor": node.get(f"{ANDROID_NAMESPACE}strokeColor", ""),
"strokeWidth": node.get(f"{ANDROID_NAMESPACE}strokeWidth", ""),
"pathData": node.get(f"{ANDROID_NAMESPACE}pathData", "")
})
# Informing the end-user of a non-fatal error, mostly for debugging purposes.
if not nodes:
print(f"[WARNING]: No <path> elements were found in {DRAWABLE_XML_FILEPATH}.")
print("[WARNING]: This will likely impact the quality of the converted SVG.")
# Finally, the output operation is complete (assuming this doesnt raise an exception.)
write_output_svg(metadata_attributes, nodes)
#################### Entry Functions ####################
def usage():
print("AndroidDrawableToSVG - A pure python utility to convert an AOSP released DrawableVector to an SVG!\n")
print("Usage: adas.py [OPTIONS] \n")
print("OPTIONS:\n")
print(
"1. [ -h | --help ]\n"
"\tDisplays this message.\n"
)
print(
"2. [ -d <drawable.xml> | --drawable=<drawable> ]\n"
"\tSpecifies the drawable you wish to convert to an SVG.\n"
)
print(
"3. [ -o <output.svg> | --output=<output.svg> ]\n"
"\tSpecifies the filename to be used for the converted SVG.\n"
)
print(
"4. [ -v <version> | --version=<version> ]\n"
"\tPrints the current version of ADAS.\n"
)
def set_args(argv: List[str]):
try:
opts, _ = getopt(
argv[1:],
"d:o:c:s:v:h",
["drawable=", "output=", "colors=", "strings=", "version=", "help"]
)
except GetoptError:
usage()
exit(2)
for opt, arg in opts:
if opt == "-h" or opt == "--help":
usage()
exit(1)
# Handles both "-d <drawable.xml>" and "--drawable=<drawable.xml>"
elif opt == "-d" or opt == "--drawable":
global DRAWABLE_XML_FILEPATH
DRAWABLE_XML_FILEPATH = path.expanduser(arg)
print("Starting conversion using: {}".format(DRAWABLE_XML_FILEPATH))
# Handles both "-o <output.svg>" and "--output=<output.svg>"
elif opt == "-o" or opt == "--output":
global OUTPUT_SVG_FILEPATH
OUTPUT_SVG_FILEPATH = path.expanduser(arg)
# Handles both "-c <colors.xml>" and "--colors=<colors.xml>"
elif opt == "-c" or opt == "--colors":
global COLORS_XML_FILEPATH
COLORS_XML_FILEPATH = path.expanduser(arg)
global USING_COLOR_RESOURCES
USING_COLOR_RESOURCES = True
# Handles both "-s <strings.xml>" and "--strings=<strings.xml>"
elif opt == "-s" or opt == "--strings":
global STRINGS_XML_FILEPATH
STRINGS_XML_FILEPATH = path.expanduser(arg)
global USING_STRING_RESOURCES
USING_STRING_RESOURCES = True
# Handles both "adas.py -v" and "adas.py --version"
elif opt == "-v" or opt == "--version":
print(SCRIPT_VERSION)
exit(1)
def main(argv: List[str]):
global DRAWABLE_XML_FILEPATH
global OUTPUT_SVG_FILEPATH
set_args(argv)
# Update this in the future to use argparse
required_args = {
"DRAWABLE": (DRAWABLE_XML_FILEPATH, "-d", "--drawable", "path to the drawable you wish to use"),
"OUTPUT": (OUTPUT_SVG_FILEPATH, "-o", "--output", "output path for your converted SVG")
}
for name, (value, short_flag, long_flag, description) in required_args.items():
if value is None:
print(f"Error: Please specify the {description}.")
print(f"This can be done using the {short_flag} <{name.lower()}> or {long_flag} <{name.lower()}> flag.")
print("For more information, please use:\n\tadas.py -h")
exit(1)
convert_drawable_to_svg()
if __name__ == "__main__":
main(sys.argv)