| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- #include "uv.h"
- const char* uv_handle_type_name(uv_handle_type type) {
- switch (type) {
- #define XX(uc,lc) case UV_##uc: return #lc;
- UV_HANDLE_TYPE_MAP(XX)
- #undef XX
- case UV_FILE: return "file";
- case UV_HANDLE_TYPE_MAX:
- case UV_UNKNOWN_HANDLE: return NULL;
- }
- return NULL;
- }
- uv_handle_type uv_handle_get_type(const uv_handle_t* handle) {
- return handle->type;
- }
- void* uv_handle_get_data(const uv_handle_t* handle) {
- return handle->data;
- }
- uv_loop_t* uv_handle_get_loop(const uv_handle_t* handle) {
- return handle->loop;
- }
- void uv_handle_set_data(uv_handle_t* handle, void* data) {
- handle->data = data;
- }
- const char* uv_req_type_name(uv_req_type type) {
- switch (type) {
- #define XX(uc,lc) case UV_##uc: return #lc;
- UV_REQ_TYPE_MAP(XX)
- #undef XX
- case UV_REQ_TYPE_MAX:
- case UV_UNKNOWN_REQ:
- default: /* UV_REQ_TYPE_PRIVATE */
- break;
- }
- return NULL;
- }
- uv_req_type uv_req_get_type(const uv_req_t* req) {
- return req->type;
- }
- void* uv_req_get_data(const uv_req_t* req) {
- return req->data;
- }
- void uv_req_set_data(uv_req_t* req, void* data) {
- req->data = data;
- }
- size_t uv_stream_get_write_queue_size(const uv_stream_t* stream) {
- return stream->write_queue_size;
- }
- size_t uv_udp_get_send_queue_size(const uv_udp_t* handle) {
- return handle->send_queue_size;
- }
- size_t uv_udp_get_send_queue_count(const uv_udp_t* handle) {
- return handle->send_queue_count;
- }
- uv_pid_t uv_process_get_pid(const uv_process_t* proc) {
- return proc->pid;
- }
- uv_fs_type uv_fs_get_type(const uv_fs_t* req) {
- return req->fs_type;
- }
- ssize_t uv_fs_get_result(const uv_fs_t* req) {
- return req->result;
- }
- void* uv_fs_get_ptr(const uv_fs_t* req) {
- return req->ptr;
- }
- const char* uv_fs_get_path(const uv_fs_t* req) {
- return req->path;
- }
- uv_stat_t* uv_fs_get_statbuf(uv_fs_t* req) {
- return &req->statbuf;
- }
- void* uv_loop_get_data(const uv_loop_t* loop) {
- return loop->data;
- }
- void uv_loop_set_data(uv_loop_t* loop, void* data) {
- loop->data = data;
- }
|