This repository has been archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DB.py
273 lines (220 loc) · 8.64 KB
/
DB.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
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String, DateTime
from sqlalchemy import ForeignKey
from sqlalchemy.orm import relationship
from sqlalchemy.orm import sessionmaker
from sqlalchemy.orm import scoped_session
from sqlalchemy import Table
from collections import Counter
import json
engine = create_engine('sqlite:///news.db?check_same_thread=False')
Session = scoped_session(sessionmaker(bind=engine))
session = Session()
Base = declarative_base()
class Topic(Base):
__tablename__ = 'topics'
id = Column(Integer(), primary_key=True)
name = Column(String())
description = Column(String())
time = Column(DateTime())
link = Column(String())
""" Статистика """
word_frequency = Column(String())
len_word_frequency = Column(String())
freq_word_frequency = Column(String())
documents = relationship('Document')
""" Связующая таблица в БД между Document и Tag """
association_table = Table('association',
Base.metadata,
Column('doc_id', Integer(),
ForeignKey('documents.id')),
Column('tag_id', Integer(),
ForeignKey('tags.id')))
class Document(Base):
__tablename__ = 'documents'
id = Column(Integer(), primary_key=True)
name = Column(String())
time = Column(DateTime())
link = Column(String())
paragraphs = Column(String())
""" Статистика """
word_frequency = Column(String())
len_word_frequency = Column(String())
freq_word_frequency = Column(String())
topic_id = Column(Integer(), ForeignKey('topics.id'))
topic = relationship("Topic", back_populates="documents")
tags = relationship("Tag", secondary=association_table,
backref='documents')
class Tag(Base):
__tablename__ = 'tags'
id = Column(Integer(), primary_key=True)
name = Column(String())
def create_doc_db(doc):
"""
Создать документ в БД по переданному документу
:param doc: документ с информацией
:return: документ в БД
"""
new_doc_db = Document(name=doc.name,
paragraphs='\n'.join(doc.paragraphs),
time=doc.time,
link=doc.link)
words = new_doc_db.paragraphs.split()
doc_word_freq = Counter(words)
doc_len_freq = Counter([len(word) for word in words])
doc_freq_freq = Counter(doc_word_freq.values())
new_doc_db.word_frequency = json.dumps(doc_word_freq)
new_doc_db.len_word_frequency = json.dumps(doc_len_freq)
new_doc_db.freq_word_frequency = json.dumps(doc_freq_freq)
return new_doc_db
def create_topic_db(topic):
"""
Создать тему в БД по переданной теме
:param topic: тема с информацией
:return: тема в БД
"""
new_topic_db = Topic(name=topic.name,
description=topic.description,
time=topic.time,
link=topic.link)
return new_topic_db
def create_tag_db(tag):
"""
Создать тег в БД по данному тегу
:param tag: тег с информацией
:return: тег в БД
"""
tag_db = Tag(name=tag)
return tag_db
def refresh_dicts_with_doc(doc_db, topic_db_word_freq, topic_db_len_freq):
"""
Обновить статистику документа в БД
:param doc_db: документ в БД
:param topic_db_word_freq: новые данные о частоте слов
:param topic_db_len_freq: новые данные о частоте длин
:return: void
"""
topic_db_word_freq += json.loads(doc_db.word_frequency)
topic_db_len_freq += json.loads(doc_db.len_word_frequency)
def fill_statistics(topic_db, topic_db_word_freq, topic_db_len_freq):
"""
Заполняет данные о статистке темы в БД
:param topic_db: тема в БД
:param topic_db_word_freq: данные о частоте слов
:param topic_db_len_freq: данные о частоте длинн
:return: void
"""
topic_db_freq_freq = Counter(topic_db_word_freq.values())
topic_db.word_frequency = json.dumps(topic_db_word_freq)
topic_db.len_word_frequency = json.dumps(topic_db_len_freq)
topic_db.freq_word_frequency = json.dumps(topic_db_freq_freq)
def add_docs_for_new_topic(topic, new_topic_db):
"""
Добавляет документы в БД к новой теме
:param topic: тема
:param new_topic_db: только что созданная тема в БД
:return: void
"""
topic_db_word_freq = Counter()
topic_db_len_freq = Counter()
for doc in topic.docs:
new_doc_db = create_doc_db(doc)
refresh_dicts_with_doc(new_doc_db,
topic_db_word_freq,
topic_db_len_freq)
new_topic_db.documents.append(new_doc_db)
for tag in doc.tags:
tag_db = create_tag_db(tag)
new_topic_db.documents[-1].tags.append(tag_db)
fill_statistics(new_topic_db, topic_db_word_freq, topic_db_len_freq)
def refresh_docs_for_topic(topic, topic_db):
"""
Добавляет новые документы к теме в БД
:param topic: тема (вероятно) с новыми документами
:param topic_db: тема в БД
:return: void
"""
topic_db_word_freq = Counter(json.loads(topic_db.word_frequency))
topic_db_len_freq = Counter(json.loads(topic_db.len_word_frequency))
for doc in topic.docs:
doc_db = session.query(Document).filter(
Document.link == doc.link).first()
if doc_db is None:
new_doc_db = create_doc_db(doc)
refresh_dicts_with_doc(new_doc_db,
topic_db_word_freq,
topic_db_len_freq)
topic_db.documents.insert(0, new_doc_db)
for tag in doc.tags:
tag_db = create_tag_db(tag)
topic_db.documents[0].tags.append(tag_db)
fill_statistics(topic_db, topic_db_word_freq, topic_db_len_freq)
def update_DB(topics):
"""
Обновить БД, используя переданные темы
:param topics: темы
:return: void
"""
Base.metadata.create_all(engine)
for topic in topics:
topic_db = session.query(Topic).filter(Topic.link == topic.link).first()
if topic_db is not None:
if topic_db.time < topic.time:
topic_db.time = topic.time
refresh_docs_for_topic(topic, topic_db)
else:
new_topic_db = create_topic_db(topic)
session.add(new_topic_db)
session.commit()
add_docs_for_new_topic(topic, new_topic_db)
session.commit()
def select_newest_docs(n):
"""
Выбрать из БД новейшие документы
:param n: количество
:return: массив документов БД
"""
res = session.query(Document).order_by(Document.time.desc())[:n]
return res
def select_newest_topics(n):
"""
Выбрать из БД новейшие темы
:param n: количество
:return: массив тем БД
"""
res = session.query(Topic).order_by(Topic.time.desc())[:n]
return res
def select_topic(topic_name):
"""
Выбрать из БД тему
:param topic_name: название
:return: тема БД
"""
res = session.query(Topic).filter(Topic.name == topic_name).first()
return res
def select_doc(doc_name):
"""
Выбрать из БД документ
:param doc_name: название
:return: документ БД
"""
res = session.query(Document).filter(Document.name == doc_name).first()
return res
def remain_need_to_update_topics(topics):
"""
По массиву тем оставить только те,
данные которых нужно обновить
:param topics: массив тем
:return: массив тем, которые надо обновить
"""
Base.metadata.create_all(engine)
need_to_update = []
for topic in topics:
res = session.query(Topic).filter(Topic.link == topic.link).first()
if res is not None:
if topic.time > res.time:
need_to_update.append(topic)
else:
need_to_update.append(topic)
return need_to_update