blob: 4d00d7c85aed2727790142df209ae20768703bb8 [file] [log] [blame]
Roman Elizarov1e459602017-02-27 11:05:17 +03001/*
2 * Copyright 2016-2017 JetBrains s.r.o.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17// This file was automatically generated from coroutines-guide.md by Knit tool. Do not edit.
18package guide.sync.example07
19
Roman Elizarov96695782017-10-01 10:48:15 -070020import kotlinx.coroutines.experimental.*
Roman Elizarov96695782017-10-01 10:48:15 -070021import kotlinx.coroutines.experimental.channels.*
Roman Elizarov9fe5f462018-02-21 19:05:52 +030022import kotlin.system.*
23import kotlin.coroutines.experimental.*
Roman Elizarov1e459602017-02-27 11:05:17 +030024
25suspend fun massiveRun(context: CoroutineContext, action: suspend () -> Unit) {
26 val n = 1000 // number of coroutines to launch
27 val k = 1000 // times an action is repeated by each coroutine
28 val time = measureTimeMillis {
29 val jobs = List(n) {
30 launch(context) {
31 repeat(k) { action() }
32 }
33 }
34 jobs.forEach { it.join() }
35 }
36 println("Completed ${n * k} actions in $time ms")
37}
38
39// Message types for counterActor
40sealed class CounterMsg
41object IncCounter : CounterMsg() // one-way message to increment counter
Roman Elizarov256812a2017-07-22 01:00:30 +030042class GetCounter(val response: CompletableDeferred<Int>) : CounterMsg() // a request with reply
Roman Elizarov1e459602017-02-27 11:05:17 +030043
44// This function launches a new counter actor
Roman Elizarov66f018c2017-09-29 21:39:03 +030045fun counterActor() = actor<CounterMsg> {
Roman Elizarov1e459602017-02-27 11:05:17 +030046 var counter = 0 // actor state
Roman Elizarovc0e19f82017-02-27 11:59:14 +030047 for (msg in channel) { // iterate over incoming messages
Roman Elizarov1e459602017-02-27 11:05:17 +030048 when (msg) {
49 is IncCounter -> counter++
Roman Elizarov256812a2017-07-22 01:00:30 +030050 is GetCounter -> msg.response.complete(counter)
Roman Elizarov1e459602017-02-27 11:05:17 +030051 }
52 }
53}
54
55fun main(args: Array<String>) = runBlocking<Unit> {
Roman Elizarovc0e19f82017-02-27 11:59:14 +030056 val counter = counterActor() // create the actor
Roman Elizarov1e459602017-02-27 11:05:17 +030057 massiveRun(CommonPool) {
Roman Elizarovc0e19f82017-02-27 11:59:14 +030058 counter.send(IncCounter)
Roman Elizarov1e459602017-02-27 11:05:17 +030059 }
Roman Elizarov256812a2017-07-22 01:00:30 +030060 // send a message to get a counter value from an actor
61 val response = CompletableDeferred<Int>()
Roman Elizarovc0e19f82017-02-27 11:59:14 +030062 counter.send(GetCounter(response))
Roman Elizarov256812a2017-07-22 01:00:30 +030063 println("Counter = ${response.await()}")
Roman Elizarovc0e19f82017-02-27 11:59:14 +030064 counter.close() // shutdown the actor
Roman Elizarov1e459602017-02-27 11:05:17 +030065}