update makefile and misc notes

This commit is contained in:
Oskar Thoren 2019-01-09 08:16:52 -05:00
parent fad3987e80
commit 6091502053
3 changed files with 33 additions and 7 deletions

View File

@ -7,4 +7,4 @@ protoc_python: sync.proto
protoc -I=. --python_out=. ./sync.proto
run:
python -i test.py
python -i sync.py

View File

@ -6,5 +6,5 @@ As well as some PoC around it
```
make
make run # see test.py
make run # see sync.py
```

View File

@ -42,10 +42,10 @@ class NetworkSimulator():
# XXX: Should sender be here?
for sender, receiver, msg in self.queue[self.time]:
if random.random() < self.reliability:
print "*** message ok", sender.name, "->", receiver.name
#print "*** message ok", sender.name, "->", receiver.name
receiver.on_receive(sender, msg)
else:
print "*** message dropped", sender.name, "->", receiver.name
#else:
#print "*** message dropped", sender.name, "->", receiver.name
#print ""
#print "tick", self.time + 1
#print "-----------"
@ -260,9 +260,11 @@ def run(steps=10):
print "\nAssuming one group context (A-B share):"
# XXX: Conditional append to get message graph?
# TODO: Actually need to encode graph, client concern
local_appends = {
1: [[a, "hello world"]],
2: [[b, "hello"]],
1: [[a, "A: hello world"]],
2: [[b, "B: hello!"]],
}
for i in range(steps):
@ -282,6 +284,13 @@ def run(steps=10):
# XXX: Where is the sender stored? in msg?
print "A POV:", acc
acc = "\n"
for _, msg in b.messages.items():
acc += msg.payload.message.body + "\n"
print "B POV:", acc
run()
## TODO: Sync modes, interactive (+bw -latency) and batch (v.v.)
@ -321,3 +330,20 @@ run()
# XXX: Encode offline mostly
# XXX: How does B look at the message?
# XXX: If A,B reliability 0.1 and C 0.9
# How does that actually realistically look?
# Need to encode the other actions and offer etc
# Exponential backoff too probably
# Then C can offer messages to B, e.g.
# How viz message graph?
# What does a message look like, roughly:
# This is actually client specific!
ex = {'payload': "hello_world",
'content-type': "text/plain",
'signed_sender': 'A-signed-pubkey',
'dependencies': ["foo_message_id"]}