7 Star 11 Fork 6

Gitee 极速下载/photonlibos

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/alibaba/PhotonLibOS
克隆/下载
photon.h 2.28 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright 2022 The Photon Authors
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.
*/
#pragma once
#include <inttypes.h>
#include <photon/common/callback.h>
namespace photon {
#define SHIFT(n) (1 << n)
const uint64_t INIT_EVENT_NONE = 0;
const uint64_t INIT_EVENT_EPOLL = SHIFT(0);
const uint64_t INIT_EVENT_IOURING = SHIFT(1);
const uint64_t INIT_EVENT_SELECT = SHIFT(2);
const uint64_t INIT_EVENT_KQUEUE = SHIFT(3);
const uint64_t INIT_EVENT_IOCP = SHIFT(4);
const uint64_t INIT_EVENT_EPOLL_NG = SHIFT(5);
const uint64_t INIT_EVENT_SIGNAL = SHIFT(10);
const uint64_t INIT_IO_NONE = 0;
const uint64_t INIT_IO_LIBAIO = SHIFT(0);
const uint64_t INIT_IO_LIBCURL = SHIFT(1);
const uint64_t INIT_IO_SOCKET_EDGE_TRIGGER = SHIFT(2);
const uint64_t INIT_IO_EXPORTFS = SHIFT(10);
const uint64_t INIT_IO_FSTACK_DPDK = SHIFT(20);
#if defined(__linux__)
const uint64_t INIT_EVENT_DEFAULT = INIT_EVENT_IOURING | INIT_EVENT_EPOLL | INIT_EVENT_SELECT | INIT_EVENT_SIGNAL;
const uint64_t INIT_IO_DEFAULT = INIT_IO_LIBAIO | INIT_IO_LIBCURL;
#else // macOS, FreeBSD ...
const uint64_t INIT_EVENT_DEFAULT = INIT_EVENT_KQUEUE | INIT_EVENT_SELECT | INIT_EVENT_SIGNAL;
const uint64_t INIT_IO_DEFAULT = INIT_IO_LIBCURL;
#endif
#undef SHIFT
struct PhotonOptions {
int libaio_queue_depth = 32;
bool use_pooled_stack_allocator = false;
bool bypass_threadpool = false;
};
/**
* @brief Initialize the main photon thread and ancillary threads by flags.
* Ancillary threads will be running in background.
* @return 0 for success
*/
int init(uint64_t event_engine = INIT_EVENT_DEFAULT,
uint64_t io_engine = INIT_IO_DEFAULT,
const PhotonOptions& options = {});
/**
* @brief Destroy/join ancillary threads, and finish the main thread.
*/
int fini();
/**
* @brief add callbacks on fini()
*/
void fini_hook(Delegate<void> handler);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/photonlibos.git
git@gitee.com:mirrors/photonlibos.git
mirrors
photonlibos
photonlibos
main

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385