-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDB_Repository_Languages.py
More file actions
90 lines (58 loc) · 2.08 KB
/
Copy pathDB_Repository_Languages.py
File metadata and controls
90 lines (58 loc) · 2.08 KB
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
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import github.NamedUser
import datetime
import db_operation
class DB_Repository_Languages:
"""
This class represent DB_Repository_Languages as a class describles languages of one repository
"""
langs = None
repo = None
db = None
table = "Repository_Language"
def __init__(self, langs, repo, db):
self.langs = langs
self.repo = repo
self.db = db
def open_if_connection_closed(self):
try:
if self.db is None:
return False
if self.db.open == 0:
self.db = db_operation.connect_to_db_simple()
if self.db is None:
return False
return True
except Exception, e:
print e
return False
def save(self):
try:
if self.open_if_connection_closed() == False:
return False
for (lang, count) in self.langs.iteritems():
if self.exist(lang):
continue
sql = "insert into %s (%s, %s, %s) values ('%s', %d, %d);"%(self.table, "language", "count", "repository", lang, count, self.repo.id)
cursor = self.db.cursor()
cursor.execute(sql)
self.db.commit()
return True
except Exception as e:
print e
return False
def exist(self, lang):
try:
if self.open_if_connection_closed() == False:
return False
cursor = self.db.cursor()
sql = "select count(*) from %s where repository=%d && language='%s';"%(self.table, self.repo.id, lang)
cursor.execute(sql)
result = cursor.fetchall()
if result[0][0] == 0:
return False
return True
except Exception as e:
print e
return False