-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathSyntaxDetector.py
84 lines (57 loc) · 2.2 KB
/
SyntaxDetector.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
import sublime, sublime_plugin
import os, string, re
class GrailsSyntaxCommand(sublime_plugin.EventListener):
""" Attempts to set Grails Syntax when appropriate. """
def __init__(self):
super(GrailsSyntaxCommand, self).__init__()
self.path = None
self.name = None
self.ext = None
self.view = None
def on_load(self, view):
self.check_syntax(view)
def on_post_save(self, view):
self.check_syntax(view)
def check_syntax(self, view):
self.view = view
self.file_name = view.file_name()
if not self.file_name: # buffer has never been saved
return
self.set_file_variables()
if not self.ext == '.groovy':
return
if self.is_domain():
self.set_syntax('GrailsDomain', 'Grails/Domain')
elif self.is_controller():
self.set_syntax('GrailsController', 'Grails/Controller')
elif self.is_service():
self.set_syntax('GrailsService', 'Grails/Service')
else:
self.set_syntax('Groovy', 'Groovy')
def is_domain(self):
return self.is_in_grails_subfolder('domain', self.path)
def is_controller(self):
return self.is_in_grails_subfolder('controllers', self.path)
def is_service(self):
return self.is_in_grails_subfolder('services', self.path)
def set_file_variables(self):
self.path = os.path.dirname(self.file_name)
self.name = os.path.basename(self.file_name).lower()
self.name, self.ext = os.path.splitext(self.name)
def set_syntax(self, syntax, path):
new_syntax = 'Packages/' + path + '/' + syntax + '.tmLanguage'
self.view.set_syntax_file(new_syntax)
def is_in_grails_subfolder(self, subfolder, file):
head, tail = os.path.split(file)
if tail == subfolder:
return self.is_in_grails_app(head)
elif head and tail:
return self.is_in_grails_subfolder(subfolder, head)
else:
return False
def is_in_grails_app(self, file):
head, tail = os.path.split(file)
if tail == 'grails-app':
return True
else:
return False