forked from garveen/docphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docphp.py
783 lines (613 loc) · 25.3 KB
/
docphp.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
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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
import sublime
import sublime_plugin
import re
import os
import shutil
import tarfile
import webbrowser
import time
import urllib
from Default import symbol as sublime_symbol
from html.parser import HTMLParser
package_name = 'DocPHPManualer'
setting_file = package_name + '.sublime-settings'
docphp_languages = {}
currentView = False
currentSettings = None
openfiles = {}
entities = {
"iso": False,
"html": False
}
language = ''
downloading = False
def plugin_loaded():
global currentSettings, language, currentView
currentSettings = sublime.load_settings(setting_file)
language = currentSettings.get('language')
currentView = sublime.active_window().active_view()
docphpPath = getDocphpPath()
if not os.path.isdir(docphpPath + 'language'):
os.makedirs(docphpPath + 'language')
if not callable(sublime_symbol.symbol_at_point) or not callable(sublime_symbol.navigate_to_symbol):
sublime.error_message('Cannot find symbol_at_point from Default.sublime-package\n\nPlease restore the file which usually replaced by outdated localizations')
from package_control import events
if events.install(package_name) or not language:
currentView.run_command('docphp_checkout_language', {"is_init": True, "set_fallback": True})
def plugin_unloaded():
for k in openfiles:
try:
openfiles[k].close()
except Exception as e:
if getSetting('debug'):
print(e)
sublime.save_settings(setting_file)
from package_control import events
if events.remove(package_name):
if os.path.isdir(getDocphpPath()):
shutil.rmtree(getDocphpPath())
def getSetting(key):
return currentSettings.get(key)
def setSetting(key, value):
currentSettings.set(key, value)
sublime.save_settings(setting_file)
def getAllLanguages():
return sublime.decode_value(sublime.load_resource('Packages/' + package_name + '/languages.json'))
def getLanguageList(languageName=None, format='all', getAll=True):
if not getAll:
languageName = getSetting('languages')
if languageName == None:
dic = []
elif isinstance(languageName, str):
dic = [languageName]
else:
dic = languageName
languages = getAllLanguages()
languages = [(k, languages[k]) for k in sorted(languages.keys())]
languageList = []
index = None
for k, v in languages:
if languageName == None or k in dic:
index = len(languageList)
if format == 'all':
languageList.append(k + ' ' + v['name'] + ' (' + v['nativeName'] + ')')
elif format == 'name':
languageList.append(v['name'])
elif format == 'nativeName':
languageList.append(v['nativeName'])
elif format == 'raw':
v['shortName'] = k
languageList.append(v)
return languageList, index
def decodeEntity(xml, category='iso'):
global entities
if not isinstance(xml, str):
return xml
if entities[category]:
forward, reverse = entities[category]
else:
resourceMap = {
"iso": "IsoEntities.json",
"html": "HtmlEntities.json",
}
forward = sublime.decode_value(sublime.load_resource('Packages/' + package_name + '/' + resourceMap[category]))
reverse = dict((v, k) for k, v in forward.items())
entities[category] = (forward, reverse)
def parseEntity(match):
entity = match.group(1)
try:
if entity.isdigit():
return reverse[int(entity)]
else:
return chr(forward[entity])
except:
return match.group(0)
xml = re.sub('&([a-zA-Z0-9]+);', parseEntity, xml)
return xml
def getDocphpPath():
return sublime.cache_path() + '/' + package_name + '/'
def getTarGzPath():
return getDocphpPath() + 'language/php_manual_' + language + '.tar.gz'
def getI18nCachePath(languageName=None):
if not languageName:
languageName = language
return getDocphpPath() + 'language/' + languageName + '/'
def getTarHandler():
tarGzPath = getTarGzPath()
try:
tar = openfiles[tarGzPath]
except KeyError:
tar = tarfile.open(tarGzPath)
openfiles[tarGzPath] = tar
return tar
def loadLanguage():
global docphp_languages
tarGzPath = getTarGzPath()
if not os.path.isfile(tarGzPath):
return False
tar = getTarHandler()
tar.getmembers()
def generate():
symbols = {}
for tarinfo in tar:
m = re.search('^php-chunked-xhtml/(.*)\.html$', tarinfo.name)
if m:
symbols[m.group(1)] = m.group(0)
return symbols
symbols = getJsonOrGenerate('packed_symbols', generate)
docphp_languages[language] = {"symbolList": symbols, "definition": {}}
return True
def getJsonOrGenerate(name, callback):
filename = getI18nCachePath() + name + '.json'
if os.path.exists(filename):
with open(filename, 'r', encoding='utf8') as f:
json = f.read(10485760)
content = sublime.decode_value(json)
else:
content = callback()
dirname = os.path.dirname(filename)
if not os.path.isdir(dirname):
os.makedirs(dirname)
with open(filename, 'w', encoding="utf8") as f:
f.write(sublime.encode_value(content))
return content
def languageExists(languageName=None, fallback=False):
if not languageName:
languageName = language
if not language:
currentView.run_command('docphp_checkout_language', {"is_init": True, "set_fallback": True})
return False
if languageName not in docphp_languages and not loadLanguage():
if fallback:
begin = 'The fallback'
else:
begin = 'The'
print(getAllLanguages())
show_name = getAllLanguages()[languageName]['name']
sublime.error_message(begin + ' language "' + show_name +
'" has not yet installed.\nYou can use\n\n DocPHP: checkout language\n\ncommand to checkout a language pack.')
return False
return True
def getSymbolDescription(symbol, use_language=False, fallback=False):
if not use_language:
global language
else:
language = use_language
if not languageExists(language, fallback):
return None, False
symbol = symbol.lower()
symbolList = docphp_languages[language]["symbolList"]
if not fallback:
for prefix in ['function.', 'book.', 'class.']:
if prefix + symbol in symbolList:
symbol = prefix + symbol
break
if symbol not in symbolList:
if not fallback and getSetting('language_fallback'):
return getSymbolDescription(symbol, getSetting('language_fallback'), True)
else:
return None, None
elif symbol not in docphp_languages[language]["definition"]:
output = getSymbolFromHtml(symbol)
docphp_languages[language]["definition"][symbol] = output
return symbol, docphp_languages[language]["definition"][symbol]
def getSymbolFromHtml(symbol):
tar = getTarHandler()
member = tar.getmember(docphp_languages[language]["symbolList"][symbol])
f = tar.extractfile(member)
output = f.read().decode(errors='ignore')
dic = {
'—': chr(8212),
'"': '"',
'<br>': '',
''': "'",
'&$': "&$",
'»': chr(187),
}
pattern = "|".join(map(re.escape, dic.keys()))
output = re.sub(pattern, lambda m: dic[m.group()], output)
return output
class DocphpShowDefinitionCommand(sublime_plugin.TextCommand):
history = []
currentSymbol = ''
projectSymbols = []
window = False
projectView = False
def is_enabled(self, **args):
selection = self.view.sel()
force = args.get('force')
if force or self.view.score_selector(selection[0].a, 'source.php'):
return True
else:
return False
def want_event(self):
return True
def run(self, edit, event=None, symbol=None, force=False):
global language, currentView
view = self.view
currentView = view
pt = False
language = getSetting('language')
if not language:
view.window().run_command('docphp_checkout_language')
return
if symbol == None:
if event:
pt = view.window_to_text((event["x"], event["y"]))
else:
pt = view.sel()[0]
self.pt = pt
symbol, locations = sublime_symbol.symbol_at_point(view, pt)
translatedSymbol = symbol.replace('_', '-')
# symbol = 'basename'
translatedSymbol, symbolDescription = getSymbolDescription(translatedSymbol)
if not symbolDescription:
if getSetting('prompt_when_not_found'):
view.show_popup('not found', sublime.COOPERATE_WITH_AUTO_COMPLETE)
return
return
if getSetting('use_panel') == False:
self.show_popup(translatedSymbol, symbolDescription)
else:
self.show_panel(translatedSymbol, symbolDescription, edit)
def show_popup(self, symbol, symbolDescription):
output = symbolDescription
if getSetting('debug'):
print(output)
self.currentSymbol = symbol
width, height = self.view.viewport_extent()
output = self.formatPopup(output, symbol=symbol)
# It seems sublime will core when the output is too long
# In some cases the value can set to 76200, but we use a 65535 for safety.
output = output[:65535]
self.view.show_popup(
output,
flags=sublime.COOPERATE_WITH_AUTO_COMPLETE | sublime.HTML,
location=-1,
max_width=min(getSetting('popup_max_width'), width),
max_height=min(getSetting('popup_max_height'), height - 100),
on_navigate=self.on_navigate,
on_hide=self.on_hide
)
def show_panel(self, symbol, symbolDescription, edit):
output = self.formatPanel(symbolDescription)
name = 'docphp'
window = self.view.window()
panel = window.get_output_panel(name)
window.run_command("show_panel", {"panel": "output."+name})
panel.set_read_only(False)
panel.insert(edit, panel.size(), output + '\n')
panel.set_read_only(True)
def on_hide(self):
self.currentSymbol = ''
self.history = []
def on_navigate(self, url):
if re.search('^https?://', url):
webbrowser.open_new(url)
return True
m = re.search('^(changeto|constant)\.(.*)', url)
if m:
if m.group(1) == 'changeto':
symbol, content = getSymbolDescription(self.currentSymbol, m.group(2))
else:
self.view.run_command('docphp_insert', {"string": m.group(2)})
self.view.hide_popup()
elif url == 'history.back':
symbol = self.history.pop()
self.currentSymbol = symbol
else:
self.history.append(self.currentSymbol)
symbol = url[:url.find('.html')]
self.currentSymbol = symbol
symbol, content = getSymbolDescription(symbol)
if content == False:
return False
content = self.formatPopup(content, symbol=symbol, can_back=len(self.history) > 0)
content = content[:65535]
self.view.update_popup(content)
def formatPopup(self, content, symbol, can_back=False):
if not isinstance(content, str):
return
content = decodeEntity(content)
parser = PopupHTMLParser(symbol, language, can_back)
try:
parser.feed(content)
except FinishError:
pass
content = parser.output
content = '<style>'+sublime.load_resource('Packages/' + package_name + '/style.css') + \
'</style><div id="outer"><div id="container">' + content + "</div></div>"
content = re.sub('<strong><code>([A-Z_]+)</code></strong>', '<strong><code><a class="constant" href="constant.\\1">\\1</a></code></strong>', content)
return content
def formatPanel(self, content):
if not isinstance(content, str):
return
content = decodeEntity(content)
content = re.sub('\s+', ' ', content)
content = re.sub('<(br\s*/?|/p|/div|/li|(div|p)\s[^<>]*|(div|p))>', '\n', content)
content = re.sub('<.*?>', '', content)
content = re.sub('\s+\n\s*\n\s+', '\n\n', content)
content = re.sub('^\s+', '', content, count=1)
content = decodeEntity(content, 'html')
return content
class PopupHTMLParser(HTMLParser):
symbol = ''
language = ''
can_back = False
stack = []
output = ''
as_div = ['blockquote', 'tr', 'li', 'ul', 'dl', 'dt', 'dd', 'table', 'tbody', 'thead']
strip = ['td']
started = False
navigate_rendered = False
navigate_up = ''
def __init__(self, symbol, language, can_back):
self.symbol = symbol
self.language = language
self.can_back = can_back
super().__init__()
def parseAttrs(self, attrs):
ret = {}
for k, v in attrs:
ret[k] = v
return ret
def handle_starttag(self, tag, attrs):
attrs = self.parseAttrs(attrs)
for k in attrs:
v = attrs[k]
if k == 'id' and v == self.symbol:
self.output = ''
if k == 'class' and v == 'up':
self.output = ''
if tag in self.as_div:
if 'class' in attrs:
attrs['class'] += ' ' + tag
else:
attrs['class'] = tag
tag = 'div'
if tag in self.strip:
return
self.stack.append({'tag': tag, 'attrs': attrs})
border = self.shall_border(tag, attrs)
if border:
self.output += '<div class="border border-' + border + '">'
self.output += self.get_tag_text(tag, attrs)
def handle_endtag(self, tag):
if tag in self.as_div:
tag = 'div'
if tag in self.strip:
return
try:
while(True):
previous = self.stack.pop()
self.output += '</' + tag + '>'
if re.search('h[1-6]', tag):
self.output += '<div class="horizontal-rule"></div>'
if not self.navigate_rendered:
self.navigate_rendered = True
self.output += ('<a href="history.back">back</a>' if self.can_back else 'back') + ' <a href="http://php.net/manual/' + \
self.language + '/' + self.symbol + '.php">online</a>' + \
' ' + re.sub('.*?(<a.*?</a>).*', '\\1', self.navigate_up)
languages, _ = getLanguageList(format='raw', getAll=False)
if len(languages) > 1:
self.output += ' Change language:'
for lang in languages:
self.output += ' <a href="changeto.' + lang['shortName'] + '">' + lang['nativeName'] + '</a>'
if self.shall_border(previous['tag'], previous['attrs']):
self.output += '</div>'
for k in previous['attrs']:
v = previous['attrs'][k]
if k == 'id' and v == self.symbol:
raise FinishError
if k == 'class' and v == 'up':
self.navigate_up = self.output
if tag == previous['tag']:
break
except IndexError:
pass
def handle_startendtag(self, tag, attrs):
if tag in self.as_div:
if 'class' in attrs:
attrs['class'] += ' ' + tag
else:
attrs['class'] = tag
tag = 'div'
self.output += self.get_tag_text(tag, attrs, True)
def handle_data(self, data):
self.output += data
pass
def handle_entityref(self, name):
self.output += '&' + name + ';'
def handle_charref(self, name):
self.output += '&' + name + ';'
def shall_border(self, tag, attrs):
if tag.lower() not in ['div', 'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6']:
return False
for k in attrs:
v = attrs[k]
if k == 'class':
if re.search('\\b(phpcode|classsynopsis|methodsynopsis|note|informaltable)\\b', v):
return 'gray'
elif re.search('\\b(tip)\\b', v):
return 'blue'
elif re.search('\\b(warning)\\b', v):
return 'pink'
elif re.search('\\b(caution)\\b', v):
return 'yellow'
return False
def get_tag_text(self, tag, attrs, is_startend=False):
if type(attrs) is list:
attrs = dict(attrs)
return '<' + (tag + ' ' + ' '.join(map(lambda m: m + '="' + re.sub('(?<!\\\\)"', '\\"', attrs[m]) + '"', attrs))).rstrip() + (' />' if is_startend else '>')
class DocphpCheckoutLanguageCommand(sublime_plugin.TextCommand):
languageList = None
languageName = None
downloading = False
set_fallback = None
def run(self, edit, languageName=None, set_fallback=False, is_init=False):
view = self.view
global currentView
currentView = view
if self.downloading:
sublime.message_dialog('Another progress is working for checkout ' + self.downloading + '. Please try again later.')
return
self.languageList, index = getLanguageList(languageName)
self.set_fallback = set_fallback
if languageName:
self.updateLanguage(index)
else:
currentView.window().show_quick_panel(self.languageList, self.updateLanguage, sublime.KEEP_OPEN_ON_FOCUS_LOST)
def updateLanguage(self, index=None):
if index == -1 or index == None:
return
languageName = re.search('^\w+', self.languageList[index]).group(0)
self.languageName = languageName
sublime.set_timeout_async(self.checkoutLanguage, 0)
def checkoutLanguage(self):
global language
languageName = self.languageName
if not self.downloadLanguageGZ(languageName):
if getSetting('debug'):
print('download error')
return False
setSetting('language', languageName)
language = languageName
languageSettings = currentSettings.get('languages')
languageSettings[languageName] = 'gz'
setSetting('languages', languageSettings)
if self.set_fallback:
setSetting('language_fallback', languageName)
loadLanguage()
sublime.message_dialog('Language ' + languageName + ' is checked out')
def downloadLanguageGZ(self, name):
err = None
try:
url = 'https://php.net/distributions/manual/php_manual_' + name + '.tar.gz'
filename = getDocphpPath() + 'language/php_manual_' + name + '.tar.gz.downloading'
response = urllib.request.urlopen(url)
try:
if response.headers['Content-Length']:
totalsize = int(response.headers['Content-Length']) # assume correct header
else:
totalsize = None
except NameError:
totalsize = None
except KeyError:
totalsize = None
outputfile = open(filename, 'wb')
readsofar = 0
chunksize = 8192
try:
self.downloading = name
while(True):
# download chunk
data = response.read(chunksize)
if not data: # finished downloading
break
readsofar += len(data)
outputfile.write(data) # save to filename
if totalsize:
# report progress
percent = readsofar * 1e2 / totalsize # assume totalsize > 0
sublime.status_message(package_name + ': %.0f%% checking out %s' % (percent, name,))
else:
kb = readsofar / 1024
sublime.status_message(package_name + ': %.0f KB checking out %s' % (kb, name,))
finally:
outputfile.close()
self.downloading = False
if totalsize and readsofar != totalsize:
os.unlink(filename)
err = 'Download failed'
except (urllib.error.HTTPError) as e:
err = '%s: HTTP error %s contacting API' % (__name__, str(e.code))
except (urllib.error.URLError) as e:
err = '%s: URL error %s contacting API' % (__name__, str(e.reason))
except Exception as e:
err = e.__class__.__name__
if not err:
if os.path.isdir(getI18nCachePath(name)):
shutil.rmtree(getI18nCachePath(name))
newname = getDocphpPath() + 'language/php_manual_' + name + '.tar.gz'
if os.path.isfile(newname):
os.unlink(newname)
os.rename(filename, newname)
return True
print(err)
sublime.message_dialog('Language ' + name + ' checkout failed. Please try again.')
return False
class DocphpSelectLanguageCommand(sublime_plugin.TextCommand):
languageNameList = None
def run(self, edit):
global currentView
view = self.view
currentView = view
self.languageList, _ = getLanguageList(getAll=False)
currentView.window().show_quick_panel(self.languageList, self.selectLanguageCallback)
def selectLanguageCallback(self, index):
global language
if index != -1:
language = re.search('^\w+', self.languageList[index]).group(0)
setSetting('language', language)
loadLanguage()
class DocphpOpenManualIndexCommand(sublime_plugin.TextCommand):
def run(self, edit):
global currentView
currentView = self.view
self.view.run_command('docphp_show_definition', {"symbol": 'index', "force": True})
class DocphpSearchCommand(sublime_plugin.TextCommand):
def want_event(self):
return True
def run(self, edit, event=None, at_point=False):
global currentView
view = self.view
window = view.window()
currentView = view
if not languageExists():
return
tar = getTarHandler()
symbol = None
if at_point:
symbol = view.substr(view.word(view.sel()[0]))
files = list(map(lambda file: re.sub('-', '_', file), docphp_languages[language]["symbolList"].keys()))
files.sort()
def show(index):
if index != -1:
currentView.run_command('docphp_show_definition', {"symbol": files[index], "force": True})
selected_index = -1
if event:
pt = view.window_to_text((event["x"], event["y"]))
symbol, locations = sublime_symbol.symbol_at_point(view, pt)
for prefix in ['function.', 'book.', 'class.']:
try:
selected_index = files.index(prefix + symbol)
break
except ValueError:
pass
currentView.window().show_quick_panel(files, show, selected_index=selected_index)
class DocphpInsertCommand(sublime_plugin.TextCommand):
def run(self, edit, string):
self.view.insert(edit, self.view.sel()[0].b, string)
class DocPHPListener(sublime_plugin.EventListener):
prevTime = 0
delaying = False
def on_selection_modified_async(self, view):
if not getSetting('auto'):
return
global currentView
currentView = view
self.prevTime = time.time()
if not self.delaying:
sublime.set_timeout_async(self.doAutoShow, getSetting('auto_delay') + 50)
self.delaying = True
def doAutoShow(self):
delayTime = getSetting('auto_delay')
if (time.time() - self.prevTime) * 1000 > delayTime:
self.delaying = False
if not currentView.is_popup_visible():
currentView.run_command('docphp_show_definition')
else:
sublime.set_timeout_async(self.doAutoShow, int(delayTime - (time.time() - self.prevTime) * 1000) + 50)
class FinishError(Exception):
"""For stopping the HTMLParser"""
pass