61e2d59f076b5e6dbe441708ac77041fa4965862
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
17 * @defgroup request request
27 typedef struct request_t request_t
;
30 * A HTTP request, encapsulates FCGX_Request.
32 * The response is also handled through the request object.
37 * Add a cookie to the reply (Set-Cookie header).
39 * @param name name of the cookie to set
40 * @param value value of the cookie
42 void (*add_cookie
)(request_t
*this, char *name
, char *value
);
45 * Get a cookie the client sent in the request.
47 * @param name name of the cookie
48 * @return cookie value, NULL if no such cookie found
50 char* (*get_cookie
)(request_t
*this, char *name
);
53 * Get the request path relative to the application.
57 char* (*get_path
)(request_t
*this);
60 * Get the base path of the application.
64 char* (*get_base
)(request_t
*this);
67 * Get the remote host address of this request.
69 * @return host address as string
71 char* (*get_host
)(request_t
*this);
74 * Get the user agent string.
76 * @return user agent string
78 char* (*get_user_agent
)(request_t
*this);
81 * Get a post/get variable included in the request.
83 * @param name name of the POST/GET variable
84 * @return value, NULL if not found
86 char* (*get_query_data
)(request_t
*this, char *name
);
89 * Close the session and it's context after handling.
91 void (*close_session
)(request_t
*this);
94 * Has the session been closed by close_session()?
96 * @return TRUE if session has been closed
98 bool (*session_closed
)(request_t
*this);
101 * Redirect the client to another location.
103 * @param fmt location format string
104 * @param ... variable argument for fmt
106 void (*redirect
)(request_t
*this, char *fmt
, ...);
109 * Redirect the client to the referer.
111 void (*to_referer
)(request_t
*this);
114 * Set a template value.
116 * @param key key to set
117 * @param value value to set key to
119 void (*set
)(request_t
*this, char *key
, char *value
);
122 * Set a template value using format strings.
124 * Format string is in the form "key=value", where printf like format
125 * substitution occurs over the whole string.
127 * @param format printf like format string
128 * @param ... variable argument list
130 void (*setf
)(request_t
*this, char *format
, ...);
135 * The render() function additionally sets a HDF variable "base"
136 * which points to the root of the web application and allows to point to
137 * other targets without to worry about path location.
139 * @param template clearsilver template file location
141 void (*render
)(request_t
*this, char *template);
144 * Stream a format string to the client.
146 * Stream is not closed and may be called multiple times to allow
147 * server-push functionality.
149 * @param format printf like format string
150 * @param ... argmuent list to format string
151 * @return number of streamed bytes, < 0 if stream closed
153 int (*streamf
)(request_t
*this, char *format
, ...);
156 * Serve a request with headers and a body.
158 * @param headers HTTP headers, \n separated
159 * @param chunk body to write to output
161 void (*serve
)(request_t
*this, char *headers
, chunk_t chunk
);
164 * Increase the reference count to the stream.
166 * @return this with increased refcount
168 request_t
* (*get_ref
)(request_t
*this);
171 * Destroy the request_t.
173 void (*destroy
) (request_t
*this);
177 * Create a request from the fastcgi struct.
179 * @param fd file descripter opened with FCGX_OpenSocket
180 * @param debug no stripping, no compression, timing information
182 request_t
*request_create(int fd
, bool debug
);
184 #endif /** REQUEST_H_ @}*/