-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsatd_model.py
403 lines (276 loc) · 9.01 KB
/
satd_model.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
"""
A model for identifying Self Admitted Technical Debt (SATD)
"""
import re
from os.path import join
import pandas as pd
from configuration import DATA_PATH
from language_utils import regex_to_big_query, generate_bq_function, match, SCHEMA_NAME, print_logic_to_bq\
, build_separated_terms, build_non_positive_linguistic, REGULAR_SUFFIX, VERB_E_SUFFIX, NEAR_ENOUGH, term_seperator
from model_evaluation import classifiy_commits_df, evaluate_performance, evaluate_concept_classifier
# Based on the lists from
# Prevalence, Contents and Automatic Detection of KL-SATD by Leevi Rantala and Mika Mäntylä and David Lo
# An exploratory study on self-admitted technical debt by Potdar, Aniket and Shihab, Emad
exploratory_terms = [
#'hack',
'retarded'
, 'at a loss'
, 'stupid'
, 'remove this code'
, 'ugly'
, '(should|must|have to) take care'
, "(gone|is|went) wrong"
#, 'nuke'
, 'is problematic'
, 'may cause problem'
, 'hacky'
#, 'unknown why we ever experience this'
, 'soft error'
, 'silly'
, 'work(\s|-)?around'
, 'kludge'
#, 'fixme'
, "(isn't|not) quite right"
, 'trial and error'
#, 'give up'
, 'this is wrong'
#, 'hang our heads in shame'
, 'temporary (crutch|solution)'
, 'temporary'
, '(will cause|might cause) issue(s)?' # causes might be in present, part of a bug fix
, 'something bad'
, 'cause for issue'
, "this doesn't look right"
#, 'is this next line safe'
#, 'this indicates a more fundamental problem'
, 'this can be a mess'
, "(isn't|not) (very )?solid"
#, 'is this line really safe'
#, 'there is a problem'
#, 'some fatal error'
#, 'something serious is wrong'
, "don't use this"
, 'get rid of this'
, 'doubt that this would work'
, 'this is bs'
#, 'give up and go away'
, 'risk of this blowing up'
, 'just abandon it'
#, 'prolly a bug'
, 'probably a bug'
, 'hope everything will work'
, 'toss it'
#, 'barf'
#, 'something bad happened'
, 'fix this crap'
, 'yuck'
, 'certainly buggy'
, 'remove (me|it) before production'
#, 'you can be unhappy now'
, 'this is uncool'
#, 'bail out'
, "it doesn't work"
, 'crap'
, 'inconsistency'
, 'until fixed'
#, 'abandon all hope'
#, 'kaboom'
]
positive_terms = ['fixme'#, 'hack'
, 'low quality'
, 'tech(nical)?\sdebt'
, 'todo'
#, 'xxx'
] + exploratory_terms
removal_terms = [
'address' + REGULAR_SUFFIX
, 'because'
, 'clean' + REGULAR_SUFFIX
, 'delet' + VERB_E_SUFFIX
, '(do|does|did|doing)'
, 'expand' + REGULAR_SUFFIX
, 'finish' + REGULAR_SUFFIX
, 'fix' + REGULAR_SUFFIX
, 'implement' + REGULAR_SUFFIX
, '(get|got|gets|getting)\srid'
, 'list' + REGULAR_SUFFIX
, 'mov' + VERB_E_SUFFIX
, 'remov' + VERB_E_SUFFIX
, 'replac' + VERB_E_SUFFIX
, 'resolv' + VERB_E_SUFFIX
, 'revert' + REGULAR_SUFFIX
, 'updat' + VERB_E_SUFFIX
, 'was'
]
excluded_terms = [
'temporary(\s|_)(allocator|buffer|data|file|folder|list|location|place)(s)?'
, 'temporary(\s|_)director(y|ies)'
, 'todo.txt'
, 'todo director(y|ies)'
, 'todo folder(s)?'
, 'todo list(s)?'
, 'todo note(s)?'
, 'update todo'
, "(%s)%s(%s)" % ("|".join(removal_terms), NEAR_ENOUGH, "|".join(positive_terms))
, "(%s)(/|\.|=)" % ("|".join(positive_terms))
, '\.xxx'
, '=xxx'
]
def build_positive_regex():
#return "(%s)" % ("|".join(positive_terms))
return build_separated_terms(positive_terms)
def build_excluded_regex():
#return "(%s)" % ("|".join(excluded_terms))
return build_separated_terms(excluded_terms)
def build_not_positive_regex():
return build_non_positive_linguistic(build_positive_regex())
def is_satd(commit_text):
#commit_text = re.sub(r"\s+", " ", commit_text.strip())
text = commit_text.lower()
return (len(re.findall(build_positive_regex(), text))
- len(re.findall(build_excluded_regex(), text))
- len(re.findall(build_not_positive_regex(), text))) > 0
def satd_to_bq():
concept = 'satd'
print("# " + concept)
print( "# " + concept + ": Core")
#print( ",")
print("{schema}.bq_core_satd(message)".format(schema=SCHEMA_NAME))
print(" - ")
print("# " + concept + ": Excluded")
print("{schema}.bq_excluded_satd(message)".format(schema=SCHEMA_NAME))
print(" - ")
print("# " + concept + ": not positive")
print("{schema}.bq_not_positive_satd(message)".format(schema=SCHEMA_NAME))
print("# end - " + concept)
def print_concepts_functions_for_bq(commit: str = 'XXX'):
concepts = {'core_satd' : build_positive_regex
, 'excluded_satd': build_excluded_regex
, 'not_positive_satd' : build_not_positive_regex
#, 'satd': satd_to_bq
}
for i in concepts.keys():
print()
print_func = lambda : print_logic_to_bq(regex_func=concepts[i]
, concept=i)
generate_bq_function('{schema}.bq_{concept}'.format(schema=SCHEMA_NAME
, concept=i)
, print_func
, commit=commit)
print()
generate_bq_function('{schema}.bq_{concept}'.format(schema=SCHEMA_NAME
, concept='satd')
, satd_to_bq
, commit=commit)
print()
def evaluate_satd_classifier():
evaluate_concept_classifier(concept='satd'
, text_name='message'
, classification_function=is_satd
, samples_file=join(DATA_PATH, 'satd_samples.csv'))
if __name__ == '__main__':
print_concepts_functions_for_bq(commit='c5ba4cd1971da27f74ce1319415626143092d317')
evaluate_satd_classifier()
text = """
"Add new django tutorial (#4869)
* Cloud Run with Django tutorial
* Cloud Run with Django tutorial
* black, .env file update
* Document Dockerfile, add PYTHONUNBUFFERED
* Document cloudmigrate.yaml
* Formatiting
* Bump django, remove mysql
* Update secretmanager
* Update pinned dependencies
* ensure path is set correctly with api update
* format
* Generalise cloudmigrate file
* update service default
* add tests
* Update CODEOWNERS
* Licence headers
* Remove envvar declaration
* cleanup readme
* Fix import names, region tags
* black
* Cloud Run with Django tutorial
* black, .env file update
* Document Dockerfile, add PYTHONUNBUFFERED
* Document cloudmigrate.yaml
* Formatiting
* Bump django, remove mysql
* Update secretmanager
* Update pinned dependencies
* ensure path is set correctly with api update
* format
* Generalise cloudmigrate file
* update service default
* add tests
* Update CODEOWNERS
* Licence headers
* Remove envvar declaration
* cleanup readme
* Fix import names, region tags
* black
* black
* Format YAML
* bump dependencies
* Update var names, remove sql instance creation
* PR Feedback
* Debug failing command
* Remove IAM calls - possible permissions issues
* debug
* force local settings if in nox/test
* add IDs to cloud build
* Update region tags
* Get instance name from envvar
* Make secrets dynamic, optionally overload names by envvar
* Remove create/destroy of static setting
* Consolidate envvars
* fix region tags
* lint, import error
* Testing instance name is fqdn, need just name for gcloud sql calls
* Ensure project specified on gcloud calls
* set project when using gsutil
* order of flags in gsutil matters
* ensure all subprocesses include project
causes issues otherwise
* Add and remove more project tags
* Update comments
* match on exact project name, not substring
* lint
* Can't hide the settings name in the setting itself 🧐
* big oof
* migrations require __init__.py to be detected
* Bump overnight patch
* Debug 503
* Service requires custom settings envvar
* attempt fixing local tests
* lint
* revert accidental appengine change
* envvars
* ohno
* wrong varname
* Update run/django/noxfile_config.py
Co-authored-by: Leah E. Cole <a5082685b0b89abc4f85079ca3a58177707489f8@users.noreply.github.com>
* Add licence header
* Formatting
* black
* Add typehinting, remove debugging
* ⚠️ noxfile change - add typehints
* ⚠️ noxfile change - fix method signature
* ⚠️ noxfile change - fix nox session type
* ⚠️ noxfile change - import order
* hadolint Dockerfile
* revert hadolint
* Add linking
* Remove gcloudignore
* Testing: i have a theory this is why tests started failing
Co-authored-by: Leah E. Cole <a5082685b0b89abc4f85079ca3a58177707489f8@users.noreply.github.com>"
"
""".lower()
print("Label", is_satd(text))
print("concept in text", re.findall(build_positive_regex(), text))
print("exclusion in text", re.findall(build_excluded_regex(), text))
print(build_excluded_regex())
#print("v1", re.findall("(update todo|(because|clean(?:s|ed|ing)?|delet(?:e|es|ed|ing)|fix(?:s|ed|ing)?|implement(?:s|ed|ing)?|(get|got|gets|getting)\srid|list(?:s|ed|ing)?|mov(?:e|es|ed|ing)|remov(?:e|es|ed|ing)|resolv(?:e|es|ed|ing)|updat(?:e|es|ed|ing)|was))[\S\s]{0,40}", text))