-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog-redo.py
414 lines (279 loc) · 13.6 KB
/
log-redo.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
404
405
406
407
408
409
410
411
412
413
from cmath import log
import psycopg2
import sys
""" --------------------Estrutura de dados para armazenar as informações do cabeçalho------------ """
class Linha:
def init(self):
self.id = 0
self.columnA = ''
self.columnB = ''
def setId(self, id):
self.id = id
def setColumnA(self, columnA):
self.columnA = columnA
def setColumnB(self, columnB):
self.columnB = columnB
""" -------------------------------------------------------------------------------------------- """
""" -------------------------------------- GENERAL FUNCTIONS ----------------------------------------- """
""" ------------------Faz a conexão com o Banco de Dados---------------------------------------- """
def conectandoBanco():
con = psycopg2.connect( host='localhost',
dbname='trabalholog',
user='postgres',
password='postgres')
return con
""" -------------------------------------------------------------------------------------------- """
""" -------------------Executa algum comando SQL no banco de dados-------------------------------- """
def executa_db(sql):
con = conectandoBanco()
cur = con.cursor()
try:
cur.execute(sql)
con.commit()
return cur.fetchall()
except (Exception, psycopg2.DatabaseError) as error:
con.rollback()
con.close()
return 1
cur.close()
""" -------------------------------------------------------------------------------------------- """
""" -----------------Abrindo arquivo de log------------------------------------------------------- """
def openFile(fileName):
try:
file = open(fileName, 'r')
#print('... arquivo aberto com sucesso')
return file
except:
print('Erro ao abrir arquivo')
""" -------------------------------------------------------------------------------------------- """
""" -----------------------Função para imprimir conteúdo de um vetor/lista/arquivo--------------- """
def printFile(file):
for line in file:
print(line)
""" -------------------------------------------------------------------------------------------- """
""" --------------------Função que pega o nome do arquivo de entrada------------------------------ """
def getParam(arg):
return sys.argv[arg]
""" -------------------------------------------------------------------------------------------- """
""" ----------------Pega os dados do arquivo e coloca em um vetor-------------------------------- """
def getData(file):
data = []
for line in file:
data.append(line)
return data
""" -------------------------------------------------------------------------------------------- """
""" -----------------Função que pega os dados necessários para construir/inicializar a tabela----- """
def getInfoInit(data):
initTable = []
for line in data:
if line == '\n':
break
else:
initTable.append(line)
return initTable
""" -------------------------------------------------------------------------------------------- """
""" -------------------Função que pega os dados necessários para efetuar o redo------------------ """
def getRedoInfos(data):
redoInfos = []
data.reverse()
for line in data:
if line == '\n':
break
else:
redoInfos.append(line)
redoInfosCleaned = cleanRedoInfos(redoInfos) # faz a limpeza dos dados antes de retornar
return redoInfosCleaned
""" -------------------------------------------------------------------------------------------- """
""" --------------------------------------Limpa o vetor para manusear---------------------------- """
def cleanRedoInfos(file):
data = []
for line in file:
data.append(line.replace(">", "").replace("<", "").replace("(", " ").replace(")", " ").upper())
return data
""" -------------------------------------------------------------------------------------------- """
""" ----------------------Verifica se existe objeto dado ID por parâmetro---------------------- """
def getLinhaIndex(id, linhas):
for linha in linhas:
if linha.id == id:
return linha
return None
""" ------------------------------------------------------------------------------------------ """
""" --------------Parseamento das informações iniciais para preencher a tabela---------------- """
def parserInfoInit(infoInit):
vLinhas = []
for line in infoInit:
linha = Linha()
dirtyLine = line.split(',')
column = dirtyLine[0]
dirtyLine2 = dirtyLine[1].split('=')
value = int(dirtyLine2[1])
id = int(dirtyLine2[0])
founded = getLinhaIndex(id, vLinhas)
if founded == None:
linha.setId(id)
if column == 'A':
linha.setColumnA(value)
elif column == 'B':
linha.setColumnB(value)
vLinhas.append(linha)
else:
if column == 'A':
founded.setColumnA(value)
elif column == 'B':
founded.setColumnB(value)
return vLinhas
""" ------------------------------------------------------------------------------------------ """
""" ----------------------- Inserindo tupla no banco de dados ------------------------------------- """
def insertInDatabase( id, A, B):
sql = """ INSERT INTO log (id, a, b) VALUES ('%d','%d','%d'); """ % (id, A, B)
executa_db(sql)
""" -------------------------------------------------------------------------------------------- """
""" -----------------------------Percorre vetor e insere no banco------------------------------ """
def initTable(vLinhas):
for linha in vLinhas:
id = linha.id
A = linha.columnA
B = linha.columnB
insertInDatabase(id, A, B)
""" ------------------------------------------------------------------------------------------ """
""" ---------------------------------Criar Tabela log------------------------------------------ """
def createTable():
sql = 'DROP TABLE IF EXISTS log'
executa_db(sql)
sql = 'CREATE TABLE log (id INTEGER PRIMARY KEY, a INTEGER, b INTEGER);'
executa_db(sql)
""" -------------------------------------------------------------------------------------------- """
""" -------------------------------------- REDO FUNCTIONS ----------------------------------------- """
""" ------------------------------------ encontrou um 'START CKPT' --------------------------------- """
def startCheckpointFounded(dirtyLine):
line = dirtyLine.split(' ')
cleanLine = line[2].split(',')
return cleanLine
""" ------------------------------------------------------------------------------------------------ """
""" ------------------------------------ encontrou uma transação ----------------------------------- """
def transactionRedoFounded(dirtyLine):
line = dirtyLine.replace('\n', '')
cleanLine = line.split(',')
return cleanLine
""" ------------------------------------------------------------------------------------------------ """
""" ------------------------------------ encontrou um 'COMMIT' ------------------------------------- """
def commitRedoFounded(dirtyLine):
cleanedLine = dirtyLine.split(' ')
transaction = cleanedLine[1]
return transaction
""" ------------------------------------------------------------------------------------------------ """
""" ----------------------------- faz a iteração do mecanismo REDO ---------------------------------- """
def redoIteration(redoInfos):
#flags and vectors
toRedo = [] #vetor de transações para fzr o REDO
transactions = [] #vetor de transações
startedTransactions = []
openedCkptTransactions = []
ckptEndFounded = False
for line in redoInfos:
if line.startswith('END CKPT'):
ckptEndFounded = True
if line.startswith('START T'):
startedTransactions.append(line.replace('START ', '').replace('\n', ''))
if line.startswith('START CKPT') and ckptEndFounded == True:
openedCkptTransactions = startCheckpointFounded(line)
break # para não percorrer o resto do arquivo
if line.startswith('T'): #guarda as transações encontradas
transaction = transactionRedoFounded(line)
transactions.append(transaction)
if line.startswith('COMMIT'):
commit = commitRedoFounded(line)
toRedo.append(commit.replace('\n', '')) # Adiciona a transação ao vetor de transações a serem refeitas
""" print('\nAlterações encontradas:', transactions)
print('Transações abertas no checkpoint:', openedCkptTransactions)
print('Transações a serem refeitas com o REDO:', toRedo, "\n") """
for i in openedCkptTransactions:
if i not in toRedo:
print('Transação', i, 'não realizou o REDO')
for i in toRedo:
print('Transação', i, 'realizou o REDO')
redoExecution(toRedo,redoInfos)
""" -------------------------------------------------------------------------------------------- """
""" ----------------------------- faz a impressão da tabela ---------------------------------- """
def printTable(op):
sql = 'SELECT * FROM log'
result = executa_db(sql)
result.reverse()
if op == 1:
for linha in result:
print('\t',linha[0],',A =',linha[1],'\n','\t',linha[0],',B =',linha[2])
elif op == 2:
print('\t----------------------')
print('\t| ID: \t| A:\t| B: |')
print('\t----------------------')
for linha in result:
print('\t|', linha[0],'\t|', linha[1],'\t|', linha[2],'|')
print('\t----------------------')
""" -------------------------------------------------------------------------------------------- """
""" --------------- faz a busca das transações que precisam ser refeitas através do vetor toRedo--------------- """
def redoExecution(toRedo,redoInfos):
toRedoExecution = []
for redo in toRedo:
for line in redoInfos:
if line.startswith(redo):
transaction = transactionRedoFounded(line)
toRedoExecution.append(transaction)
redoTransaction(toRedoExecution)
""" ----------------------------------------------------------------------------------------------------------- """
""" --------------- faz a iteração para verificar se as transações já estão no banco --------------------------- """
def redoTransaction(toRedoExecution):
toRedoExecution.reverse() # verificar se a versão correta do dado é a do último commit
for transaction in toRedoExecution:
if verifyInDatabase(transaction) == True:
continue
#print('\n -> Transação já existe no banco de dados')
else:
#print('\nTransação não existe no banco de dados')
redoTransactionExecution(transaction)
""" ----------------------------------------------------------------------------------------------------------- """
""" ------------------------------------------- faz a verificação no banco de dados --------------------------- """
def verifyInDatabase(transaction):
if transaction[2] == 'A':
sql = """ SELECT A FROM log WHERE id = '%d'""" % (int(transaction[1]))
elif transaction[2] == 'B':
sql = """ SELECT B FROM log WHERE id = '%d'""" % (int(transaction[1]))
result = executa_db(sql)
if result[0][0] == int(transaction[3]):
return True #não precisa fazer update
else:
return False #precisa fazer update
""" ---------------------------------------------------------------------------------------------------------- """
""" ------------------------------------------- executa a transação que precisa fazer o REDO ----------------- """
def redoTransactionExecution(transaction):
#print('... Executando transação: ', transaction)
if transaction[2] == 'A':
sql = """ UPDATE log SET A = '%d' WHERE id = '%d'; """ % (int(transaction[3]), int(transaction[1]))
executa_db(sql)
elif transaction[2] == 'B':
sql = """ UPDATE log SET B = '%d' WHERE id = '%d'; """ % (int(transaction[3]), int(transaction[1]))
executa_db(sql)
else:
print('\n !!! Erro ao executar transação - COLUNA INEXISTENTE \n')
""" ---------------------------------------------------------------------------------------------------------- """
""" --------------------------------------- EXECUÇÃO PRINCIPAL --------------------------------------------------- """
createTable() # Cria a tabela log (id, columnA, columnB)
file = openFile(getParam(1)) # Abre o arquivo de entrada
allData = getData(file) # Pega os dados do arquivo e coloca em um vetor
header = getInfoInit(allData) # Pega os dados do vetor para preencher a tabela
redoInfos = getRedoInfos(allData) # Pega os dados do vetor para fazer o REDO
tuplas = parserInfoInit(header) # Pega os valores a serem inseridos no banco
initTable(tuplas) # Insere valores no Banco
""" print("\nDados totais do arquivo:\n")
printFile(data)
print("\nDados para adicionar na tabela:\n")
printFile(header)
print("\nDados para fazer o REDO:\n")
printFile(redoInfos)
print("\nDados LIMPOS para redo:\n")
printFile(redoInfosCleaned) """
""" print("\nDados da tabela antes do REDO:\n")
printTable(1) # Imprime a tabela log """
redoIteration(redoInfos) #Executa o REDO
print("\nDados da tabela depois do REDO:\n")
printTable(1)
file.close()