The well known event-drive message framework such as libevent, libuv, was wide used on many open source project, such like node-js, but the drawback is
Grain size of such framework commonly use thread as their execution unit/boundary, for example, if we want a small float64 Pi (int precious) service in our system, what choice do you prefer on IPC channel?
Sometime, this service was not necessary outside one task domain, but we still want to declare its interface clearly. Such Pi() may need CPU intensity work during its execution time, we don’t want to couple with our app code with function call mode as it may block the Parallel work in this transition instead we want parallel our work as much as possible.
Coroutine? Yes, but neither C or C++ don’t have a good design patterns for coroutine, Golang has a good design pattern on Goroutine, but golang is not suitable for the resource limited HW(maybe later?), another downside of Golang is it seems like it has no good way to binding a task into one/some thread, we want to keep the cache HOT instead of reloaded it every time when it was called.
Such framework was not well scalable on multi-thread environment, it will get performance degradation when process the CPU intensity task, such as computation work. Such as in Node.js project, developer will relay such task to another thread with built-in channel (work_thread). If you use libuv as the skeleton of your C/C++ project, you have more handy work to do that. Even in the Node.js project, the best practice is use the single-thread mode as your best, otherwise Node.js is not the origin design purpose of Node.js. It is was not designed to do such CPU intensity task in the first day of Node.js.
Inside of one small project, we also want to declare our interface firstly (Programming towards Interface), then the project will be smoothly depart them into different teams. But from more higher site of view, those internal interface was invisible, all the message interactive was happened internally.
Then we need
So, we want
Some open source project use in-house implementation on such challenge.
Communication with a shared global list and a global lock between threads, No notification scheme. Producer grad the lock firstly and insert the data into the list, release the lock. Consumer POLL the list to see whether or not changed, if changed, then grad the lock, fetch the newer data and release the lock.
Drawback is:
Actor design pattern was wide used on many language or framework as its built-in. such as Erlang, Golang(not exactly), Akka. Can we make it in a small project with less 10K code size?
ROOM recommended use the uniform formated message talking between actors, no sync primitive needed. The traditional IPC methods will be translated into native message with additional PROXY actor implemented. The following picture will demonstrate the relation between actor, threads, process.
As far as know, ROOM was wide used in Tele, Auto, Aerospace industry, the common characteristic of both area is it require more serious requirement than the toy electronics, If you look at the customer of the both commercial ROOM tools, Ericsson, Bosch, etc.
Some disadvantages in ROOM are:
My experience is
In our project, we use eTrice to translate some existed project into new actor way of working with some additional home work based on that.