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
|
/* -*- c++ -*- */
// $Id: HTTP_10.h 80826 2008-03-04 14:51:23Z wotte $
#ifndef JAWS_HTTP_10_H
#define JAWS_HTTP_10_H
#include "ace/RB_Tree.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "JAWS/Pipeline_Tasks.h"
// Forward declaration
class JAWS_HTTP_10_Request;
// Reading the initial request
class JAWS_HTTP_10_Read_Task : public JAWS_Pipeline_Handler
{
public:
JAWS_HTTP_10_Read_Task (void);
virtual ~JAWS_HTTP_10_Read_Task (void);
virtual int handle_put (JAWS_Data_Block *data, ACE_Time_Value *tv);
private:
};
// Parsing the request
class JAWS_HTTP_10_Parse_Task : public JAWS_Pipeline_Handler
{
public:
JAWS_HTTP_10_Parse_Task (void);
virtual ~JAWS_HTTP_10_Parse_Task (void);
virtual int handle_put (JAWS_Data_Block *data, ACE_Time_Value *tv);
};
// Write the response
class JAWS_HTTP_10_Write_Task : public JAWS_Pipeline_Handler
{
public:
JAWS_HTTP_10_Write_Task (void);
virtual ~JAWS_HTTP_10_Write_Task (void);
virtual int handle_put (JAWS_Data_Block *data, ACE_Time_Value *tv);
private:
};
// Helpers
class JAWS_HTTP_10_Helper
// Static functions to enhance the lives of HTTP programmers everywhere.
{
public:
static char *HTTP_decode_string (char *path);
// Decode '%' escape codes in a URI
};
#endif /* !defined (JAWS_HTTP_10_H) */
|