forked from zack-bitcoin/basiccoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.py
232 lines (230 loc) · 8.31 KB
/
tools.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
"""A bunch of functions that are used by multiple threads.
"""
import pt, hashlib, re, subprocess, time, copy, networking, custom, logging, random
from json import dumps as package, loads as unpackage
try:
from cdecimal import Decimal
except:
from decimal import Decimal
#print(json.dumps(x, indent=3, sort_keys=True)) for pretty printing
def cost_0(txs, address):
#cost of the zeroth confirmation transactions
total_cost = []
votecoin_cost = {}
#address=tools.db_get('address')
for Tx in filter(lambda t: address == addr(t), txs):
def spend_(total_cost=total_cost):
total_cost.append(custom.fee)
total_cost += [Tx['amount']]
def buy_shares_(total_cost=total_cost):
cost = cost_to_buy_shares(Tx)
total_cost.append(custom.buy_shares_fee)
total_cost.append(cost)
total_cost.append(int(abs(cost*0.01)))
Do={'spend':spend_,
'mint':(lambda: total_cost.append(-custom.block_reward))}
Do[Tx['type']]()
return sum(total_cost)
def fee_check(tx, txs, DB):
address = addr(tx)
cost=cost_0(txs+[tx], address)
acc=db_get(address, DB)
if int(acc['amount']) < cost:
log('insufficient money')
return False
return True
def get_(loc, thing):
if loc==[]: return thing
return get_(loc[1:], thing[loc[0]])
def set_(loc, dic, val):
get_(loc[:-1], dic)[loc[-1]] = val
return dic
def adjust(pubkey, DB, f):#location shouldn't be here.
acc = db_get(pubkey, DB)
f(acc)
db_put(pubkey, acc, DB)
def adjust_int(key, pubkey, amount, DB, add_block):
def f(acc, amount=amount):
if not add_block: amount=-amount
set_(key, acc, (get_(key, acc) + amount))
adjust(pubkey, DB, f)
def adjust_string(location, pubkey, old, new, DB, add_block):
def f(acc, old=old, new=new):
current=get_(location, acc)
if add_block:
set_(location, acc, new)
else: set_(location, acc, old)
adjust(pubkey, DB, f)
def adjust_dict(location, pubkey, remove, dic, DB, add_block):
def f(acc, remove=remove, dic=dic):
current=get_(location, acc)
if remove != add_block:# 'xor' and '!=' are the same.
current=dict(dic.items() + current.items())
else:
try:
current.pop(dic.keys()[0])
except:
log('current dic: ' +str(current) + ' ' +str(dic)+' '+str(location))
set_(location, acc, current)
adjust(pubkey, DB, f)
def adjust_list(location, pubkey, remove, item, DB, add_block):
def f(acc, remove=remove, item=item):
current=get_(location, acc)
if remove != (add_block):# 'xor' and '!=' are the same.
current.append(item)
else:
current.remove(item)
set_(location, acc, current)
adjust(pubkey, DB, f)
def symmetric_put(id_, dic, DB, add_block):
if add_block: db_put(id_, dic, DB)
else: db_delete(id_, DB)
def add_peer(peer, current_peers=0):
if current_peers==0:
current_peers=db_get('peers_ranked')
if peer[0][0] not in map(lambda x: x[0][0], current_peers):
log('add peer: '+str(peer))
current_peers.append([peer, 5, '0', 0])
db_put('peers_ranked',current_peers)
def dump_out(queue):
while not queue.empty():
try:
queue.get(False)
except:
pass
def heart_monitor(queue):
beats={}
while True:
time.sleep(0.5)
t=time.time()
for beat in beats:
if t-beats[beat]>30:
beats[beat]=t
log('thread has an error: ' +str(beat))
while not(queue.empty()):
time.sleep(0.01)
beat=queue.get(False)
#log('heart monitor: ' +str(beat))
if beat=='stop': return
if beat not in beats:
log('adding thread: ' +str(beat))
beats[beat]=t
logging.basicConfig(filename=custom.log_file, level=logging.INFO)
def log(junk):
if isinstance(junk, Exception):
logging.exception(junk)
else:
logging.info(str(junk))
def can_unpack(o):
try:
unpackage(o)
return True
except:
return False
def addr(tx): return make_address(tx['pubkeys'], len(tx['signatures']))
def sign(msg, privkey): return pt.ecdsa_sign(msg, privkey)
def verify(msg, sig, pubkey): return pt.ecdsa_verify(msg, sig, pubkey)
def privtopub(privkey): return pt.privtopub(privkey)
def hash_(x): return hashlib.sha384(x).hexdigest()[0:64]
def det_hash(x):
"""Deterministically takes sha256 of dict, list, int, or string."""
return hash_(package(x, sort_keys=True))
def POW(block):
#halfHash = det_hash(block)
h=det_hash(block)
block[u'nonce'] = random.randint(0, 10000000000000000000000000000000000000000)
a='F'*64
while det_hash(a) > custom.buy_shares_target:
block[u'nonce'] += 1
a={u'nonce': block['nonce'], u'halfHash': h}
return block
def make_half_way(block):
a = copy.deepcopy(block)
a.pop('nonce')
return({u'nonce': block['nonce'], u'halfHash': det_hash(a)})
def base58_encode(num):
num = int(num, 16)
alphabet = '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ'
base_count = len(alphabet)
encode = ''
if num < 0:
return ''
while (num >= base_count):
mod = num % base_count
encode = alphabet[mod] + encode
num = num / base_count
if num:
encode = alphabet[num] + encode
return encode
def make_address(pubkeys, n):
"""n is the number of pubkeys required to spend from this address."""
return (str(len(pubkeys)) + str(n) +
base58_encode(det_hash({str(n): pubkeys}))[0:29])
def buffer_(str_to_pad, size):
return str_to_pad.rjust(size, '0')
def E_check(dic, key, type_):
if not isinstance(type_, list): type_=[type_]
if len(type_)==0: return False#to end the recursion.
if not key in dic: return False
if isinstance(type_[0], type):
if not isinstance(dic[key], type_[0]): return E_check(dic, key, type_[1:])
else:
if not dic[key] == type_[0]: return E_check(dic, key, type_[1:])
return True
def is_number(s):
try:
int(s)
return True
except:
return False
def kill_processes_using_ports(ports):
popen = subprocess.Popen(['netstat', '-lpn'],
shell=False,
stdout=subprocess.PIPE)
(data, err) = popen.communicate()
pattern = "^tcp.*((?:{0})).* (?P<pid>[0-9]*)/.*$"
pattern = pattern.format(')|(?:'.join(ports))
prog = re.compile(pattern)
for line in data.split('\n'):
match = re.match(prog, line)
if match:
pid = match.group('pid')
subprocess.Popen(['kill', '-9', pid])
def s_to_db(c):
response=networking.send_command(['localhost', custom.database_port], c)
if (type(response)==dict and 'error' in response):
time.sleep(0.001)
log('s to db failed at '+str(c))
return s_to_db(c)
else:
return response
def db_get(n, DB={}): return s_to_db({'type':'get', 'args':[str(n)]})
def db_put(key, dic, DB={}): return s_to_db({'type':'put', 'args':[str(key), dic]})
def db_delete(key, DB={}): return s_to_db({'type':'delete', 'args':[str(key)]})#db_put(key, 'undefined', DB)
def db_existence(key, DB={}): return s_to_db({'type':'existence', 'args':[str(key)]})
def count(address, DB):
# Returns the number of transactions that pubkey has broadcast.
def zeroth_confirmation_txs(address, DB):
def is_zero_conf(t):
other_address=make_address(t['pubkeys'], len(t['signatures']))
return address == other_address
return len(filter(is_zero_conf, db_get('txs')))
current = db_get(address, DB)['count']
zeroth=zeroth_confirmation_txs(address, DB)
return current+zeroth
def fork_check(newblocks, DB, length, block):
recent_hash = det_hash(block)
their_hashes = map(lambda x: x['prevHash'] if x['length']>0 else 0, newblocks)+[det_hash(newblocks[-1])]
b=(recent_hash not in their_hashes) and length>newblocks[0]['length']-1 and length<newblocks[-1]['length']
return b
if __name__ == "__main__":
a=POW({'a':'b'})
print(a)
'''
time_0=time.time()
for i in range(100):
timea=time.time()
POW({'empty':0})
print(time.time()-timea)
print(time.time()-time_0)
'''