Writing Handler Functions
The handler function is the key component of a continuation. It is supposed to examine the event and event data, and then do something appropriate. The probable action might be to schedule another event for the continuation to received, to open up a connection to a server, or simply to destroy itself.
The continuation’s handler function is a function of type
TSEventFunc
. Its arguments are a continuation, an event, and a
pointer to some data (this data is passed to the continuation by the
caller - do not confuse this data with the continuation’s own data,
associated by TSContDataSet()
). When the continuation is called back,
the continuation and an event are passed to the handler function. The
continuation is a handle to the same continuation that is invoked. The
handler function typically has a switch statement to handle the events
it receives:
static int some_handler (TScont contp, TSEvent event, void *edata)
{
// .....
switch(event) {
case TS_EVENT_SOME_EVENT_1:
do_some_thing_1;
return;
case TS_EVENT_SOME_EVENT_2:
do_some_thing_2;
return;
case TS_EVENT_SOME_EVENT_3:
do_some_thing_3;
return;
default: break;
}
return 0;
}
Caution
You might notice that a continuation cannot determine if more events are
“in flight” toward it. Do not use TSContDestroy()
to delete a
continuation before you make sure that all incoming events, such as
those sent because of TSHttpTxnHookAdd()
, have been handled.
Caution
TS_HTTP_SEND_REQUEST_HDR_HOOK may callback several times when the OS crashed. Be careful to use functions such as TSContDestroy in TS_HTTP_SEND_REQUEST_HDR_HOOK hook.
The following table lists events and the corresponding type of void* data passed to handler functions:
Event |
Event Sender |
Data Type |
---|---|---|
|
||
Cache VC |
||
TS_CACHE_ERROR code |
||
Cache VC |
||
TS_CACHE_ERROR code |
||
TS_CACHE_ERROR code |
||
|
||
|
||
|
||
The continuation functions are listed below: