| 1 |
/* |
|---|
| 2 |
* Copyright (c) 2007, OmniTI Computer Consulting, Inc. |
|---|
| 3 |
* All rights reserved. |
|---|
| 4 |
* |
|---|
| 5 |
* Redistribution and use in source and binary forms, with or without |
|---|
| 6 |
* modification, are permitted provided that the following conditions are |
|---|
| 7 |
* met: |
|---|
| 8 |
* |
|---|
| 9 |
* * Redistributions of source code must retain the above copyright |
|---|
| 10 |
* notice, this list of conditions and the following disclaimer. |
|---|
| 11 |
* * Redistributions in binary form must reproduce the above |
|---|
| 12 |
* copyright notice, this list of conditions and the following |
|---|
| 13 |
* disclaimer in the documentation and/or other materials provided |
|---|
| 14 |
* with the distribution. |
|---|
| 15 |
* * Neither the name OmniTI Computer Consulting, Inc. nor the names |
|---|
| 16 |
* of its contributors may be used to endorse or promote products |
|---|
| 17 |
* derived from this software without specific prior written |
|---|
| 18 |
* permission. |
|---|
| 19 |
* |
|---|
| 20 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 21 |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 22 |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 23 |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|---|
| 24 |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|---|
| 25 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|---|
| 26 |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|---|
| 27 |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|---|
| 28 |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 29 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 30 |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 31 |
*/ |
|---|
| 32 |
|
|---|
| 33 |
#include "noit_defines.h" |
|---|
| 34 |
#include "noit_listener.h" |
|---|
| 35 |
#include "noit_http.h" |
|---|
| 36 |
|
|---|
| 37 |
#ifndef NOIT_REST_H |
|---|
| 38 |
#define NOIT_REST_H |
|---|
| 39 |
|
|---|
| 40 |
#define NOIT_CONTROL_GET 0x47455420 /* "GET " */ |
|---|
| 41 |
#define NOIT_CONTROL_HEAD 0x48454144 /* "HEAD" */ |
|---|
| 42 |
#define NOIT_CONTROL_POST 0x504f5354 /* "POST" */ |
|---|
| 43 |
#define NOIT_CONTROL_DELETE 0x44454c45 /* "DELE" */ |
|---|
| 44 |
#define NOIT_CONTROL_PUT 0x50555420 /* "PUT " */ |
|---|
| 45 |
|
|---|
| 46 |
typedef struct noit_http_rest_closure noit_http_rest_closure_t; |
|---|
| 47 |
|
|---|
| 48 |
typedef int (*rest_request_handler)(noit_http_rest_closure_t *, |
|---|
| 49 |
int npats, char **pats); |
|---|
| 50 |
|
|---|
| 51 |
struct noit_http_rest_closure { |
|---|
| 52 |
noit_http_session_ctx *http_ctx; |
|---|
| 53 |
acceptor_closure_t *ac; |
|---|
| 54 |
char *remote_cn; |
|---|
| 55 |
rest_request_handler fastpath; |
|---|
| 56 |
int nparams; |
|---|
| 57 |
char **params; |
|---|
| 58 |
int wants_shutdown; |
|---|
| 59 |
void *call_closure; |
|---|
| 60 |
void (*call_closure_free)(void *); |
|---|
| 61 |
}; |
|---|
| 62 |
|
|---|
| 63 |
API_EXPORT(void) noit_http_rest_init(); |
|---|
| 64 |
|
|---|
| 65 |
API_EXPORT(int) |
|---|
| 66 |
noit_http_rest_register(const char *method, const char *base, |
|---|
| 67 |
const char *expression, rest_request_handler f); |
|---|
| 68 |
|
|---|
| 69 |
API_EXPORT(xmlDocPtr) |
|---|
| 70 |
rest_get_xml_upload(noit_http_rest_closure_t *restc, |
|---|
| 71 |
int *mask, int *complete) ; |
|---|
| 72 |
|
|---|
| 73 |
API_EXPORT(void) |
|---|
| 74 |
noit_http_rest_closure_free(noit_http_rest_closure_t *restc); |
|---|
| 75 |
|
|---|
| 76 |
#endif |
|---|