mirror of
https://github.com/openharmony/ace_napi.git
synced 2026-07-22 17:25:23 -04:00
75 lines
2.4 KiB
C++
75 lines
2.4 KiB
C++
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef FOUNDATION_ACE_NAPI_TEST_NATIVE_MODULE_NET_SERVER_NETSERVER_H
|
|
#define FOUNDATION_ACE_NAPI_TEST_NATIVE_MODULE_NET_SERVER_NETSERVER_H
|
|
|
|
#include "event_target.h"
|
|
|
|
#include "napi/native_api.h"
|
|
#include "napi/native_node_api.h"
|
|
#include "securec.h"
|
|
|
|
#include "uv.h"
|
|
|
|
#define EVENT_TYPE_BUFFER_SIZE 64
|
|
|
|
struct WriteReq {
|
|
uv_write_t req = { 0 };
|
|
uv_buf_t buf = { 0 };
|
|
};
|
|
|
|
struct NetClient {
|
|
uv_tcp_t tcp = { 0 };
|
|
uv_write_t req = { 0 };
|
|
uv_buf_t buf = { 0 };
|
|
NetClient* next = nullptr;
|
|
};
|
|
|
|
class NetServer : public EventTarget {
|
|
NetServer(napi_env env, napi_value thisVar);
|
|
virtual ~NetServer();
|
|
|
|
public:
|
|
int Start(int port);
|
|
void Stop();
|
|
|
|
static napi_value Export(napi_env env, napi_value exports);
|
|
|
|
private:
|
|
// Napi methods and properties
|
|
static napi_value JS_Constructor(napi_env env, napi_callback_info cbinfo);
|
|
static napi_value JS_Start(napi_env env, napi_callback_info cbinfo);
|
|
static napi_value JS_Stop(napi_env env, napi_callback_info cbinfo);
|
|
static napi_value JS_On(napi_env env, napi_callback_info cbinfo);
|
|
static napi_value JS_Once(napi_env env, napi_callback_info cbinfo);
|
|
static napi_value JS_Off(napi_env env, napi_callback_info cbinfo);
|
|
|
|
// C function and members
|
|
static void EchoAlloc(uv_handle_t* handle, size_t suggestedSize, uv_buf_t* buf);
|
|
static void AfterShutdown(uv_shutdown_t* req, int status);
|
|
static void AfterWrite(uv_write_t* req, int status);
|
|
static void AfterRead(uv_stream_t*, ssize_t nread, const uv_buf_t* buf);
|
|
static void OnClose(uv_handle_t* peer);
|
|
static void OnServerClose(uv_handle_t* handle);
|
|
static void OnConnection(uv_stream_t*, int status);
|
|
|
|
uv_loop_t* loop_;
|
|
int serverClosed_;
|
|
uv_tcp_t tcpServer_;
|
|
NetClient* clients_;
|
|
};
|
|
|
|
#endif /* FOUNDATION_ACE_NAPI_TEST_NATIVE_MODULE_NET_SERVER_NETSERVER_H */ |