forked from Travis-Sun/pywin32
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPyFilterObjects.h
More file actions
160 lines (140 loc) · 4.44 KB
/
Copy pathPyFilterObjects.h
File metadata and controls
160 lines (140 loc) · 4.44 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
======================================================================
Copyright 2002-2003 by Blackdog Software Pty Ltd.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and
its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that copyright notice and this permission
notice appear in supporting documentation, and that the name of
Blackdog Software not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.
BLACKDOG SOFTWARE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
NO EVENT SHALL BLACKDOG SOFTWARE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
======================================================================
*/
#ifndef __PyHFC_H
#define __PyHFC_H
#include "FilterContext.h"
#include "tupleobject.h"
class PyFILTER_VERSION :public PyObject
{
HTTP_FILTER_VERSION * m_pfv;
public:
PyFILTER_VERSION(HTTP_FILTER_VERSION* pfv);
~PyFILTER_VERSION();
public:
void Reset() {m_pfv = NULL;}
// Python support
static void deallocFunc(PyObject *ob);
static PyObject *getattro(PyObject *self, PyObject *ob);
static int setattro(PyObject *self, PyObject *obname, PyObject *v);
};
class PyHFC :public PyObject
{
CFilterContext * m_pfc;
public:
PyHFC(CFilterContext* pfc = NULL);
~PyHFC();
void Reset() {m_pfc = NULL;}
CFilterContext *GetFilterContext() {return m_pfc;}
public:
// Python support
static void deallocFunc(PyObject *ob);
static PyObject *getattro(PyObject *self, PyObject *obname);
static int setattro(PyObject *self, PyObject *obname, PyObject *v);
// class methods
static PyObject * GetData(PyObject *self, PyObject *args);
static PyObject * WriteClient(PyObject *self, PyObject *args);
static PyObject * AddResponseHeaders(PyObject *self, PyObject *args);
static PyObject * GetServerVariable(PyObject *self, PyObject *args);
// ServerSupportFunction implemented functions.
static PyObject * SendResponseHeader(PyObject *self, PyObject *args);
static PyObject * DisableNotifications(PyObject *self, PyObject *args);
static struct PyMemberDef members[];
protected:
DWORD m_notificationType;
DWORD m_revision;
BOOL m_isSecurePort;
};
class PyURL_MAP :public PyObject
{
public:
PyHFC *m_parent;
public:
PyURL_MAP(PyHFC *);
~PyURL_MAP();
HTTP_FILTER_URL_MAP *GetURLMap();
public:
// Python support
static void deallocFunc(PyObject *ob);
static PyObject *getattro(PyObject *self, PyObject *obname);
static int setattro(PyObject *self, PyObject *obname, PyObject *v);
};
class PyPREPROC_HEADERS :public PyObject
{
public:
PyHFC *m_parent;
public:
PyPREPROC_HEADERS(PyHFC *);
~PyPREPROC_HEADERS();
HTTP_FILTER_CONTEXT *GetFILTER_CONTEXT();
HTTP_FILTER_PREPROC_HEADERS *GetPREPROC_HEADERS();
public:
// Python support
static void deallocFunc(PyObject *ob);
};
class PyRAW_DATA:public PyObject
{
public:
PyHFC *m_parent;
public:
PyRAW_DATA(PyHFC *);
~PyRAW_DATA();
HTTP_FILTER_CONTEXT *GetFILTER_CONTEXT();
HTTP_FILTER_RAW_DATA *GetRAW_DATA();
public:
// Python support
static void deallocFunc(PyObject *ob);
static PyObject *getattro(PyObject *self, PyObject *obname);
static int setattro(PyObject *self, PyObject *obname, PyObject *v);
};
class PyAUTHENT :public PyObject
{
public:
PyHFC *m_parent;
public:
PyAUTHENT(PyHFC *);
~PyAUTHENT();
HTTP_FILTER_CONTEXT *GetFILTER_CONTEXT();
HTTP_FILTER_AUTHENT *GetAUTHENT();
public:
// Python support
static void deallocFunc(PyObject *ob);
static PyObject *getattro(PyObject *self, PyObject *obname);
static int setattro(PyObject *self, PyObject *obname, PyObject *v);
};
class PyFILTER_LOG:public PyObject
{
public:
PyHFC *m_parent;
public:
PyFILTER_LOG(PyHFC *);
~PyFILTER_LOG();
HTTP_FILTER_LOG *GetFilterLog();
public:
// Python support
static void deallocFunc(PyObject *ob);
static PyObject *getattro(PyObject *self, PyObject *obname);
static int setattro(PyObject *self, PyObject *obname, PyObject *v);
};
// error handling
static PyObject * PyHFC_Error = NULL;
PyObject * SetPyHFCError(char *fnName, long err=0);
#endif // __PyHFC_H