I've been looking into learning erlang, and as a result, have been reading (okay, skimming) about the actor model.

From what I understand, the actor model is simply a set of functions (run within lightweight threads called "processes" in erlang), which communicate with each other only via message passing.

This seems fairly trivial to implement in C++, or any other language:

class BaseActor {
    std::queue<BaseMessage*> messages;
    CriticalSection messagecs;
    BaseMessage* Pop();
public:
    void Push(BaseMessage* message)
    {
        auto scopedlock = messagecs.AquireScopedLock();
        messagecs.push(message);
    }
    virtual void ActorFn() = 0;
    virtual ~BaseActor() {} = 0;
}

With each of your processes being an instance of a derived BaseActor. Actors communicate with each other only via message-passing. (namely, pushing). Actors register themselves with a central map on initialization which allows other actors to find them, and allows a central function to run through them.

Now, I understand I'm missing, or rather, glossing over one important issue here, namely: lack of yielding means a single Actor can unfairly consume excessive time. But are cross-platform coroutines the primary thing that makes this hard in C++? (Windows for instance has fibers.)

Is there anything else I'm missing, though, or is the model really this obvious?

I'm definitely not trying to start a flame war here, I just want to understand what I'm missing, as this is essentially what I already do to be able to somewhat reason about concurrent code.

link|improve this question

4  
The purpose of a programming language is to aid in the expression of an idea or specification. The actor model is implicit in Erlang, so while you can express your ideas in the model in either language, it'll be much better in Erlang because the boiler-plate is done for you. – GManNickG Nov 12 '11 at 21:22
2  
@GMan once the boiler plate is done (it would be a one-time think, I'd think) what is the advantage? – Seth Carnegie Nov 12 '11 at 21:30
3  
@SethCarnegie: That is indeed the gist of my question. – Jonathan Winks Nov 12 '11 at 21:43
9  
erlang processes can reside on the same machine or on different physical machines (and the actual code that you write to do this is more or less identical), so your example seems to be a gross simplification. And, what about hot swapping code, can c++ do that easily too? Are your c++ actors memory sandboxed? – Kevin Nov 12 '11 at 21:44
10  
If you can implement safe, reliable, concurrent and maintainable code in C++ with as little effort as people do in erlang, then go right ahead. There's tons missing from this snippet, though. The core of erlang is reliability. If a process is incapable of doing its task, it fails and that failure message is propagated through the system allowing complex graphs of dependency to reorganize themselves on various types of outages (or bugs). You can do it, but you should be asking why nobody does. That's what leads to new languages. – Dustin Nov 12 '11 at 22:26
show 8 more comments
feedback

4 Answers

up vote 25 down vote accepted

The C++ code does not deal with fairness, isolation, fault detection or distribution which are all things which Erlang brings as part of its actor model.

  • No actor is allowed to starve any other actor (fairness)
  • If one actor crashes, it should only affect that actor (isolation)
  • If one actor crashes, other actors should be able to detect and react to that crash (fault detection)
  • Actors should be able to communicate over a network as if they were on the same machine (distribution)

Also the beam SMP emulator brings JIT scheduling of the actors, moving them to the core which is at the moment the one with least utilization and also hibernates the threads on certain cores if they are no longer needed.

In addition all the libraries and tools written in Erlang can assume that this is the way the world works and be designed accordingly.

These things are not impossible to do in C++, but they get increasingly hard if you add the fact that Erlang works on almost all of the major hw and os configurations.

edit: Just found a description by Ulf Wiger about what he sees erlang style concurrency as.

link|improve this answer
1  
I would definitely include process isolation and error handling in the erlang concurrency model, otherwise what Ulf writes is very good. – rvirding Nov 13 '11 at 0:08
1  
All of the properties you listed are provided by the operating system to processes. C++ programs can easily make use of them, as can any other program. I think the key to Erlang is that its actors are far cheaper than OS processes for providing those properties. As a result, actors can be used more freely. – Karmastan Nov 13 '11 at 18:37
1  
@Karmastan Yes, Erlang processes are very cheap because/so that concurrency is the basic abstraction of structuring applications. We prefer to call them processes not actors, we hadn't heard of actors when we designed Erlang. :-) – rvirding Nov 13 '11 at 22:01
feedback

I don't like to quote myself, but from Virding's First Rule of Programming

Any sufficiently complicated concurrent program in another language contains an ad hoc informally-specified bug-ridden slow implementation of half of Erlang.

With respect to Greenspun. Joe (Armstrong) has a similar rule.

The problem is not to implement actors, that's not that difficult. The problem is to get everything working together: processes, communication, garbage collection, language primitives, error handling, etc ... For example using OS threads scales badly so you need to do it yourself. It would be like trying to "sell" an OO language where you can only have 1k objects and they are heavy to create and use. From our point of view concurrency is the basic abstraction for structuring applications.

Getting carried away so I will stop here.

link|improve this answer
feedback

There are actual actor libraries for C++:

And a list of some libraries for other languages.

link|improve this answer
feedback

Casablanca is another new kid on the actor model block. A typical asynchronous accept looks like this:

PID replyTo;
NameQuery request;
accept_request().then([=](std::tuple<NameQuery,PID> request)
{
   if (std::get<0>(request) == FirstName)
       std::get<1>(request).send("Niklas");
   else
       std::get<1>(request).send("Gustafsson");
}

(Personally, I find that libcppa does a better job at hiding the pattern matching behind a nice interface.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.