Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
b50890b44f |
@ -21,26 +21,35 @@ class AverageNode(
|
|||||||
if (packet.isFeedback)
|
if (packet.isFeedback)
|
||||||
changeValue(payload)
|
changeValue(payload)
|
||||||
else {
|
else {
|
||||||
|
computeAverage(payload)
|
||||||
|
sendFeedback(packet.senderAddress)
|
||||||
|
spreadNewValue()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun computeAverage(payload: Double) {
|
||||||
val newValue = (nodeValue + payload) / 2
|
val newValue = (nodeValue + payload) / 2
|
||||||
|
|
||||||
changeValue(newValue)
|
changeValue(newValue)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun sendFeedback(receiverAddress: Address) {
|
||||||
send(
|
send(
|
||||||
FeedbackEpidemicPacket(
|
FeedbackEpidemicPacket(
|
||||||
address,
|
address,
|
||||||
packet.senderAddress,
|
receiverAddress,
|
||||||
newValue,
|
nodeValue,
|
||||||
if (infectStrategy == InfectStrategy.PUSH)
|
if (infectStrategy == InfectStrategy.PUSH)
|
||||||
EpidemicPacket.Type.PUSH else EpidemicPacket.Type.REPLY,
|
EpidemicPacket.Type.PUSH else EpidemicPacket.Type.REPLY,
|
||||||
true
|
true
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
when (infectStrategy) {
|
|
||||||
InfectStrategy.PUSH -> sendPush()
|
|
||||||
InfectStrategy.PULL -> sendPull()
|
|
||||||
InfectStrategy.PUSHPULL -> sendPushPull()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun spreadNewValue() {
|
||||||
|
when (infectStrategy) {
|
||||||
|
InfectStrategy.PUSH -> sendPushToRandom()
|
||||||
|
InfectStrategy.PULL -> sendPullToRandom()
|
||||||
|
InfectStrategy.PUSHPULL -> sendPushPullToRandom()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,9 +37,9 @@ class DbNode<T>(
|
|||||||
|
|
||||||
override fun infect() {
|
override fun infect() {
|
||||||
when (infectStrategy) {
|
when (infectStrategy) {
|
||||||
InfectStrategy.PUSH -> sendPush()
|
InfectStrategy.PUSH -> sendPushToRandom()
|
||||||
InfectStrategy.PULL -> sendPull()
|
InfectStrategy.PULL -> sendPullToRandom()
|
||||||
InfectStrategy.PUSHPULL -> sendPushPull()
|
InfectStrategy.PUSHPULL -> sendPushPullToRandom()
|
||||||
}
|
}
|
||||||
|
|
||||||
Thread.sleep(DELTA)
|
Thread.sleep(DELTA)
|
||||||
|
@ -4,7 +4,6 @@ import util.network.epidemic.TimedPayload
|
|||||||
import util.network.simulator.Address
|
import util.network.simulator.Address
|
||||||
import util.network.simulator.Network
|
import util.network.simulator.Network
|
||||||
|
|
||||||
|
|
||||||
fun main() {
|
fun main() {
|
||||||
val network = Network()
|
val network = Network()
|
||||||
|
|
||||||
@ -29,4 +28,3 @@ fun main() {
|
|||||||
println((it as DbNode<Int>).nodeValue)
|
println((it as DbNode<Int>).nodeValue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ import util.network.epidemic.TimedPayload
|
|||||||
import util.network.simulator.Address
|
import util.network.simulator.Address
|
||||||
import util.network.simulator.Network
|
import util.network.simulator.Network
|
||||||
|
|
||||||
|
|
||||||
fun main() {
|
fun main() {
|
||||||
val network = Network()
|
val network = Network()
|
||||||
|
|
||||||
@ -29,4 +28,3 @@ fun main() {
|
|||||||
println((it as DbNode<Int>).nodeValue)
|
println((it as DbNode<Int>).nodeValue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ import util.network.epidemic.TimedPayload
|
|||||||
import util.network.simulator.Address
|
import util.network.simulator.Address
|
||||||
import util.network.simulator.Network
|
import util.network.simulator.Network
|
||||||
|
|
||||||
|
|
||||||
fun main() {
|
fun main() {
|
||||||
val network = Network()
|
val network = Network()
|
||||||
|
|
||||||
@ -29,4 +28,3 @@ fun main() {
|
|||||||
println((it as DbNode<Int>).nodeValue)
|
println((it as DbNode<Int>).nodeValue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@ class QueryNode<T>(
|
|||||||
address: Address,
|
address: Address,
|
||||||
network: Network,
|
network: Network,
|
||||||
initialValue: T,
|
initialValue: T,
|
||||||
|
private val demotivatingFactor: Int = 10,
|
||||||
bufferSize: Int = 1
|
bufferSize: Int = 1
|
||||||
) : EpidemicNode<T, FeedbackEpidemicPacket<T>>(
|
) : EpidemicNode<T, FeedbackEpidemicPacket<T>>(
|
||||||
address, network, initialValue, bufferSize
|
address, network, initialValue, bufferSize
|
||||||
@ -32,26 +33,25 @@ class QueryNode<T>(
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun receivePushOrReply(packet: FeedbackEpidemicPacket<T>) {
|
override fun receivePushOrReply(packet: FeedbackEpidemicPacket<T>) {
|
||||||
//println(packet)
|
when (nodeState) {
|
||||||
if (nodeState == State.REMOVED)
|
State.REMOVED -> return
|
||||||
return
|
State.INFECTED -> whenInfected(packet)
|
||||||
|
State.SUSCEPTIBLE -> whenSusceptible(packet)
|
||||||
if (nodeState == State.SUSCEPTIBLE) {
|
}
|
||||||
// println("susceptible")
|
|
||||||
nodeState = State.INFECTED
|
|
||||||
|
|
||||||
queryValue = packet.payload
|
|
||||||
sendPush(1)
|
|
||||||
|
|
||||||
if (packet.payload == nodeValue)
|
|
||||||
println("find on node $address")
|
|
||||||
} else {
|
|
||||||
if (packet.isFeedback && random.nextBoolean()) {
|
|
||||||
nodeState = State.REMOVED
|
|
||||||
println("removed")
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun whenSusceptible(packet: FeedbackEpidemicPacket<T>) {
|
||||||
|
nodeState = State.INFECTED
|
||||||
|
queryValue = packet.payload
|
||||||
|
|
||||||
|
sendPushToRandom(2)
|
||||||
|
|
||||||
|
if (packet.payload == nodeValue)
|
||||||
|
println("find ${packet.payload} on node $address")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun whenInfected(packet: FeedbackEpidemicPacket<T>) {
|
||||||
|
if (!packet.isFeedback)
|
||||||
send(
|
send(
|
||||||
FeedbackEpidemicPacket(
|
FeedbackEpidemicPacket(
|
||||||
address,
|
address,
|
||||||
@ -61,7 +61,9 @@ class QueryNode<T>(
|
|||||||
true
|
true
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
if (packet.isFeedback && random.nextDouble(1.0) < 1 / demotivatingFactor)
|
||||||
|
nodeState = State.REMOVED
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun receivePull(packet: FeedbackEpidemicPacket<T>) {
|
override fun receivePull(packet: FeedbackEpidemicPacket<T>) {
|
||||||
|
@ -5,11 +5,10 @@ import util.network.epidemic.packet.FeedbackEpidemicPacket
|
|||||||
import util.network.simulator.Address
|
import util.network.simulator.Address
|
||||||
import util.network.simulator.Network
|
import util.network.simulator.Network
|
||||||
|
|
||||||
|
|
||||||
fun main() {
|
fun main() {
|
||||||
val network = Network()
|
val network = Network()
|
||||||
|
|
||||||
repeat(10) {
|
repeat(20) {
|
||||||
QueryNode(Address(it), network, it * 2)
|
QueryNode(Address(it), network, it * 2)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -19,7 +18,7 @@ fun main() {
|
|||||||
val packet = FeedbackEpidemicPacket(
|
val packet = FeedbackEpidemicPacket(
|
||||||
alpha.address,
|
alpha.address,
|
||||||
beta.address,
|
beta.address,
|
||||||
14,
|
24,
|
||||||
EpidemicPacket.Type.PUSH,
|
EpidemicPacket.Type.PUSH,
|
||||||
false
|
false
|
||||||
)
|
)
|
||||||
@ -28,4 +27,3 @@ fun main() {
|
|||||||
|
|
||||||
network.start()
|
network.start()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,21 +41,21 @@ abstract class EpidemicNode<T, P: EpidemicPacket<T>>(
|
|||||||
type: EpidemicPacket.Type
|
type: EpidemicPacket.Type
|
||||||
): EpidemicPacket<T>
|
): EpidemicPacket<T>
|
||||||
|
|
||||||
protected fun sendPush(numberOfReceiver: Int = 1) {
|
protected fun sendPushToRandom(numberOfReceiver: Int = 1) {
|
||||||
sendToRandom(
|
sendToRandom(
|
||||||
EpidemicPacket.Type.PUSH,
|
EpidemicPacket.Type.PUSH,
|
||||||
numberOfReceiver
|
numberOfReceiver
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
protected fun sendPull(numberOfReceiver: Int = 1) {
|
protected fun sendPullToRandom(numberOfReceiver: Int = 1) {
|
||||||
sendToRandom(
|
sendToRandom(
|
||||||
EpidemicPacket.Type.PULL,
|
EpidemicPacket.Type.PULL,
|
||||||
numberOfReceiver
|
numberOfReceiver
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
protected fun sendPushPull(numberOfReceiver: Int = 1) {
|
protected fun sendPushPullToRandom(numberOfReceiver: Int = 1) {
|
||||||
sendToRandom(
|
sendToRandom(
|
||||||
EpidemicPacket.Type.PUSHPULL,
|
EpidemicPacket.Type.PUSHPULL,
|
||||||
numberOfReceiver
|
numberOfReceiver
|
||||||
@ -69,8 +69,6 @@ abstract class EpidemicNode<T, P: EpidemicPacket<T>>(
|
|||||||
protected abstract fun infect()
|
protected abstract fun infect()
|
||||||
|
|
||||||
protected fun onReceive(packet: P) {
|
protected fun onReceive(packet: P) {
|
||||||
//println(packet.type)
|
|
||||||
|
|
||||||
when (packet.type) {
|
when (packet.type) {
|
||||||
EpidemicPacket.Type.PUSH -> receivePushOrReply(packet)
|
EpidemicPacket.Type.PUSH -> receivePushOrReply(packet)
|
||||||
EpidemicPacket.Type.PULL -> receivePull(packet)
|
EpidemicPacket.Type.PULL -> receivePull(packet)
|
||||||
@ -125,5 +123,4 @@ abstract class EpidemicNode<T, P: EpidemicPacket<T>>(
|
|||||||
return EpidemicSender(threadGroup)
|
return EpidemicSender(threadGroup)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -8,6 +8,4 @@ interface EpidemicPacket<T>: PayloadPacket<T> {
|
|||||||
enum class Type {
|
enum class Type {
|
||||||
PUSH, PULL, PUSHPULL, REPLY
|
PUSH, PULL, PUSHPULL, REPLY
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,4 +10,3 @@ data class FeedbackEpidemicPacket<T>(
|
|||||||
override val type: EpidemicPacket.Type,
|
override val type: EpidemicPacket.Type,
|
||||||
override val isFeedback: Boolean
|
override val isFeedback: Boolean
|
||||||
) : EpidemicPacket<T>, FeedbackPacket
|
) : EpidemicPacket<T>, FeedbackPacket
|
||||||
|
|
||||||
|
@ -39,7 +39,8 @@ class TestNode(address: Address, network: Network): Node(address, network) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private inner class TestCommunicatorFactory(threadGroup: ThreadGroup): CommunicatorFactory(threadGroup) {
|
private inner class TestCommunicatorFactory(threadGroup: ThreadGroup) :
|
||||||
|
CommunicatorFactory(threadGroup) {
|
||||||
override fun createReceiver(): Receiver {
|
override fun createReceiver(): Receiver {
|
||||||
return TestReceiver(threadGroup)
|
return TestReceiver(threadGroup)
|
||||||
}
|
}
|
||||||
|
@ -6,4 +6,3 @@ data class NetworkPacket(
|
|||||||
override val senderAddress: Address,
|
override val senderAddress: Address,
|
||||||
override val receiverAddress: Address
|
override val receiverAddress: Address
|
||||||
) : Packet
|
) : Packet
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user