Git Product home page Git Product logo

tingx's Introduction

tingx

如何扩展一个模块

  • 继承Module类
  • 实现ProcessStatus Process(Descriptor* pDescriptor);
  • 使用ModuleRegister注册模块

examples

扩展一个echo模块

// echo_test.cc
#include "core/tingx_socket.h"
#include "core/tingx_config.h"
#include "core/tingx_utilies.h"
#include <iostream>
#include <sys/socket.h>


using namespace tingx;

class EchoTestModule : public Module { // 继承Module类
public:
    EchoTestModule(const char *name, ModuleType type, std::vector<Command>* com) : Module(name, type, com) { }
    virtual ProcessStatus Process(Descriptor* pDescriptor); // 实现process函数
};

ProcessStatus EchoTestModule::Process(Descriptor* pDescriptor) {
    std::string recvbuf(1024, 0);
    int n = read(pSocket->Getfd(), &recvbuf[0], recvbuf.length());
    if (n == 0) {
        return CLOSE;
    } else {
        write(pSocket->Getfd(), &recvbuf[0], recvbuf.length());
    }
    return OK;
}

static ModuleRegister<EchoTestModule> echo_test("EchoTest", ModuleType::NORMAL, nullptr);  // 注册模块

配置文件

# 设置EchoTest模块监听65535端口
EchoTest { 
    listen  65535;
}

tingx's People

Contributors

nu11able avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.