lkpworkspace / myframe

C++ application framework(基于actor模型,微内核设计理念实现的C++组件化编程应用程序框架)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

myframe

myframe

概述

C++实现的actors框架,程序由actor和worker组成;
actor基于消息驱动,actor之间可以进行消息传递;
worker自驱动,可以通过消息与actor交互;
组件化的编程模式可以提高代码复用,降低程序耦合度。

开发/运行环境

操作系统: Ubuntu 18.04+
开发语言:C++17

安装依赖

参考 github ci

构建

mkdir build
cd build
cmake ..
# 默认安装到HOME目录
make -j4 install

运行

cd ~/myframe/bin
./launcher -p app

Hello,World 示例

#include <string.h>
#include <iostream>

#include "myframe/msg.h"
#include "myframe/actor.h"

using namespace myframe;
/*
  该actor实现:
    自己给自己发送一条消息
*/
class Demo : public Actor
{
 public:
  /* actor模块加载完毕后调用 */
  int Init(const char* param) override {
    /* 构造 hello,world 消息发送给自己 */
    auto mailbox = GetMailbox();
    mailbox->Send("actor.demo.echo_hello_world", std::make_shared<Msg>("hello,world"));
  }

  void Proc(const std::shared_ptr<const Msg>& msg) override {
    /* 获得文本消息, 打印 源actor地址 目的actor地址 消息内容 */
    std::cout << *msg << ": " << msg->GetData() << std::endl;
  }
};

/* 框架根据描述文件创建actor实例函数 */
extern "C" std::shared_ptr<Actor> actor_create(const std::string& actor_name) {
  if (actor_name == "demo") {
    return std::make_shared<Demo>();
  }
  return nullptr;
}

actor配置文件

{
  "type":"library",
  "lib":"libdemo.so",
  "actor":{
    "demo":[
      {
        "instance_name":"echo_hello_world",
        "instance_params":""
      }
    ]
  }
}
  • type: [ library | class ]
  • lib: 库名称
  • actor: 需要创建的actor列表
    • demo: actor名
      • instance_name:实例名称
      • instance_params:实例参数

程序接口

文档

About

C++ application framework(基于actor模型,微内核设计理念实现的C++组件化编程应用程序框架)

License:MIT License


Languages

Language:C++ 92.9%Language:CMake 4.4%Language:Python 2.1%Language:Shell 0.3%Language:C 0.3%