-
Notifications
You must be signed in to change notification settings - Fork 29
/
conv.py
62 lines (53 loc) · 1.56 KB
/
conv.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
from sys import argv, exit
from os import walk, chdir
import re
URL_TEMPLATE = 'http://docs.oracle.com/javame/config/cldc/ref-impl/midp2.0/jsr118/%s.html'
method_regexp = re.compile('<PRE>.{0,500}?\)</PRE>')
if len(argv) < 2:
exit()
root_path = argv[1]
chdir(root_path)
for directory, _, files in walk('.'):
for filename in files:
if filename.endswith('.js'):
#print(filename)
url = URL_TEMPLATE % (directory + '/' + filename[:-3])
print(url)
from urllib.request import urlopen
from urllib.error import HTTPError
docs = []
try:
request = urlopen(url)
docs = method_regexp.findall(str(request.read()))
except HTTPError:
print('ERROR')
#print(docs)
for index, value in enumerate(docs):
#print(value)
#print('*******')
value = re.sub(r'<[^<>]+>|\\r|\\n', '', value).strip();
value = re.sub(r' |\s+', ' ', value)
docs[index] = value
#args = len(value[value.find('('):value.find(')')].split(','))
content = ''
for line in open(directory + '/' + filename):
if 'function' in line:
parts = line.split('$')
#print(parts)
if len(parts) > 1:
comment = '\t/*\n\t * '
if not '_init' in line:
funcname = parts[1]
else:
funcname = filename[filename.rfind('/'):-3] + '('
for method_doc in docs:
if funcname in method_doc:
comment += method_doc
break
comment += '\n\t */\n'
content += comment
content += line
f = open(directory + '/' + filename, 'w')
f.write(content)
f.close()
#print(content)