-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcss_js.py
205 lines (166 loc) · 5.52 KB
/
css_js.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
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
#coding:utf-8
import _env
from os.path import join, dirname, abspath, exists
from os import walk, mkdir, remove, makedirs
from collections import defaultdict
from hashlib import md5
from glob import glob
from base64 import urlsafe_b64encode
import envoy
import zweb
import os
from tempfile import mktemp
from config import HOST_CSS_JS
#, JS_CONST
from json import dumps
#from misc.config.cid import CID
#
#
#with open(join(_env.PREFIX, "js/%s"%JS_CONST[0]),"w") as const:
# result = dict((k,v) for k,v in CID.__dict__.iteritems() if k[0]!="_")
# const.write("CID = %s\n"%dumps(result, indent=4))
# const.write("CONST = %s"%dumps(JS_CONST[1],indent=4))
BULID = join(_env.PREFIX, 'build')
BULID_EXIST = set(glob(BULID+'/*'))
PATH2HASH = {}
if not exists(BULID):
mkdir(BULID)
def dirwalk(dirname):
base = join(_env.PREFIX, dirname)
merge = []
file = []
suffix = '.%s'%dirname
for dirpath, dirnames, filenames in walk(base, followlinks=True):
for i in filenames:
path = abspath(join(dirpath, i))
if i == 'merge.conf':
merge.append((path, merge_conf(path, base)))
if i.endswith(suffix):
file.append(path)
return file , merge
def merge_conf(file, base):
ft = defaultdict(list)
p = None
dirpath = dirname(file)
with open(file) as f:
for line in f:
line = line.strip()
if line.startswith('#') or not line:
continue
if line[0] == '/':
path = base+line
else:
path = join(dirpath, line)
if line.endswith(':'):
p = path[:-1].strip()
elif line and p:
ft[p].append(path)
return ft
#@import url(ctrl/main.css);
#@import url(ctrl/zsite.css);
#@import url(ctrl/feed.css);
def merge_css( src_list):
result = [ ]
for i in src_list:
result.append("""@import url(%s);"""%(i[len(_env.PREFIX)+4:]))
return result
def merge_js( src_list):
result = [
'''function LOAD(js){ document.write('<script src="'+js+'"></'+"script>") }'''
]
for i in src_list:
result.append("""LOAD('http://%s/js%s')"""%( HOST_CSS_JS, i[len(_env.PREFIX)+3:]))
return result
def run(suffix):
file_list , merge_list = dirwalk(suffix)
file_set = set(file_list)
to_merge = defaultdict(list)
for merge_conf, merge in merge_list:
for to_file, src_list in merge.iteritems():
if to_file in file_set:
file_set.remove(to_file)
for i in src_list:
if exists(i):
to_merge[to_file].append(i)
else:
print merge_conf , 'ERROR'
print '\t', i , 'NOT EXIST'
if suffix == 'css':
merger = merge_css
cmd = 'java -jar %s --charset=utf-8 --type css -o %%s %%s'% join(dirname(abspath(zweb.__file__)), 'utils/yuicompressor.jar')
else:
merger = merge_js
cmd = 'uglifyjs -nc -o %s %s '
for i in file_set:
base = join(_env.PREFIX, suffix)
with open(i) as infile:
hash = hash_name(infile.read(), i)
path = join(BULID, hash)+'.'+suffix
if path not in BULID_EXIST:
t = cmd%(path, i)
print t
envoy.run(t)
for to_file, src_list, in to_merge.iteritems():
dirpath = dirname(to_file)
if not exists(dirpath):
makedirs(dirpath)
r = merger( src_list)
with open(to_file, 'w') as to:
r = '\n'.join(r)
to.write(r)
r = []
for i in src_list:
with open(join(BULID, PATH2HASH[i])) as t:
r.append(t.read())
r = '\n'.join(r)
hash = hash_name(r, to_file)
path = join(BULID, hash)+'.'+suffix
#print path
if path not in BULID_EXIST:
tmp = mktemp()
with open(tmp, 'w') as f:
f.write(r)
t = cmd%(path, tmp)
print t
envoy.run(t)
def hash_name(content, path):
hash = urlsafe_b64encode(md5(content).digest()).rstrip('=')
PATH2HASH[path] = hash+'.'+path.rsplit('.', 1)[-1]
return hash
run('css')
run('js')
for i in BULID_EXIST-set(BULID+'/'+i for i in PATH2HASH.itervalues()):
if i.endswith('.css') or i.endswith('.js'):
print 'remove', i
remove(i)
init = defaultdict(list)
for file_name, hash in PATH2HASH.iteritems():
dirname, file_name = file_name[len(_env.PREFIX)+1:].split('/', 1)
init[dirname].append(( file_name, hash ))
for suffix, flist in init.iteritems():
with open(join(_env.PREFIX, suffix, '_hash_.py'), 'w') as h:
h.write("""#coding:utf-8\n
import _env
__HASH__ = {
""")
for name, hash in flist:
h.write(
""" "%s" : '%s', #%s\n"""%(
name,
hash,
name.rsplit('.', 1)[0].replace('.', '_').replace('-', '_').replace('/', '_')
)
)
h.write('}')
h.write("""
from config import DEBUG, HOST, HOST_CSS_JS
from os.path import dirname,basename
__vars__ = vars()
for file_name, hash in __HASH__.iteritems():
if DEBUG:
value = "http://%s/%s/%s"%(HOST_CSS_JS, basename(dirname(__file__)), file_name)
else:
value = "http://%s/build/%s"%(HOST_CSS_JS, hash)
name = file_name.rsplit('.', 1)[0].replace('.', '_').replace('-', '_').replace('/', '_')
__vars__[name] = value
""")