77730b3eb66837e088b4c33b72a319679fdd3a43
2 * Copyright (C) 2007 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * @defgroup request request
29 typedef struct request_t request_t
;
32 * A HTTP request, encapsulates FCGX_Request.
34 * The response is also handled through the request object.
39 * Add a cookie to the reply (Set-Cookie header).
41 * @param name name of the cookie to set
42 * @param value value of the cookie
44 void (*add_cookie
)(request_t
*this, char *name
, char *value
);
47 * Get a cookie the client sent in the request.
49 * @param name name of the cookie
50 * @return cookie value, NULL if no such cookie found
52 char* (*get_cookie
)(request_t
*this, char *name
);
55 * Get the request path relative to the application.
59 char* (*get_path
)(request_t
*this);
62 * Get the base path of the application.
66 char* (*get_base
)(request_t
*this);
69 * Get the remote host address of this request.
71 * @return host address as string
73 char* (*get_host
)(request_t
*this);
76 * Get the user agent string.
78 * @return user agent string
80 char* (*get_user_agent
)(request_t
*this);
83 * Get a post/get variable included in the request.
85 * @param name name of the POST/GET variable
86 * @return value, NULL if not found
88 char* (*get_query_data
)(request_t
*this, char *name
);
91 * Close the session and it's context after handling.
93 void (*close_session
)(request_t
*this);
96 * Has the session been closed by close_session()?
98 * @return TRUE if session has been closed
100 bool (*session_closed
)(request_t
*this);
103 * Redirect the client to another location.
105 * @param fmt location format string
106 * @param ... variable argument for fmt
108 void (*redirect
)(request_t
*this, char *fmt
, ...);
111 * Redirect the client to the referer.
113 void (*to_referer
)(request_t
*this);
116 * Set a template value.
118 * @param key key to set
119 * @param value value to set key to
121 void (*set
)(request_t
*this, char *key
, char *value
);
124 * Set a template value using format strings.
126 * Format string is in the form "key=value", where printf like format
127 * substitution occurs over the whole string.
129 * @param format printf like format string
130 * @param ... variable argument list
132 void (*setf
)(request_t
*this, char *format
, ...);
137 * The render() function additionally sets a HDF variable "base"
138 * which points to the root of the web application and allows to point to
139 * other targets without to worry about path location.
141 * @param template clearsilver template file location
143 void (*render
)(request_t
*this, char *template);
146 * Stream a format string to the client.
148 * Stream is not closed and may be called multiple times to allow
149 * server-push functionality.
151 * @param format printf like format string
152 * @param ... argmuent list to format string
153 * @return number of streamed bytes, < 0 if stream closed
155 int (*streamf
)(request_t
*this, char *format
, ...);
158 * Serve a request with headers and a body.
160 * @param headers HTTP headers, \n separated
161 * @param chunk body to write to output
163 void (*serve
)(request_t
*this, char *headers
, chunk_t chunk
);
166 * Increase the reference count to the stream.
168 * @return this with increased refcount
170 request_t
* (*get_ref
)(request_t
*this);
173 * Destroy the request_t.
175 void (*destroy
) (request_t
*this);
179 * Create a request from the fastcgi struct.
181 * @param fd file descripter opened with FCGX_OpenSocket
182 * @param debug no stripping, no compression, timing information
184 request_t
*request_create(int fd
, bool debug
);
186 #endif /** REQUEST_H_ @}*/