-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
jsonfmt.py
67 lines (49 loc) · 1.25 KB
/
jsonfmt.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" @todo add docstring """
# ### imports ###
from __future__ import (
absolute_import,
division,
print_function # ,
# unicode_literals
)
from jsoncomment import JsonComment
# from jsonschema import validate
import json
import os
import sys
def decode(s):
if sys.version_info >= (3, 0):
return s
for encoding in 'utf-8-sig', 'utf-16':
try:
return s.decode(encoding)
except UnicodeDecodeError:
continue
return s.decode('latin-1')
def touch(filename, mtime):
with open(filename, 'a+'):
pass
os.utime(filename, (mtime, mtime))
return 0
file = sys.argv[1]
print('Updating', file)
mtime = os.path.getmtime(file)
with open(file, 'r') as f:
jstr = f.read()
jstr_no_bom = decode(jstr)
parser = JsonComment(json)
json_data = parser.loads(jstr_no_bom)
new_data = json.dumps(
json_data, sort_keys=True, indent=4, separators=(',', ': '))
with open(file + '.tmp', 'wb') as f:
new_data = new_data.encode('utf-8')
new_data += b"\n"
f.write(new_data)
if os.path.isfile(file + '.bak'):
os.remove(file + '.bak')
os.rename(file, file + '.bak')
os.rename(file + '.tmp', file)
touch(file, mtime)
sys.exit(0)