File: coroutine_multiple_stacks.cpp

package info (click to toggle)
sol2 3.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,096 kB
  • sloc: cpp: 43,816; ansic: 1,018; python: 356; sh: 288; makefile: 202
file content (51 lines) | stat: -rw-r--r-- 1,221 bytes parent folder | download
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
#define SOL_ALL_SAFETIES_ON 1
#include <sol/sol.hpp>

#include <string>
#include <iostream>

int main() {
	std::cout << "=== coroutine - multple threads ==="
	          << std::endl;

	sol::state lua;
	lua.open_libraries(sol::lib::base,
	     sol::lib::package,
	     sol::lib::coroutine);

	lua["print"] = [](sol::object v) {
		std::cout << v.as<std::string>() << std::endl;
	};
	lua["cyield"] = sol::yielding(
	     []() { std::cout << "YIELDING" << std::endl; });

	// notice the new threads!
	sol::thread thread1 = sol::thread::create(lua);
	sol::thread thread2 = sol::thread::create(lua);

	// notice we load it FROM the new "execution stack"
	// we need it to have thread1's stack perspective
	sol::coroutine co1 = thread1.state().load(R"(
		print("AA : Step 1")
		cyield()
		print("AA : Step 2")
	)");
	// call first coroutine here
	co1();

	// notice we load it FROM the new "execution stack"
	// we need it to have thread2's stack and perspective
	sol::coroutine co2 = thread2.state().load(R"(
		print("BB : Step 1")
		cyield()
		print("BB : Step 2")
	)");

	// run the other coroutine
	co2();
	co1();
	// tada! they run on
	// independent stacks

	return 0;
}