File:  [ELWIX - Embedded LightWeight unIX -] / libaitwww / inc / aitwww.h
Revision 1.6: download - view: text, annotated - select for diffs - revision graph
Thu May 30 09:25:35 2013 UTC (10 years, 11 months ago) by misho
Branches: MAIN
CVS tags: www3_4, www3_3, www3_2, www3_1, WWW3_3, WWW3_2, WWW3_1, WWW3_0, HEAD
version 3.0

/*************************************************************************
* (C) 2012 AITNET ltd - Sofia/Bulgaria - <misho@aitnet.org>
*  by Michael Pounov <misho@elwix.org>
*
* $Author: misho $
* $Id: aitwww.h,v 1.6 2013/05/30 09:25:35 misho Exp $
*
**************************************************************************
The ELWIX and AITNET software is distributed under the following
terms:

All of the documentation and software included in the ELWIX and AITNET
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>

Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
	by Michael Pounov <misho@elwix.org>.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
   must display the following acknowledgement:
This product includes software developed by Michael Pounov <misho@elwix.org>
ELWIX - Embedded LightWeight unIX and its contributors.
4. Neither the name of AITNET nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
*/
#ifndef __AITWWW_H
#define __AITWWW_H


#include <sys/types.h>
#include <sys/queue.h>
#include <sys/uio.h>
#include <elwix.h>


/* URL staff ... */

typedef struct _tagURLItem {
	int	vallen;
	char	*value;
} url_Item_t;

struct tagIOURL {
	ait_val_t	url_line;

	ait_val_t	url_tech;
	ait_val_t	url_user;
	ait_val_t	url_pass;
	ait_val_t	url_host;
	ait_val_t	url_port;
	ait_val_t	url_path;
	ait_val_t	url_args;

	unsigned char	*url_reserved;
};

struct tagReqXML {
	unsigned char	xml_line[BUFSIZ];

	url_Item_t	xml_namespace;
	union {
		url_Item_t	container;
		url_Item_t	path;
	}		xml_node;
	url_Item_t	xml_data;
	url_Item_t	xml_attribute;
	url_Item_t	xml_value;
};

/* CGI variables */

struct tagCGI {
	ait_val_t		*cgi_name;
	ait_val_t		*cgi_value;

	SLIST_ENTRY(tagCGI)	cgi_node;
};
typedef SLIST_HEAD(, tagCGI) cgi_t;

struct tagMIME;
typedef SLIST_HEAD(, tagMIME) mime_t;

struct tagMIME {
	cgi_t			mime_header;

	struct iovec		mime_body;
	struct iovec		mime_prolog;
	struct iovec		mime_epilog;

	mime_t			*mime_attach;

	SLIST_ENTRY(tagMIME)	mime_node;
};

typedef int (*list_cb_t)(struct tagCGI *, void *);


// www_GetErrno() Get error code of last operation
int www_GetErrno();
// www_GetError() Get error text of last operation
const char *www_GetError();


/*
 * www_initCGI() - Init CGI program
 *
 * return: NULL error or allocated cgi session
 */
cgi_t *www_initCGI(void);
/*
 * www_closeCGI() - Close and free all CGI resources
 *
 * @cgi = Inited cgi session
 * return: none
 */
void www_closeCGI(cgi_t ** __restrict cgi);
#define www_freeAttributes	www_closeCGI
/*
 * www_parseQuery() - Parse CGI query string
 *
 * @str = String
 * return: NULL error or allocated cgi session
 */
cgi_t *www_parseQuery(const char *str);
/*
 * www_parseMultiPart() - Parse Multi part POST CGI query string
 *
 * @str = String
 * @ctlen = Content length
 * @ct = Content type
 * return: NULL error or allocated cgi session
 */
cgi_t *www_parseMultiPart(const char *str, int ctlen, const char *ct);
/*
 * www_getValue() - Get Value from CGI session
 *
 * @cgi = Inited cgi session
 * @name = Name of cgi variable
 * return: NULL not found or !=NULL value
 */
const char *www_getValue(cgi_t * __restrict cgi, const char *name);
/*
 * www_addValue() - Add new or update if exists CGI variable
 *
 * @cgi = Inited cgi session
 * @name = Name of cgi variable
 * @value = Value of cgi variable
 * return: -1 error, 0 add new one or 1 updated variable
 */
int www_addValue(cgi_t * __restrict cgi, const char *name, const char *value);
/*
 * www_delPair() - Delete CGI variable from session
 *
 * @cgi = Inited cgi session
 * @name = Name of cgi variable
 * return: -1 error, 0 not found or 1 deleted ok
 */
int www_delPair(cgi_t * __restrict cgi, const char *name);
/*
 * www_listPairs() - Walk over CGI session variables
 *
 * @cgi = Cgi session
 * @func = If !=NULL call function for each element
 * @arg = Optional argument pass through callback
 * return: -1 error or >-1 number of elements
 */
int www_listPairs(cgi_t * __restrict cgi, list_cb_t func, void *arg);

/*
 * www_header() - Output initial html header
 *
 * @output = file handle
 * return: <1 error or >0 writed bytes
 */
int www_header(FILE *output);

/*
 * www_parseAttributes() - Parse attributes
 *
 * @ct = Content type
 * return: NULL error or !=NULL attributes
 */
cgi_t *www_parseAttributes(const char **ct);
/*
 * www_getAttribute() - Get Attribute from attribute session
 *
 * @cgi = Inited attribute session
 * @name = Name of attribute variable
 * return: NULL not found or !=NULL value
 */
ait_val_t *www_getAttribute(cgi_t * __restrict cgi, const char *name);


/*
 * www_cmp() - Compare two string
 *
 * @ct = content text from www
 * @s = string
 * return: 0 are equal or !0 are different
 */
int www_cmp(const char *ct, const char *s);
/*
 * www_cmptype() - Compare context type
 *
 * @ct = content text from www
 * @type = content type
 * return: 0 are equal or !0 are different
 */
int www_cmptype(const char *ct, const char *type);
/*
 * www_getpair() - Get AV pair from WWW query string
 *
 * @str = query string
 * @delim = delimiter
 * return: NULL error or AV pair, must be e_free() after use!
 */
ait_val_t *www_getpair(char ** __restrict str, const char *delim);
/*
 * www_x2c() - Hex from string to digit
 *
 * @str = string
 * return: digit
 */
char www_x2c(const char *str);
/*
 * www_unescape() - Unescape/decode WWW query string to host string
 *
 * @str = string
 * return: none
 */
void www_unescape(char * __restrict str);
/*
 * www_undot() - Undotted and clean WWW query filename
 *
 * @pname = query filename
 * return: =NULL error or !=NULL allocated valid filename, after use you must call ait_freeVar()
 */
ait_val_t *www_undot(const char * __restrict pname);


/*
 * www_URLInit() - Init URL structure and free old one
 *
 * @url = Input URL
 * return: -1 error or 0 ok
 */
int www_URLInit(struct tagIOURL * __restrict url);
/*
 * www_URLFree() - URL free structure
 *
 * @url = Input parsed URL
 * return: none
 */
void www_URLFree(struct tagIOURL * __restrict url);
/*
 * www_URLGet() - Parse and get data from input URL
 *
 * @csURL = Input URL line
 * @url = Output parsed URL
 * return: 0 error format not find tech:// and return URL like path; 
 *		-1 error:: can`t read; >0 ok, up bits for known elements
 */
int www_URLGet(const char *csURL, struct tagIOURL * __restrict url);
/*
 * www_URLGetFile() - Get file from parsed URL
 *
 * @url = Input parsed URL
 * @value = Return filename, if not specified file in url path, replace with /
 * return: -1 error, 0 filename from path, 1 filename or 2 not specified filename
 */
int www_URLGetFile(struct tagIOURL * __restrict url, ait_val_t * __restrict value);

/*
 * www_XMLGet() - Parse and get data from input XML request string 
 * 				[ns:]container[|attribute[=value]][?data]
 *
 * @csXML = Input XML request line
 * @xml = Output parsed XML request
 * return: 0 error format incorrect, -1 error:: can`t read; >0 ok readed elements bits
 */
int www_XMLGet(const char *csXML, struct tagReqXML *xml);

/*
 * www_b64encode() - Base64 encode function
 *
 * @src = source data
 * return: NULL error or !=NULL encoded variable, after use call ait_freeVar()
 */
ait_val_t *www_b64encode(ait_val_t * __restrict src);
/*
 * www_b64decode() - Base64 decode function
 *
 * @src = source encoded data
 * return: NULL error or !=NULL decoded variable, after use call ait_freeVar()
 */
ait_val_t *www_b64decode(ait_val_t * __restrict src);


#endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>