revert message_data_reader.py to the state it was in before I used it for debugging
This commit is contained in:
parent
176340c22d
commit
035d3af612
|
@ -54,38 +54,13 @@ def readPubkeys():
|
||||||
|
|
||||||
def readInventory():
|
def readInventory():
|
||||||
print 'Printing everything in inventory table:'
|
print 'Printing everything in inventory table:'
|
||||||
item = '''select hash, objecttype, streamnumber, payload, receivedtime, first20bytesofencryptedmessage from inventory where objecttype = 'msg' '''
|
item = '''select hash, objecttype, streamnumber, payload, receivedtime from inventory'''
|
||||||
parameters = ''
|
parameters = ''
|
||||||
cur.execute(item, parameters)
|
cur.execute(item, parameters)
|
||||||
output = cur.fetchall()
|
output = cur.fetchall()
|
||||||
for row in output[:50]:
|
for row in output:
|
||||||
hash, objecttype, streamnumber, payload, receivedtime, first20bytesofencryptedmessage = row
|
hash, objecttype, streamnumber, payload, receivedtime = row
|
||||||
print 'Hash:', hash.encode('hex'), objecttype, streamnumber, '\t', 'first20bytesofencryptedmessage:', first20bytesofencryptedmessage.encode('hex'), '\t', payload.encode('hex'), '\t', unicode(strftime('%a, %d %b %Y %I:%M %p',localtime(receivedtime)),'utf-8')
|
print 'Hash:', hash.encode('hex'), objecttype, streamnumber, '\t', payload.encode('hex'), '\t', unicode(strftime('%a, %d %b %Y %I:%M %p',localtime(receivedtime)),'utf-8')
|
||||||
|
|
||||||
def readInventory2():
|
|
||||||
searchValue = ' '
|
|
||||||
|
|
||||||
item = '''PRAGMA case_sensitive_like = true '''
|
|
||||||
parameters = ''
|
|
||||||
cur.execute(item, parameters)
|
|
||||||
|
|
||||||
searchValue = string.replace(searchValue,'e','ee')
|
|
||||||
searchValue = string.replace(searchValue,'%','e%')
|
|
||||||
searchValue = string.replace(searchValue,'_','e_')
|
|
||||||
|
|
||||||
print 'Printing subset of inventory table:'
|
|
||||||
item = '''SELECT substr(payload,20) FROM inventory'''
|
|
||||||
#parameters = ('%'+ searchValue + '%',)
|
|
||||||
#print repr(parameters), len(parameters[0])
|
|
||||||
parameters = ''
|
|
||||||
cur.execute(item, parameters)
|
|
||||||
output = cur.fetchall()
|
|
||||||
print 'Number of results:', len(output)
|
|
||||||
for row in output[:100]:
|
|
||||||
print row
|
|
||||||
#hash, objecttype, streamnumber, payload, receivedtime = row
|
|
||||||
#print 'Hash:', hash.encode('hex'), objecttype, streamnumber, '\t', payload.encode('hex'), '\t', unicode(strftime('%a, %d %b %Y %I:%M %p',localtime(receivedtime)),'utf-8')
|
|
||||||
print 'done'
|
|
||||||
|
|
||||||
|
|
||||||
def takeInboxMessagesOutOfTrash():
|
def takeInboxMessagesOutOfTrash():
|
||||||
|
@ -123,13 +98,12 @@ def vacuum():
|
||||||
#takeInboxMessagesOutOfTrash()
|
#takeInboxMessagesOutOfTrash()
|
||||||
#takeSentMessagesOutOfTrash()
|
#takeSentMessagesOutOfTrash()
|
||||||
#markAllInboxMessagesAsUnread()
|
#markAllInboxMessagesAsUnread()
|
||||||
#readInbox()
|
readInbox()
|
||||||
#readSent()
|
#readSent()
|
||||||
#readPubkeys()
|
#readPubkeys()
|
||||||
#readSubscriptions()
|
#readSubscriptions()
|
||||||
readInventory()
|
#readInventory()
|
||||||
#vacuum() #will defragment and clean empty space from the messages.dat file.
|
#vacuum() #will defragment and clean empty space from the messages.dat file.
|
||||||
#readInventory2()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user