forked from Tencent/libco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
co_routine.main.h
119 lines (87 loc) · 3.13 KB
/
co_routine.main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
Author:sunny
Date:2013.8
*/
#ifndef __CO_ROUTINE_H__
#define __CO_ROUTINE_H__
#include <ucontext.h>
#include <stdint.h>
#include <sys/poll.h>
//1.struct
struct stCoRoutine_t;
struct stStackMemEnv_t;
struct stCoRoutineAttr_t
{
int stack_size;
char no_protect_stack;
char use_share_stack;
stStackMemEnv_t* stack_env;
//char reserve[ 58 ];
}__attribute__ ((packed));
struct stCoRoutineStat_t
{
unsigned long long hit_count;
unsigned long long not_hit_count;
unsigned long long alloc_buffer_size;
unsigned long long copy_out_size;
unsigned long long copy_out_count;
unsigned long long copy_in_size;
unsigned long long copy_in_count;
unsigned long long copy_resume_count;
unsigned long long normal_resume_count;
unsigned long long yield_cnt;
unsigned long long use_share_stack_cnt;
};
struct stCoEpoll_t;
typedef int (*pfn_co_eventloop_t)(void *);
typedef void *(*pfn_co_routine_t)( void * );
typedef void *(*pfn_sys_getspecific_t)( pthread_key_t key );
typedef int (*pfn_sys_setspecific_t)( pthread_key_t key,const void *value );
typedef void (*pfn_co_eventloop_start_t)(int iEventCnt);
typedef void (*pfn_co_eventloop_end_t)();
typedef void (*pfn_before_yield_cb_t)(void *);
//2.co_routine
int co_create( stCoRoutine_t **co,const stCoRoutineAttr_t *attr,void *(*routine)(void*),void *arg );
void co_resume( stCoRoutine_t *co );
void co_yield( stCoRoutine_t *co );
void co_yield_ct(); //ct = current thread
void co_yield_resume_ct( stCoRoutine_t *dest ); //ct = current thread
void co_release( stCoRoutine_t *co );
int co_add_persist_event( stCoEpoll_t *ctx, int fd , int events);
int co_yield_timeout(int timeout = 30000);
stCoRoutine_t *co_self();
bool co_is_main();
int co_poll( stCoEpoll_t *ctx,struct pollfd fds[], nfds_t nfds, int timeout_ms );
void co_eventloop( stCoEpoll_t *ctx,pfn_co_eventloop_t pfn,void *arg );
void co_reset_epolltimeout();
//3.specific
int co_setspecific( pthread_key_t key, const void *value );
void * co_getspecific( pthread_key_t key );
void co_set_sys_specific_func(pfn_sys_getspecific_t get, pfn_sys_setspecific_t set);
void co_set_eventloop_stat(pfn_co_eventloop_start_t start, pfn_co_eventloop_end_t end);
void co_set_before_yield_cb( pfn_before_yield_cb_t cb,void *arg );
//4.event
stCoEpoll_t * co_get_epoll_ct(); //ct = current thread
//5.hook syscall ( poll/read/write/recv/send/recvfrom/sendto )
void co_enable_hook_sys();
void co_disable_hook_sys();
bool co_is_enable_sys_hook();
void co_log_err( const char *fmt,... );
void co_set_env_list( const char *name[],size_t cnt);
//6.sync
struct stCoCond_t;
stCoCond_t *co_cond_alloc();
int co_cond_free( stCoCond_t * cc );
int co_cond_signal( stCoCond_t * );
int co_cond_broadcast( stCoCond_t * );
int co_cond_timedwait( stCoCond_t *,int timeout_ms );
typedef void (*pfn_co_before_yield)();
typedef void (*pfn_co_after_yield)();
void co_set_yield_func(pfn_co_after_yield before, pfn_co_after_yield after);
//protect
void SetUseProtect(bool bUseProtect);
void co_enable_share_stack(bool bEnableShareStack);
//for copy stack
stCoRoutineStat_t* co_get_curr_stat();
stStackMemEnv_t* co_alloc_stackmemenv(int iCount, int iStackSize);
#endif