-
Notifications
You must be signed in to change notification settings - Fork 6
/
Docjs.py
294 lines (223 loc) · 8.35 KB
/
Docjs.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
import sublime, sublime_plugin
import re
COMMENT_CLOSE = '*/'
INDENTIFIER = '[a-zA-Z_$][a-zA-Z_$0-9]*'
class DocjsParser:
def parse( self, source ):
snippet = self.parseFunctionDeclare( source );
if snippet:
return snippet
snippet = self.parseVar( source );
if snippet:
return snippet
snippet = self.parseIdentAssign( source );
if snippet:
return snippet
snippet = self.parseIdentProp( source );
if snippet:
return snippet
snippet = self.parseStrProp( source );
if snippet:
return snippet
return '\n * $1\n */'
def parseIdentProp( self, source ):
regexp = r"\s*(" + INDENTIFIER + r")\s*:\s*([^;]+);?"
match = re.match( regexp, source )
print( match)
if match:
val = match.group( 2 )
name = match.group( 1 )
type = self.guessType( val )
if type == 'function':
return self.parseFunctionExpr( source, name )
info = {
'type': type,
'name': name
}
return self.getAssignComment( info )
return None
def parseStrProp( self, source ):
regexp = r"\s*\[?\s*['\"]([^'\"]+)['\"]\s*\]?\s*:\s*([^;]+)"
match = re.match( regexp, source )
if match:
val = match.group( 2 )
name = match.group( 1 )
print(name)
print(val)
type = self.guessType( val )
print(type)
if type == 'function':
return self.parseFunctionExpr( source, name )
info = {
'type': type,
'name': name
}
return self.getAssignComment( info )
return None
def parseIdentAssign( self, source ):
regexp = r"(\s*)(" + INDENTIFIER + r")\s*=\s*([^;]+);?"
match = re.search( regexp, source )
if match:
val = match.group( 3 )
name = match.group( 2 )
head = match.group( 1 )
type = self.guessType( val )
info = {
'name': name,
'type': type
}
if type == 'function':
return self.parseFunctionExpr( source, name )
if len( head ) == 0 and type == 'Object':
info[ 'namespace' ] = 1
elif re.match( r"[A-Z_]+$", name ):
info[ 'const' ] = 1
return self.getAssignComment( info )
def parseStrAssign( self, source ):
regexp = r"\[?\s*['\"]([^'\"]+)['\"]\s*\]\s*=\s*([^;]+);?"
match = re.search( regexp, source )
if match:
val = match.group( 2 )
name = match.group( 1 )
type = self.guessType( val )
info = {
'name': name,
'type': type
}
if type == 'function':
return self.parseFunctionExpr( source, name )
if re.match( r"[A-Z_]+$", name ):
info[ 'const' ] = 1
return self.getAssignComment( info )
def parseVar( self, source ):
regexp = r"(\s*)(var|let|const)\s+(" + INDENTIFIER + r")\s*=\s*([^;]+);?"
match = re.search( regexp, source )
if match:
val = match.group( 4 )
name = match.group( 3 )
head = match.group( 1 )
type = self.guessType( val )
info = {
'name': name,
'type': type
}
if type == 'function':
return self.parseFunctionExpr( val, name )
if len( head ) == 0 and type == 'Object':
info[ 'namespace' ] = 1
elif match.group( 2 ) == 'const' or re.match( r"[A-Z_]+$", name ):
info[ 'const' ] = 1
return self.getAssignComment( info )
return None
def getAssignComment( self, info ):
text = []
text.append( '' )
text.append( '${1:[%s description]}' % ( info[ 'name' ] ) )
text.append( '' )
if 'const' in info:
text.append( '@const' )
if 'namespace' in info:
text.append( '@namespace' )
else:
text.append( '@type {${2:%s}}' % ( info[ 'type' ] ) )
return '\n * '.join( text ) + '\n */'
def guessType( self, source ):
if re.match( "['\"]", source ):
return "string"
if source == 'true' or source == 'false' or source[0] == '!' or re.match( r"^\s*Boolean\([^\)]*\)", source):
return 'boolean'
if re.match( "[0-9]+", source ):
return 'number'
if re.match( "{", source ):
return "Object"
if re.match( r"\[", source ):
return "Array"
if re.match( "/[^/]", source ):
return "RegExp"
if re.match( "function", source ) or re.match( r"(\(.*?\)|[^\(\)]+)\s*=>", source ):
return 'function'
match = re.match( r"new\s+([^;\(]+)", source )
if match:
return match.group( 1 )
return '[type]'
def parseArgs( self, source ):
args = re.split( r",\s*", source.strip() )
return args
def parseFunctionExpr( self, source, name ):
regexp = r"function\s*\(([^\)]*)"
match = re.search( regexp, source )
if not match:
match = re.search( r"\(?([^\(\)]*?)\)?\s*=>", source )
if match:
return self.getFunctionComment( {
"type": "function",
"name": name,
"args": self.parseArgs( match.group( 1 ) )
} )
return None
def parseFunctionDeclare( self, source ):
regexp = r"^(export(?:\s*default)?)?(\s*\basync)?\s*function\s+(" + INDENTIFIER + r")\s*\(([^\)]*)\s*"
match = re.match( regexp, source )
functionInfo = None
if match:
return self.getFunctionComment( {
"type": "function",
"name": match.group( 3 ),
"args": self.parseArgs( match.group( 4 ) )
} )
return None
def getFunctionComment( self, info ):
text = []
name = info[ 'name' ]
index = 1
text.append( '' )
text.append( '${%d:[%s description]}' % ( index, name ) )
text.append( '' )
returnTag = 1
if re.match( "[A-Z]", name ):
text.append( '@constructor' )
returnTag = 0
if re.match( "[_]", name ):
text.append( '@private' )
args = info[ 'args' ]
index += 1
if len( args ) > 0 and len( args[ 0 ] ) > 0:
for arg in args:
text.append( '@param {${%d:[type]}} %s ${%d:[%s description]}' % (index, arg, index + 1, arg) )
index += 2
if returnTag > 0:
text.append( '@return {${%d:[type]}} ${%d:[return description]}' % ( index, index + 1 ) )
return '\n * '.join( text ) + '\n */'
class DocjsCommand( sublime_plugin.TextCommand ):
def run( self, edit ):
view = self.view
settings = view.settings()
point = view.sel()[0].end() + 1
lineRegion = view.line( point )
lineString = view.substr( lineRegion )
snippet = DocjsParser().parse( lineString )
print( snippet )
view.run_command( 'insert_snippet', { "contents": snippet } )
class DocjsAddCommentCommand( sublime_plugin.TextCommand ):
def run( self, edit ):
view = self.view
view.run_command( 'move_to', { 'to': 'bol' } )
view.run_command( 'insert', { "characters": "/**\n" } )
view.run_command( 'move', { "by": "lines", "forward": False } )
view.run_command( 'move_to', { 'to': 'eol' } )
view.run_command( 'docjs' )
class DocjsTagAutocompleteCommand( sublime_plugin.TextCommand ):
def run( self, edit ):
view = self.view
lineRegion = view.line( view.sel()[ 0 ].end())
view.run_command( 'insert_snippet', { 'contents': '@' } )
view.run_command( 'auto_complete' )
class DocjsDeindentCommand( sublime_plugin.TextCommand ):
def run( self, edit ):
view = self.view
lineRegion = view.line( view.sel()[ 0 ].end())
view.insert(
edit,
lineRegion.end(),
re.sub( "^(\\s*)\\s\\*/.*", "\n\\1", view.substr( lineRegion ) )
)