From fa02368ab8e80d547ea0d331bf945ba1d5f90ca1 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Fri, 9 Mar 2012 14:37:36 +0100 Subject: [PATCH 01/22] initial fork from server project --- .doxygen | 277 + .gitignore | 22 + AUTHORS | 1 + COPYING | 674 ++ ChangeLog | 424 ++ Makefile.am | 10 + NEWS | 0 README | 29 + TODO | 0 assets/jquery-1.7.1.js | 9266 ++++++++++++++++++++++++++ assets/jquery-1.7.1.min.js | 4 + assets/waldschrat.jpg | Bin 0 -> 79689 bytes bootstrap | 7 + certs/server.crt | 17 + certs/server.key | 15 + configure.ac | 41 + include/cbuf.h | 81 + include/class.h | 132 + include/commons.h | 10 + include/http/header.h | 50 + include/http/message.h | 58 + include/http/message/queue.h | 42 + include/http/parser.h | 67 + include/http/request.h | 45 + include/http/response.h | 57 + include/http/worker.h | 59 + include/http/writer.h | 65 + include/interface.h | 59 + include/interface/class.h | 57 + include/interface/http_intro.h | 47 + include/interface/logger.h | 45 + include/interface/observer.h | 40 + include/interface/stream_reader.h | 45 + include/interface/stream_writer.h | 45 + include/interface/subject.h | 46 + include/logger.h | 57 + include/server.h | 63 + include/session.h | 47 + include/socket.h | 47 + include/stream.h | 27 + include/utils/hash.h | 33 + include/utils/http.h | 16 + include/utils/memory.h | 34 + include/utils/signalHandling.h | 33 + src/Makefile.am | 66 + src/cbuf.c | 126 + src/cbuf/addr_index.c | 33 + src/cbuf/empty.c | 32 + src/cbuf/get_data.c | 41 + src/cbuf/get_free.c | 33 + src/cbuf/get_line.c | 49 + src/cbuf/get_read.c | 31 + src/cbuf/get_write.c | 31 + src/cbuf/inc_read.c | 36 + src/cbuf/inc_write.c | 36 + src/cbuf/is_empty.c | 31 + src/cbuf/is_locked.c | 33 + src/cbuf/lock.c | 31 + src/cbuf/memchr.c | 33 + src/cbuf/read.c | 60 + src/cbuf/release.c | 31 + src/cbuf/set_data.c | 45 + src/cbuf/skip_non_alpha.c | 34 + src/cbuf/write.c | 52 + src/http/header.c | 78 + src/http/header/add.c | 69 + src/http/header/get.c | 51 + src/http/header/to_string.c | 51 + src/http/message.c | 96 + src/http/message/get_version.c | 50 + src/http/message/has_keep_alive.c | 54 + src/http/message/has_valid_version.c | 49 + src/http/message/header_size_get.c | 55 + src/http/message/header_to_string.c | 56 + src/http/message/queue.c | 52 + src/http/parser.c | 76 + src/http/parser/body.c | 50 + src/http/parser/header.c | 67 + src/http/parser/new_message.c | 34 + src/http/parser/parse.c | 164 + src/http/request.c | 117 + src/http/request/has_valid_method.c | 53 + src/http/response.c | 110 + src/http/response/304.c | 60 + src/http/response/403.c | 52 + src/http/response/404.c | 66 + src/http/response/asset.c | 87 + src/http/response/login_form.c | 64 + src/http/response/me.c | 151 + src/http/response/randval.c | 68 + src/http/worker.c | 124 + src/http/worker/add_common_header.c | 51 + src/http/worker/get_asset.c | 38 + src/http/worker/process.c | 169 + src/http/worker/write.c | 35 + src/http/writer.c | 63 + src/http/writer/write.c | 155 + src/interface.c | 64 + src/interface/class.c | 85 + src/interface/http_intro.c | 51 + src/interface/logger.c | 60 + src/interface/observer.c | 37 + src/interface/stream_reader.c | 42 + src/interface/stream_writer.c | 42 + src/interface/subject.c | 49 + src/logger.c | 57 + src/logger/stderr.c | 38 + src/logger/syslog.c | 51 + src/server.c | 132 + src/server/close_conn.c | 48 + src/server/handle_accept.c | 100 + src/server/poll.c | 81 + src/server/read.c | 79 + src/server/run.c | 97 + src/server/write.c | 63 + src/session.c | 46 + src/session/add.c | 36 + src/session/delete.c | 23 + src/session/get.c | 29 + src/socket.c | 79 + src/socket/accept.c | 63 + src/socket/connect.c | 55 + src/socket/listen.c | 59 + src/stream.c | 41 + src/stream/read.c | 27 + src/stream/write.c | 27 + src/taskrambler.c | 196 + src/utils/daemonize.c | 47 + src/utils/hash.c | 30 + src/utils/http.c | 51 + src/utils/memory.c | 14 + src/utils/signalHandling.c | 47 + src/webgameserver.c | 196 + tests/Makefile.am | 29 + tests/cclassTest.c | 131 + tests/loggerTest.c | 94 + tests/mock/class.c | 88 + tests/mock/class.h | 49 + tests/runtest.c | 121 + tests/runtest.h | 131 + tests/serverTest.c | 122 + tests/socketTest.c | 123 + tests/tst-tsearch.c | 333 + 143 files changed, 19036 insertions(+) create mode 100644 .doxygen create mode 100644 .gitignore create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 ChangeLog create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100644 TODO create mode 100644 assets/jquery-1.7.1.js create mode 100644 assets/jquery-1.7.1.min.js create mode 100644 assets/waldschrat.jpg create mode 100755 bootstrap create mode 100644 certs/server.crt create mode 100644 certs/server.key create mode 100644 configure.ac create mode 100644 include/cbuf.h create mode 100644 include/class.h create mode 100644 include/commons.h create mode 100644 include/http/header.h create mode 100644 include/http/message.h create mode 100644 include/http/message/queue.h create mode 100644 include/http/parser.h create mode 100644 include/http/request.h create mode 100644 include/http/response.h create mode 100644 include/http/worker.h create mode 100644 include/http/writer.h create mode 100644 include/interface.h create mode 100644 include/interface/class.h create mode 100644 include/interface/http_intro.h create mode 100644 include/interface/logger.h create mode 100644 include/interface/observer.h create mode 100644 include/interface/stream_reader.h create mode 100644 include/interface/stream_writer.h create mode 100644 include/interface/subject.h create mode 100644 include/logger.h create mode 100644 include/server.h create mode 100644 include/session.h create mode 100644 include/socket.h create mode 100644 include/stream.h create mode 100644 include/utils/hash.h create mode 100644 include/utils/http.h create mode 100644 include/utils/memory.h create mode 100644 include/utils/signalHandling.h create mode 100644 src/Makefile.am create mode 100644 src/cbuf.c create mode 100644 src/cbuf/addr_index.c create mode 100644 src/cbuf/empty.c create mode 100644 src/cbuf/get_data.c create mode 100644 src/cbuf/get_free.c create mode 100644 src/cbuf/get_line.c create mode 100644 src/cbuf/get_read.c create mode 100644 src/cbuf/get_write.c create mode 100644 src/cbuf/inc_read.c create mode 100644 src/cbuf/inc_write.c create mode 100644 src/cbuf/is_empty.c create mode 100644 src/cbuf/is_locked.c create mode 100644 src/cbuf/lock.c create mode 100644 src/cbuf/memchr.c create mode 100644 src/cbuf/read.c create mode 100644 src/cbuf/release.c create mode 100644 src/cbuf/set_data.c create mode 100644 src/cbuf/skip_non_alpha.c create mode 100644 src/cbuf/write.c create mode 100644 src/http/header.c create mode 100644 src/http/header/add.c create mode 100644 src/http/header/get.c create mode 100644 src/http/header/to_string.c create mode 100644 src/http/message.c create mode 100644 src/http/message/get_version.c create mode 100644 src/http/message/has_keep_alive.c create mode 100644 src/http/message/has_valid_version.c create mode 100644 src/http/message/header_size_get.c create mode 100644 src/http/message/header_to_string.c create mode 100644 src/http/message/queue.c create mode 100644 src/http/parser.c create mode 100644 src/http/parser/body.c create mode 100644 src/http/parser/header.c create mode 100644 src/http/parser/new_message.c create mode 100644 src/http/parser/parse.c create mode 100644 src/http/request.c create mode 100644 src/http/request/has_valid_method.c create mode 100644 src/http/response.c create mode 100644 src/http/response/304.c create mode 100644 src/http/response/403.c create mode 100644 src/http/response/404.c create mode 100644 src/http/response/asset.c create mode 100644 src/http/response/login_form.c create mode 100644 src/http/response/me.c create mode 100644 src/http/response/randval.c create mode 100644 src/http/worker.c create mode 100644 src/http/worker/add_common_header.c create mode 100644 src/http/worker/get_asset.c create mode 100644 src/http/worker/process.c create mode 100644 src/http/worker/write.c create mode 100644 src/http/writer.c create mode 100644 src/http/writer/write.c create mode 100644 src/interface.c create mode 100644 src/interface/class.c create mode 100644 src/interface/http_intro.c create mode 100644 src/interface/logger.c create mode 100644 src/interface/observer.c create mode 100644 src/interface/stream_reader.c create mode 100644 src/interface/stream_writer.c create mode 100644 src/interface/subject.c create mode 100644 src/logger.c create mode 100644 src/logger/stderr.c create mode 100644 src/logger/syslog.c create mode 100644 src/server.c create mode 100644 src/server/close_conn.c create mode 100644 src/server/handle_accept.c create mode 100644 src/server/poll.c create mode 100644 src/server/read.c create mode 100644 src/server/run.c create mode 100644 src/server/write.c create mode 100644 src/session.c create mode 100644 src/session/add.c create mode 100644 src/session/delete.c create mode 100644 src/session/get.c create mode 100644 src/socket.c create mode 100644 src/socket/accept.c create mode 100644 src/socket/connect.c create mode 100644 src/socket/listen.c create mode 100644 src/stream.c create mode 100644 src/stream/read.c create mode 100644 src/stream/write.c create mode 100644 src/taskrambler.c create mode 100644 src/utils/daemonize.c create mode 100644 src/utils/hash.c create mode 100644 src/utils/http.c create mode 100644 src/utils/memory.c create mode 100644 src/utils/signalHandling.c create mode 100644 src/webgameserver.c create mode 100644 tests/Makefile.am create mode 100644 tests/cclassTest.c create mode 100644 tests/loggerTest.c create mode 100644 tests/mock/class.c create mode 100644 tests/mock/class.h create mode 100644 tests/runtest.c create mode 100644 tests/runtest.h create mode 100644 tests/serverTest.c create mode 100644 tests/socketTest.c create mode 100644 tests/tst-tsearch.c diff --git a/.doxygen b/.doxygen new file mode 100644 index 0000000..7d07de8 --- /dev/null +++ b/.doxygen @@ -0,0 +1,277 @@ +# Doxyfile 1.7.3 + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- +DOXYFILE_ENCODING = UTF-8 +PROJECT_NAME = Server +PROJECT_NUMBER = 0.0.1 +PROJECT_BRIEF = "HTTP/REST server implementation" +PROJECT_LOGO = +OUTPUT_DIRECTORY = docs +CREATE_SUBDIRS = NO +OUTPUT_LANGUAGE = English +BRIEF_MEMBER_DESC = YES +REPEAT_BRIEF = YES +ABBREVIATE_BRIEF = +ALWAYS_DETAILED_SEC = NO +INLINE_INHERITED_MEMB = NO +FULL_PATH_NAMES = YES +STRIP_FROM_PATH = +STRIP_FROM_INC_PATH = +SHORT_NAMES = NO +JAVADOC_AUTOBRIEF = NO +QT_AUTOBRIEF = NO +MULTILINE_CPP_IS_BRIEF = NO +INHERIT_DOCS = YES +SEPARATE_MEMBER_PAGES = NO +TAB_SIZE = 8 +ALIASES = +OPTIMIZE_OUTPUT_FOR_C = YES +OPTIMIZE_OUTPUT_JAVA = NO +OPTIMIZE_FOR_FORTRAN = NO +OPTIMIZE_OUTPUT_VHDL = NO +EXTENSION_MAPPING = +BUILTIN_STL_SUPPORT = NO +CPP_CLI_SUPPORT = YES +SIP_SUPPORT = NO +IDL_PROPERTY_SUPPORT = YES +DISTRIBUTE_GROUP_DOC = NO +SUBGROUPING = YES +TYPEDEF_HIDES_STRUCT = NO +SYMBOL_CACHE_SIZE = 0 +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- +EXTRACT_ALL = YES +EXTRACT_PRIVATE = NO +EXTRACT_STATIC = NO +EXTRACT_LOCAL_CLASSES = YES +EXTRACT_LOCAL_METHODS = YES +EXTRACT_ANON_NSPACES = YES +HIDE_UNDOC_MEMBERS = NO +HIDE_UNDOC_CLASSES = NO +HIDE_FRIEND_COMPOUNDS = NO +HIDE_IN_BODY_DOCS = NO +INTERNAL_DOCS = YES +CASE_SENSE_NAMES = YES +HIDE_SCOPE_NAMES = NO +SHOW_INCLUDE_FILES = YES +FORCE_LOCAL_INCLUDES = NO +INLINE_INFO = YES +SORT_MEMBER_DOCS = YES +SORT_BRIEF_DOCS = NO +SORT_MEMBERS_CTORS_1ST = NO +SORT_GROUP_NAMES = NO +SORT_BY_SCOPE_NAME = NO +STRICT_PROTO_MATCHING = NO +GENERATE_TODOLIST = YES +GENERATE_TESTLIST = YES +GENERATE_BUGLIST = YES +GENERATE_DEPRECATEDLIST= YES +ENABLED_SECTIONS = +MAX_INITIALIZER_LINES = 30 +SHOW_USED_FILES = YES +SHOW_DIRECTORIES = NO +SHOW_FILES = YES +SHOW_NAMESPACES = YES +FILE_VERSION_FILTER = +LAYOUT_FILE = +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- +QUIET = NO +WARNINGS = YES +WARN_IF_UNDOCUMENTED = YES +WARN_IF_DOC_ERROR = YES +WARN_NO_PARAMDOC = NO +WARN_FORMAT = "$file:$line: $text" +WARN_LOGFILE = +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- +INPUT = +INPUT_ENCODING = UTF-8 +FILE_PATTERNS = +RECURSIVE = YES +EXCLUDE = +EXCLUDE_SYMLINKS = NO +EXCLUDE_PATTERNS = */tests/* */doc/* */docs/* */.git/* +EXCLUDE_SYMBOLS = +EXAMPLE_PATH = +EXAMPLE_PATTERNS = +EXAMPLE_RECURSIVE = NO +IMAGE_PATH = +INPUT_FILTER = +FILTER_PATTERNS = +FILTER_SOURCE_FILES = NO +FILTER_SOURCE_PATTERNS = +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- +SOURCE_BROWSER = YES +INLINE_SOURCES = YES +STRIP_CODE_COMMENTS = YES +REFERENCED_BY_RELATION = NO +REFERENCES_RELATION = NO +REFERENCES_LINK_SOURCE = YES +USE_HTAGS = NO +VERBATIM_HEADERS = YES +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- +ALPHABETICAL_INDEX = YES +COLS_IN_ALPHA_INDEX = 5 +IGNORE_PREFIX = +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- +GENERATE_HTML = YES +HTML_OUTPUT = html +HTML_FILE_EXTENSION = .html +HTML_HEADER = +HTML_FOOTER = +HTML_STYLESHEET = +HTML_COLORSTYLE_HUE = 220 +HTML_COLORSTYLE_SAT = 100 +HTML_COLORSTYLE_GAMMA = 80 +HTML_TIMESTAMP = YES +HTML_ALIGN_MEMBERS = YES +HTML_DYNAMIC_SECTIONS = NO +GENERATE_DOCSET = NO +DOCSET_FEEDNAME = "Doxygen generated docs" +DOCSET_BUNDLE_ID = org.doxygen.Project +DOCSET_PUBLISHER_ID = org.doxygen.Publisher +DOCSET_PUBLISHER_NAME = Publisher +GENERATE_HTMLHELP = NO +CHM_FILE = +HHC_LOCATION = +GENERATE_CHI = NO +CHM_INDEX_ENCODING = +BINARY_TOC = NO +TOC_EXPAND = NO +GENERATE_QHP = NO +QCH_FILE = +QHP_NAMESPACE = org.doxygen.Project +QHP_VIRTUAL_FOLDER = doc +QHP_CUST_FILTER_NAME = +QHP_CUST_FILTER_ATTRS = +QHP_SECT_FILTER_ATTRS = +QHG_LOCATION = +GENERATE_ECLIPSEHELP = NO +ECLIPSE_DOC_ID = org.doxygen.Project +DISABLE_INDEX = NO +ENUM_VALUES_PER_LINE = 4 +GENERATE_TREEVIEW = YES +USE_INLINE_TREES = YES +TREEVIEW_WIDTH = 250 +EXT_LINKS_IN_WINDOW = NO +FORMULA_FONTSIZE = 10 +FORMULA_TRANSPARENT = YES +USE_MATHJAX = NO +MATHJAX_RELPATH = http://www.mathjax.org/mathjax +SEARCHENGINE = YES +SERVER_BASED_SEARCH = NO +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- +GENERATE_LATEX = YES +LATEX_OUTPUT = latex +LATEX_CMD_NAME = latex +MAKEINDEX_CMD_NAME = makeindex +COMPACT_LATEX = NO +PAPER_TYPE = a4 +EXTRA_PACKAGES = +LATEX_HEADER = +PDF_HYPERLINKS = YES +USE_PDFLATEX = YES +LATEX_BATCHMODE = NO +LATEX_HIDE_INDICES = NO +LATEX_SOURCE_CODE = NO +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- +GENERATE_RTF = NO +RTF_OUTPUT = rtf +COMPACT_RTF = NO +RTF_HYPERLINKS = NO +RTF_STYLESHEET_FILE = +RTF_EXTENSIONS_FILE = +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- +GENERATE_MAN = NO +MAN_OUTPUT = man +MAN_EXTENSION = .3 +MAN_LINKS = NO +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- +GENERATE_XML = NO +XML_OUTPUT = xml +XML_SCHEMA = +XML_DTD = +XML_PROGRAMLISTING = YES +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- +GENERATE_AUTOGEN_DEF = NO +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- +GENERATE_PERLMOD = NO +PERLMOD_LATEX = NO +PERLMOD_PRETTY = YES +PERLMOD_MAKEVAR_PREFIX = +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- +ENABLE_PREPROCESSING = YES +MACRO_EXPANSION = NO +EXPAND_ONLY_PREDEF = NO +SEARCH_INCLUDES = YES +INCLUDE_PATH = +INCLUDE_FILE_PATTERNS = +PREDEFINED = +EXPAND_AS_DEFINED = +SKIP_FUNCTION_MACROS = NO +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- +TAGFILES = +GENERATE_TAGFILE = +ALLEXTERNALS = NO +EXTERNAL_GROUPS = YES +PERL_PATH = /usr/bin/perl +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- +CLASS_DIAGRAMS = YES +MSCGEN_PATH = +HIDE_UNDOC_RELATIONS = YES +HAVE_DOT = YES +DOT_NUM_THREADS = 0 +DOT_FONTNAME = Helvetica +DOT_FONTSIZE = 10 +DOT_FONTPATH = +CLASS_GRAPH = YES +COLLABORATION_GRAPH = YES +GROUP_GRAPHS = YES +UML_LOOK = YES +TEMPLATE_RELATIONS = NO +INCLUDE_GRAPH = YES +INCLUDED_BY_GRAPH = YES +CALL_GRAPH = YES +CALLER_GRAPH = YES +GRAPHICAL_HIERARCHY = YES +DIRECTORY_GRAPH = YES +DOT_IMAGE_FORMAT = png +DOT_PATH = +DOTFILE_DIRS = +MSCFILE_DIRS = +DOT_GRAPH_MAX_NODES = 50 +MAX_DOT_GRAPH_DEPTH = 0 +DOT_TRANSPARENT = YES +DOT_MULTI_TARGETS = NO +GENERATE_LEGEND = YES +DOT_CLEANUP = YES diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9c79b2b --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +.*.swp +*.o +.dirstamp +.deps/ +Makefile +Makefile.in +m4/ +/docs/ +/config.* +/configure +/INSTALL +*.m4 +/autom4te.cache/ +/compile +/depcomp +/docs/ +/install-sh +/libtool +/ltmain.sh +/missing +stamp-h1 +src/taskrambler diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..354d97f --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Georg Hopp diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/COPYING @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..184e80e --- /dev/null +++ b/ChangeLog @@ -0,0 +1,424 @@ +2012-02-23 17:40:00 +0100 Georg Hopp + + * add cookie header again (HEAD, origin/master, origin/HEAD, master) + +2012-02-23 16:41:36 +0100 Georg Hopp + + * optmize header search + +2012-02-23 13:02:23 +0100 Georg Hopp + + * changed all string operation within header handling with fixed length mem operations, preventing multiple iterations over these strings. In theory this should improve performance in reality it seems that it is worse...CHECK WHY + +2012-02-23 00:05:25 +0100 Georg Hopp + + * fix initialization of search value + +2012-02-22 21:50:21 +0100 Georg Hopp + + * ed + +2012-02-22 21:49:52 +0100 Georg Hopp + + * structural changes for worker/process. @TODO actually i have no idea why this happens. + +2012-02-22 12:19:40 +0100 Georg Hopp + + * fix memory problems occured with latest changes + +2012-02-22 09:03:40 +0100 Georg Hopp + + * fixed bug in keep-alive check arised by implementation if #10 + +2012-02-22 08:51:05 +0100 Georg Hopp + + * add forgotten jquery assets + +2012-02-22 08:48:43 +0100 Georg Hopp + + * closes #10: values for header ids are now stored in a char ** making multiple values for one id possible. Additionally added a jquery action that delivers the jquery java script and use it on the me action + +2012-02-21 13:01:38 +0100 Georg Hopp + + * now when a constructor returns -1 the new call will in turn call the destructor effectively freeing all resources. ATTENTION: now the destructor has to be aware that it might be called with a not completely initialized object. To make this more ease there is the FREE makro with the corresponding ffree that does NULL pointer checking and the destructor checks for NULL pointer too. Additionally the handle_accept now handles _SC_OPEN_MAX - 10 connections. The 10 are reserved for internal usage. + +2012-02-21 09:45:01 +0100 Georg Hopp + + * now a child is spawned and writes random values in a shared memory segment. These values will be shown in the me action + +2012-02-20 21:36:55 +0100 Georg Hopp + + * some code cleanups...no changes in the logic + +2012-02-20 18:08:23 +0100 Georg Hopp + + * move sdbm implementation in one file. + +2012-02-20 17:16:44 +0100 Georg Hopp + + * changed /**/ single line comments to // + +2012-02-20 14:55:46 +0100 Georg Hopp + + * start documenting this whole stuff...well at least add a copyright information in each file + +2012-02-20 10:10:29 +0100 Georg Hopp + + * first very crude, not complete, experimental 304 test implementation + +2012-02-20 07:55:06 +0100 Georg Hopp + + * disconnect on invalid request line + +2012-02-19 20:12:40 +0100 Georg Hopp + + * now incomplete requests should no longer block the complete server. Tested with \'echo -en "GET / HTTP\r\nConn" | nc -w 600 localhost 11212\' and then doing requests from my browser. @TODO: cleanup those stuff, check if a not correctly response reading would block the server. + +2012-02-19 18:28:30 +0100 Georg Hopp + + * increase writebuffer size a lot. + +2012-02-19 18:15:55 +0100 Georg Hopp + + * fixed the non keep-alive performance issue as well as i lower memory usage by using a single read and write circular buffer for every connection. @TODO: i noticed a server hang while getting large data (my image) with non keep-alive connections. Additionally an incomplete keep-alive request might stop the server now as the lock on the read buffer will not be released. + +2012-02-19 15:41:48 +0100 Georg Hopp + + * another try with the shmen trick...this time use MAP_ANONYMOUS ... as GNU extension. + +2012-02-19 14:33:42 +0100 Georg Hopp + + * Merge remote branch 'origin/master' + +2012-02-19 12:13:52 +0100 Georg Hopp + + * added missing header file to repo + +2012-02-19 11:35:15 +0100 Georg Hopp + + * another try with a shared memory based ringbuffer...this performs well for keep-alive sessions but is much slower without. actually i am not sure why but most likely the shared memory setup is quite expensive. @TODO: make a profiling. + +2012-02-18 21:08:32 +0100 Georg Hopp + + * fix inf loop. @TODO: This whole handling has to be cleaned. + +2012-02-18 20:50:01 +0100 Georg Hopp + + * this change hopefully makes the shm trick work on amd64 + +2012-02-18 20:12:27 +0100 Georg Hopp + + * lots of changes but primarily change the request parser to use a ringbuffer. The ringbuffer is implemented using the shared memory trick. + +2012-02-15 12:30:33 +0100 Georg Hopp + + * some more cleanups in the server code. Removing not needed header includes + +2012-02-15 12:17:39 +0100 Georg Hopp + + * Merge branch 'master' of 192.168.100.2:/var/lib/git/server + +2012-02-15 12:17:00 +0100 Georg Hopp + + * now the separated http worker works. Changed some size_t to ssize_t as i use -1 and -2 es error indicator in my server and fixed caculation of remainig buffer size in reader + +2012-02-15 09:38:32 +0100 Georg Hopp + + * separated the server completely from the http processing + +2012-02-15 06:19:52 +0100 Georg Hopp + + * add subject/observer interface + +2012-02-15 06:19:52 +0100 Georg Hopp + + * add subject/observer interface + +2012-02-15 04:55:46 +0100 Georg Hopp + + * fix infinite busy loop in run + +2012-02-15 04:44:38 +0100 Georg Hopp + + * dynamically get and free buffer for response write pipe now + +2012-02-14 21:32:38 +0100 Georg Hopp + + * increase write buffer + +2012-02-13 21:27:47 +0100 Georg Hopp + + * use one dynamic buffer less and save at least one write on small responses + +2012-02-13 18:25:36 +0100 Georg Hopp + + * removed generated docs + +2012-02-13 17:55:52 +0100 Georg Hopp + + * fixed bug in new response handling + +2012-02-13 17:29:35 +0100 Georg Hopp + + * better response handling but still buggy with stream piping + +2012-02-13 09:46:39 +0100 Georg Hopp + + * now load image from actual server + +2012-02-13 09:39:21 +0100 Georg Hopp + + * first working version of content delivery from file....very crude... @TODO: rewrite complete response handline. + +2012-02-12 20:39:12 +0100 Georg Hopp + + * more generalizing of response writing (implemented a response writer...now it should be possible to implement a stream writer for images + +2012-02-12 12:43:56 +0100 Georg Hopp + + * make http request and response childs of a common parent http message + +2012-02-12 04:13:54 +0100 Georg Hopp + + * remove now obsoleted header_sort + +2012-02-12 04:05:38 +0100 Georg Hopp + + * change response to tree based header storage and make everything work. + +2012-02-12 00:05:13 +0100 Georg Hopp + + * changed header hashing to use btree (GNU only). @TODO: make this conditional for other systems. Removed the qsort calls on server->fds making O(2nlogn) to O(n) + +2012-02-11 13:52:32 +0100 Georg Hopp + + * daemonize testserver now + +2012-02-11 12:47:01 +0100 Georg Hopp + + * fix seaks and hangs after adding response object (mostly not related with the response object but how i integated it into serverRun + +2012-02-10 19:57:57 +0100 Georg Hopp + + * started a response handler and changed serverRun to use it for its response + +2012-02-10 12:42:04 +0100 Georg Hopp + + * fixed bug at server destructor + +2012-02-10 09:59:41 +0100 Georg Hopp + + * reset keep_live flag on connection close + +2012-02-10 09:52:27 +0100 Georg Hopp + + * made a first cruel handling for keep-alive and non keep-alive requests. @TODO: this MUST BE cleaned + +2012-02-10 08:14:31 +0100 Georg Hopp + + * now only use keep-alive.... + +2012-02-10 06:36:43 +0100 Georg Hopp + + * moved request_parser.h and request_queue.h in separeate request subfolder + +2012-02-10 06:22:39 +0100 Georg Hopp + + * fix rather nasty reentrance bug + +2012-02-10 05:52:50 +0100 Georg Hopp + + * fix bug that arose in rewrite of header get and results in an ugly memory leak, as well as no headers would be found any more + +2012-02-10 00:27:51 +0100 Georg Hopp + + * fix memory leak created while changing things + +2012-02-09 22:39:08 +0100 Georg Hopp + + * updated docs + +2012-02-09 22:34:32 +0100 Georg Hopp + + * start split of request parser + +2012-02-09 11:44:17 +0100 Georg Hopp + + * no more request body debig output + +2012-02-09 11:32:28 +0100 Georg Hopp + + * add missing header_get to repo and build header hash only from lowercase letters now as it seems header identifier should be case insensitive + +2012-02-09 09:34:21 +0100 Georg Hopp + + * access to headers via hash, read body (actually only with content-length header should also look for content-encoding) + +2012-02-08 16:51:49 +0100 Georg Hopp + + * fix handling of remote close - i should have another eye on this...there still seems to be something wrong. + +2012-02-08 15:04:52 +0100 Georg Hopp + + * fixed some warnings + +2012-02-08 13:12:59 +0100 Georg Hopp + + * changed documentation + +2012-02-08 13:05:23 +0100 Georg Hopp + + * added first generated documentation + +2012-02-08 12:14:44 +0100 Georg Hopp + + * oops commit...forgot to add request_queue.c + +2012-02-08 11:52:30 +0100 Georg Hopp + + * found the file handle lost...made a first workaround and added an todo. + +2012-02-08 10:21:04 +0100 Georg Hopp + + * changed request handling. @TODO: I still seem to have the problem that the file handles are not closed and freed correctly as the service refuses connections after about a 1000. + +2012-02-07 14:20:00 +0100 Georg Hopp + + * now stuff seems to work correct even if read does not provide a complete request (tested with telnet) + +2012-02-07 13:41:49 +0100 Georg Hopp + + * now each HttpRequestParser initializes its own request queue and enqueus completed requests there. The server now gets the queue and prints completed requests. + +2012-02-07 11:12:30 +0100 Georg Hopp + + * started filling out a request object with the parser + +2012-02-07 09:29:59 +0100 Georg Hopp + + * porformance improvement in parsing process (no longer do alloc and free on each line) + +2012-02-07 08:52:18 +0100 Georg Hopp + + * basic request parsing (line by line) implemented + +2012-02-06 16:08:13 +0100 Georg Hopp + + * split server implementation for readability + +2012-02-06 11:35:40 +0100 Georg Hopp + + * free reader (HttpRequestParser) when connection is closed + +2012-02-06 11:20:00 +0100 Georg Hopp + + * add StreamReader interface, modify HttpRequestParser and Server to use it + +2012-02-06 11:15:00 +0100 Georg Hopp + + * add missing include to stdarg.h + +2012-02-06 10:45:33 +0100 Georg Hopp + + * implement clone selector + +2012-02-06 10:43:59 +0100 Georg Hopp + + * add ability to call interface methods with return value + +2012-02-06 02:37:55 +0100 Georg Hopp + + * make build system work again + +2012-02-06 02:37:24 +0100 Georg Hopp + + * remove inline stuff for now ... add carefully again later perhaps + +2012-02-06 00:57:26 +0100 Georg Hopp + + * and also mod conigure.ac + +2012-02-06 00:55:44 +0100 Georg Hopp + + * makefile modification for new class stuff + +2012-02-05 22:55:16 +0100 Georg Hopp + + * changed class tool. Now multiple interface per class are supported as well as simple inheritence. + +2012-02-05 22:47:10 +0100 Georg Hopp + + * some latest work + +2012-02-05 22:44:59 +0100 Georg Hopp + + * added some documentation + +2012-02-05 22:42:37 +0100 Georg Hopp + + * changes related to server code + +2012-01-19 16:41:41 +0100 Georg Hopp + + * added some valueable thought about cclass and how this structure might evolve to a real class + +2012-01-18 07:52:07 +0100 Georg Hopp + + * add testserver and did some fixes not shown by my incomplete tests + +2012-01-17 15:40:07 +0100 Georg Hopp + + * more notes + +2012-01-17 15:04:33 +0100 Georg Hopp + + * add some thought + +2012-01-17 14:49:49 +0100 Georg Hopp + + * changed from select(UNIX) to poll(POSIX) + +2012-01-16 18:39:01 +0100 Georg Hopp + + * work on server_run + +2012-01-16 17:05:57 +0100 Georg Hopp + + * move test under docs dir + +2012-01-16 17:05:08 +0100 Georg Hopp + + * simply copy signal handling code from gameserver project + +2012-01-16 16:04:11 +0100 Georg Hopp + + * more work on socket handling stuff... @TODO think about renaming it to connection as it only handles TCP sockets + +2012-01-16 13:48:05 +0100 Georg Hopp + + * add info text about file handle passing and ported more stuff from my old server structure + +2012-01-16 08:05:15 +0100 Georg Hopp + + * reflect changes in configure.ac + +2012-01-13 22:46:45 +0100 Georg Hopp + + * add daemonize code from other project. (Might be integrated in a future class but i am not sure right now + +2012-01-13 22:16:17 +0100 Georg Hopp + + * logger now works and has some basic testing + +2012-01-13 22:15:03 +0100 Georg Hopp + + * change cclass so that the internal structure is no longer visible by the rest of the code + +2012-01-13 16:06:02 +0100 Georg Hopp + + * some fixes on first logger tests + +2012-01-13 15:54:22 +0100 Georg Hopp + + * initial checkin + diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..392bb5a --- /dev/null +++ b/Makefile.am @@ -0,0 +1,10 @@ +ACLOCAL_AMFLAGS = -I m4 + +#bin_PROGRAMS = create_token +#create_token_SOURCES = base64.c createToken.c +#create_token_LDADD = src/libtoken.la $(LIBOBJS) +#create_token_CFLAGS = -Wall -I include + +EXTRA_DIST = include assets certs + +SUBDIRS = src tests diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..fa21666 --- /dev/null +++ b/README @@ -0,0 +1,29 @@ +Actually this is some kind of server toolkit, also containing +a class and interface toolkit for C. +I use a gcc preprocessor extension to use empty variadoc +argument lists so actually this is gcc only code. + +This should become a server that has a dynamic time-sliced part +that updates an internal state all the time. +Clients might connect as they want and get some information +from the server. +The server should scale in two manners. +New instances should be able to handle connection and get +updates about the computed state. +Additionally new instances might hold their own state which +all other instances might update. + +In a first run the state might be something simple as a +matrix where every field hold a unique value. e.g. + + ------------- + |1|4|a|j|k|9| + ------------- + |1|4|a|j|k|9| + ------------- + |1|4|a|j|k|9| + ------------- + |1|4|a|j|k|9| + ------------- + +suggestion for timing: sigsuspend diff --git a/TODO b/TODO new file mode 100644 index 0000000..e69de29 diff --git a/assets/jquery-1.7.1.js b/assets/jquery-1.7.1.js new file mode 100644 index 0000000..8ccd0ea --- /dev/null +++ b/assets/jquery-1.7.1.js @@ -0,0 +1,9266 @@ +/*! + * jQuery JavaScript Library v1.7.1 + * http://jquery.com/ + * + * Copyright 2011, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Mon Nov 21 21:11:03 2011 -0500 + */ +(function( window, undefined ) { + +// Use the correct document accordingly with window argument (sandbox) +var document = window.document, + navigator = window.navigator, + location = window.location; +var jQuery = (function() { + +// Define a local copy of jQuery +var jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // A central reference to the root jQuery(document) + rootjQuery, + + // A simple way to check for HTML strings or ID strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, + + // Check if a string has a non-whitespace character in it + rnotwhite = /\S/, + + // Used for trimming whitespace + trimLeft = /^\s+/, + trimRight = /\s+$/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, + rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + + // Useragent RegExp + rwebkit = /(webkit)[ \/]([\w.]+)/, + ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, + rmsie = /(msie) ([\w.]+)/, + rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, + + // Matches dashed string for camelizing + rdashAlpha = /-([a-z]|[0-9])/ig, + rmsPrefix = /^-ms-/, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return ( letter + "" ).toUpperCase(); + }, + + // Keep a UserAgent string for use with jQuery.browser + userAgent = navigator.userAgent, + + // For matching the engine and version of the browser + browserMatch, + + // The deferred used on DOM ready + readyList, + + // The ready event handler + DOMContentLoaded, + + // Save a reference to some core methods + toString = Object.prototype.toString, + hasOwn = Object.prototype.hasOwnProperty, + push = Array.prototype.push, + slice = Array.prototype.slice, + trim = String.prototype.trim, + indexOf = Array.prototype.indexOf, + + // [[Class]] -> type pairs + class2type = {}; + +jQuery.fn = jQuery.prototype = { + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem, ret, doc; + + // Handle $(""), $(null), or $(undefined) + if ( !selector ) { + return this; + } + + // Handle $(DOMElement) + if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + } + + // The body element only exists once, optimize finding it + if ( selector === "body" && !context && document.body ) { + this.context = document; + this[0] = document.body; + this.selector = selector; + this.length = 1; + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + // Are we dealing with HTML string or an ID? + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = quickExpr.exec( selector ); + } + + // Verify a match, and that no context was specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + doc = ( context ? context.ownerDocument || context : document ); + + // If a single string is passed in and it's a single tag + // just do a createElement and skip the rest + ret = rsingleTag.exec( selector ); + + if ( ret ) { + if ( jQuery.isPlainObject( context ) ) { + selector = [ document.createElement( ret[1] ) ]; + jQuery.fn.attr.call( selector, context, true ); + + } else { + selector = [ doc.createElement( ret[1] ) ]; + } + + } else { + ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); + selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes; + } + + return jQuery.merge( this, selector ); + + // HANDLE: $("#id") + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The current version of jQuery being used + jquery: "1.7.1", + + // The default length of a jQuery object is 0 + length: 0, + + // The number of elements contained in the matched element set + size: function() { + return this.length; + }, + + toArray: function() { + return slice.call( this, 0 ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems, name, selector ) { + // Build a new jQuery matched element set + var ret = this.constructor(); + + if ( jQuery.isArray( elems ) ) { + push.apply( ret, elems ); + + } else { + jQuery.merge( ret, elems ); + } + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + ret.context = this.context; + + if ( name === "find" ) { + ret.selector = this.selector + ( this.selector ? " " : "" ) + selector; + } else if ( name ) { + ret.selector = this.selector + "." + name + "(" + selector + ")"; + } + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Attach the listeners + jQuery.bindReady(); + + // Add the callback + readyList.add( fn ); + + return this; + }, + + eq: function( i ) { + i = +i; + return i === -1 ? + this.slice( i ) : + this.slice( i, i + 1 ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ), + "slice", slice.call(arguments).join(",") ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + // Either a released hold or an DOMready/load event and not yet ready + if ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready, 1 ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.fireWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger( "ready" ).off( "ready" ); + } + } + }, + + bindReady: function() { + if ( readyList ) { + return; + } + + readyList = jQuery.Callbacks( "once memory" ); + + // Catch cases where $(document).ready() is called after the + // browser event has already occurred. + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + return setTimeout( jQuery.ready, 1 ); + } + + // Mozilla, Opera and webkit nightlies currently support this event + if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", jQuery.ready, false ); + + // If IE event model is used + } else if ( document.attachEvent ) { + // ensure firing before onload, + // maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", DOMContentLoaded ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", jQuery.ready ); + + // If IE and not a frame + // continually check to see if the document is ready + var toplevel = false; + + try { + toplevel = window.frameElement == null; + } catch(e) {} + + if ( document.documentElement.doScroll && toplevel ) { + doScrollCheck(); + } + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + // A crude way of determining if an object is a window + isWindow: function( obj ) { + return obj && typeof obj === "object" && "setInterval" in obj; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + return obj == null ? + String( obj ) : + class2type[ toString.call(obj) ] || "object"; + }, + + isPlainObject: function( obj ) { + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !hasOwn.call(obj, "constructor") && + !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + + var key; + for ( key in obj ) {} + + return key === undefined || hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + for ( var name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + parseJSON: function( data ) { + if ( typeof data !== "string" || !data ) { + return null; + } + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + + } + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && rnotwhite.test( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); + }, + + // args is for internal usage only + each: function( object, callback, args ) { + var name, i = 0, + length = object.length, + isObj = length === undefined || jQuery.isFunction( object ); + + if ( args ) { + if ( isObj ) { + for ( name in object ) { + if ( callback.apply( object[ name ], args ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.apply( object[ i++ ], args ) === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isObj ) { + for ( name in object ) { + if ( callback.call( object[ name ], name, object[ name ] ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.call( object[ i ], i, object[ i++ ] ) === false ) { + break; + } + } + } + } + + return object; + }, + + // Use native String.trim function wherever possible + trim: trim ? + function( text ) { + return text == null ? + "" : + trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); + }, + + // results is for internal usage only + makeArray: function( array, results ) { + var ret = results || []; + + if ( array != null ) { + // The window, strings (and functions) also have 'length' + // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 + var type = jQuery.type( array ); + + if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { + push.call( ret, array ); + } else { + jQuery.merge( ret, array ); + } + } + + return ret; + }, + + inArray: function( elem, array, i ) { + var len; + + if ( array ) { + if ( indexOf ) { + return indexOf.call( array, elem, i ); + } + + len = array.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in array && array[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var i = first.length, + j = 0; + + if ( typeof second.length === "number" ) { + for ( var l = second.length; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var ret = [], retVal; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( var i = 0, length = elems.length; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, key, ret = [], + i = 0, + length = elems.length, + // jquery objects are treated as arrays + isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( key in elems ) { + value = callback( elems[ key ], key, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return ret.concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + if ( typeof context === "string" ) { + var tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + var args = slice.call( arguments, 2 ), + proxy = function() { + return fn.apply( context, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; + + return proxy; + }, + + // Mutifunctional method to get and set values to a collection + // The value/s can optionally be executed if it's a function + access: function( elems, key, value, exec, fn, pass ) { + var length = elems.length; + + // Setting many attributes + if ( typeof key === "object" ) { + for ( var k in key ) { + jQuery.access( elems, k, key[k], exec, fn, value ); + } + return elems; + } + + // Setting one attribute + if ( value !== undefined ) { + // Optionally, function values get executed if exec is true + exec = !pass && exec && jQuery.isFunction(value); + + for ( var i = 0; i < length; i++ ) { + fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); + } + + return elems; + } + + // Getting an attribute + return length ? fn( elems[0], key ) : undefined; + }, + + now: function() { + return ( new Date() ).getTime(); + }, + + // Use of jQuery.browser is frowned upon. + // More details: http://docs.jquery.com/Utilities/jQuery.browser + uaMatch: function( ua ) { + ua = ua.toLowerCase(); + + var match = rwebkit.exec( ua ) || + ropera.exec( ua ) || + rmsie.exec( ua ) || + ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || + []; + + return { browser: match[1] || "", version: match[2] || "0" }; + }, + + sub: function() { + function jQuerySub( selector, context ) { + return new jQuerySub.fn.init( selector, context ); + } + jQuery.extend( true, jQuerySub, this ); + jQuerySub.superclass = this; + jQuerySub.fn = jQuerySub.prototype = this(); + jQuerySub.fn.constructor = jQuerySub; + jQuerySub.sub = this.sub; + jQuerySub.fn.init = function init( selector, context ) { + if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { + context = jQuerySub( context ); + } + + return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); + }; + jQuerySub.fn.init.prototype = jQuerySub.fn; + var rootjQuerySub = jQuerySub(document); + return jQuerySub; + }, + + browser: {} +}); + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +browserMatch = jQuery.uaMatch( userAgent ); +if ( browserMatch.browser ) { + jQuery.browser[ browserMatch.browser ] = true; + jQuery.browser.version = browserMatch.version; +} + +// Deprecated, use jQuery.browser.webkit instead +if ( jQuery.browser.webkit ) { + jQuery.browser.safari = true; +} + +// IE doesn't match non-breaking spaces with \s +if ( rnotwhite.test( "\xA0" ) ) { + trimLeft = /^[\s\xA0]+/; + trimRight = /[\s\xA0]+$/; +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); + +// Cleanup functions for the document ready method +if ( document.addEventListener ) { + DOMContentLoaded = function() { + document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + jQuery.ready(); + }; + +} else if ( document.attachEvent ) { + DOMContentLoaded = function() { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( document.readyState === "complete" ) { + document.detachEvent( "onreadystatechange", DOMContentLoaded ); + jQuery.ready(); + } + }; +} + +// The DOM ready check for Internet Explorer +function doScrollCheck() { + if ( jQuery.isReady ) { + return; + } + + try { + // If IE is used, use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + document.documentElement.doScroll("left"); + } catch(e) { + setTimeout( doScrollCheck, 1 ); + return; + } + + // and execute any waiting functions + jQuery.ready(); +} + +return jQuery; + +})(); + + +// String to Object flags format cache +var flagsCache = {}; + +// Convert String-formatted flags into Object-formatted ones and store in cache +function createFlags( flags ) { + var object = flagsCache[ flags ] = {}, + i, length; + flags = flags.split( /\s+/ ); + for ( i = 0, length = flags.length; i < length; i++ ) { + object[ flags[i] ] = true; + } + return object; +} + +/* + * Create a callback list using the following parameters: + * + * flags: an optional list of space-separated flags that will change how + * the callback list behaves + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible flags: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( flags ) { + + // Convert flags from String-formatted to Object-formatted + // (we check in cache first) + flags = flags ? ( flagsCache[ flags ] || createFlags( flags ) ) : {}; + + var // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = [], + // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list is currently firing + firing, + // First callback to fire (used internally by add and fireWith) + firingStart, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // Add one or several callbacks to the list + add = function( args ) { + var i, + length, + elem, + type, + actual; + for ( i = 0, length = args.length; i < length; i++ ) { + elem = args[ i ]; + type = jQuery.type( elem ); + if ( type === "array" ) { + // Inspect recursively + add( elem ); + } else if ( type === "function" ) { + // Add if not in unique mode and callback is not in + if ( !flags.unique || !self.has( elem ) ) { + list.push( elem ); + } + } + } + }, + // Fire callbacks + fire = function( context, args ) { + args = args || []; + memory = !flags.memory || [ context, args ]; + firing = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( context, args ) === false && flags.stopOnFalse ) { + memory = true; // Mark as halted + break; + } + } + firing = false; + if ( list ) { + if ( !flags.once ) { + if ( stack && stack.length ) { + memory = stack.shift(); + self.fireWith( memory[ 0 ], memory[ 1 ] ); + } + } else if ( memory === true ) { + self.disable(); + } else { + list = []; + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + var length = list.length; + add( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away, unless previous + // firing was halted (stopOnFalse) + } else if ( memory && memory !== true ) { + firingStart = length; + fire( memory[ 0 ], memory[ 1 ] ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + var args = arguments, + argIndex = 0, + argLength = args.length; + for ( ; argIndex < argLength ; argIndex++ ) { + for ( var i = 0; i < list.length; i++ ) { + if ( args[ argIndex ] === list[ i ] ) { + // Handle firingIndex and firingLength + if ( firing ) { + if ( i <= firingLength ) { + firingLength--; + if ( i <= firingIndex ) { + firingIndex--; + } + } + } + // Remove the element + list.splice( i--, 1 ); + // If we have some unicity property then + // we only need to do this once + if ( flags.unique ) { + break; + } + } + } + } + } + return this; + }, + // Control if a given callback is in the list + has: function( fn ) { + if ( list ) { + var i = 0, + length = list.length; + for ( ; i < length; i++ ) { + if ( fn === list[ i ] ) { + return true; + } + } + } + return false; + }, + // Remove all callbacks from the list + empty: function() { + list = []; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory || memory === true ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( stack ) { + if ( firing ) { + if ( !flags.once ) { + stack.push( [ context, args ] ); + } + } else if ( !( flags.once && memory ) ) { + fire( context, args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!memory; + } + }; + + return self; +}; + + + + +var // Static reference to slice + sliceDeferred = [].slice; + +jQuery.extend({ + + Deferred: function( func ) { + var doneList = jQuery.Callbacks( "once memory" ), + failList = jQuery.Callbacks( "once memory" ), + progressList = jQuery.Callbacks( "memory" ), + state = "pending", + lists = { + resolve: doneList, + reject: failList, + notify: progressList + }, + promise = { + done: doneList.add, + fail: failList.add, + progress: progressList.add, + + state: function() { + return state; + }, + + // Deprecated + isResolved: doneList.fired, + isRejected: failList.fired, + + then: function( doneCallbacks, failCallbacks, progressCallbacks ) { + deferred.done( doneCallbacks ).fail( failCallbacks ).progress( progressCallbacks ); + return this; + }, + always: function() { + deferred.done.apply( deferred, arguments ).fail.apply( deferred, arguments ); + return this; + }, + pipe: function( fnDone, fnFail, fnProgress ) { + return jQuery.Deferred(function( newDefer ) { + jQuery.each( { + done: [ fnDone, "resolve" ], + fail: [ fnFail, "reject" ], + progress: [ fnProgress, "notify" ] + }, function( handler, data ) { + var fn = data[ 0 ], + action = data[ 1 ], + returned; + if ( jQuery.isFunction( fn ) ) { + deferred[ handler ](function() { + returned = fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise().then( newDefer.resolve, newDefer.reject, newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] ); + } + }); + } else { + deferred[ handler ]( newDefer[ action ] ); + } + }); + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + if ( obj == null ) { + obj = promise; + } else { + for ( var key in promise ) { + obj[ key ] = promise[ key ]; + } + } + return obj; + } + }, + deferred = promise.promise({}), + key; + + for ( key in lists ) { + deferred[ key ] = lists[ key ].fire; + deferred[ key + "With" ] = lists[ key ].fireWith; + } + + // Handle state + deferred.done( function() { + state = "resolved"; + }, failList.disable, progressList.lock ).fail( function() { + state = "rejected"; + }, doneList.disable, progressList.lock ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( firstParam ) { + var args = sliceDeferred.call( arguments, 0 ), + i = 0, + length = args.length, + pValues = new Array( length ), + count = length, + pCount = length, + deferred = length <= 1 && firstParam && jQuery.isFunction( firstParam.promise ) ? + firstParam : + jQuery.Deferred(), + promise = deferred.promise(); + function resolveFunc( i ) { + return function( value ) { + args[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; + if ( !( --count ) ) { + deferred.resolveWith( deferred, args ); + } + }; + } + function progressFunc( i ) { + return function( value ) { + pValues[ i ] = arguments.length > 1 ? sliceDeferred.call( arguments, 0 ) : value; + deferred.notifyWith( promise, pValues ); + }; + } + if ( length > 1 ) { + for ( ; i < length; i++ ) { + if ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) { + args[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) ); + } else { + --count; + } + } + if ( !count ) { + deferred.resolveWith( deferred, args ); + } + } else if ( deferred !== firstParam ) { + deferred.resolveWith( deferred, length ? [ firstParam ] : [] ); + } + return promise; + } +}); + + + + +jQuery.support = (function() { + + var support, + all, + a, + select, + opt, + input, + marginDiv, + fragment, + tds, + events, + eventName, + i, + isSupported, + div = document.createElement( "div" ), + documentElement = document.documentElement; + + // Preliminary tests + div.setAttribute("className", "t"); + div.innerHTML = "
a"; + + all = div.getElementsByTagName( "*" ); + a = div.getElementsByTagName( "a" )[ 0 ]; + + // Can't get basic test support + if ( !all || !all.length || !a ) { + return {}; + } + + // First batch of supports tests + select = document.createElement( "select" ); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName( "input" )[ 0 ]; + + support = { + // IE strips leading whitespace when .innerHTML is used + leadingWhitespace: ( div.firstChild.nodeType === 3 ), + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + tbody: !div.getElementsByTagName("tbody").length, + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + htmlSerialize: !!div.getElementsByTagName("link").length, + + // Get the style information from getAttribute + // (IE uses .cssText instead) + style: /top/.test( a.getAttribute("style") ), + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + hrefNormalized: ( a.getAttribute("href") === "/a" ), + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + opacity: /^0.55/.test( a.style.opacity ), + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + cssFloat: !!a.style.cssFloat, + + // Make sure that if no value is specified for a checkbox + // that it defaults to "on". + // (WebKit defaults to "" instead) + checkOn: ( input.value === "on" ), + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + optSelected: opt.selected, + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + getSetAttribute: div.className !== "t", + + // Tests for enctype support on a form(#6743) + enctype: !!document.createElement("form").enctype, + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", + + // Will be defined later + submitBubbles: true, + changeBubbles: true, + focusinBubbles: false, + deleteExpando: true, + noCloneEvent: true, + inlineBlockNeedsLayout: false, + shrinkWrapBlocks: false, + reliableMarginRight: true + }; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Test to see if it's possible to delete an expando from an element + // Fails in Internet Explorer + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + if ( !div.addEventListener && div.attachEvent && div.fireEvent ) { + div.attachEvent( "onclick", function() { + // Cloning a node shouldn't copy over any + // bound event handlers (IE does this) + support.noCloneEvent = false; + }); + div.cloneNode( true ).fireEvent( "onclick" ); + } + + // Check if a radio maintains its value + // after being appended to the DOM + input = document.createElement("input"); + input.value = "t"; + input.setAttribute("type", "radio"); + support.radioValue = input.value === "t"; + + input.setAttribute("checked", "checked"); + div.appendChild( input ); + fragment = document.createDocumentFragment(); + fragment.appendChild( div.lastChild ); + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + fragment.removeChild( input ); + fragment.appendChild( div ); + + div.innerHTML = ""; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. For more + // info see bug #3333 + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + if ( window.getComputedStyle ) { + marginDiv = document.createElement( "div" ); + marginDiv.style.width = "0"; + marginDiv.style.marginRight = "0"; + div.style.width = "2px"; + div.appendChild( marginDiv ); + support.reliableMarginRight = + ( parseInt( ( window.getComputedStyle( marginDiv, null ) || { marginRight: 0 } ).marginRight, 10 ) || 0 ) === 0; + } + + // Technique from Juriy Zaytsev + // http://perfectionkills.com/detecting-event-support-without-browser-sniffing/ + // We only care about the case where non-standard event systems + // are used, namely in IE. Short-circuiting here helps us to + // avoid an eval call (in setAttribute) which can cause CSP + // to go haywire. See: https://developer.mozilla.org/en/Security/CSP + if ( div.attachEvent ) { + for( i in { + submit: 1, + change: 1, + focusin: 1 + }) { + eventName = "on" + i; + isSupported = ( eventName in div ); + if ( !isSupported ) { + div.setAttribute( eventName, "return;" ); + isSupported = ( typeof div[ eventName ] === "function" ); + } + support[ i + "Bubbles" ] = isSupported; + } + } + + fragment.removeChild( div ); + + // Null elements to avoid leaks in IE + fragment = select = opt = marginDiv = div = input = null; + + // Run tests that need a body at doc ready + jQuery(function() { + var container, outer, inner, table, td, offsetSupport, + conMarginTop, ptlm, vb, style, html, + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + conMarginTop = 1; + ptlm = "position:absolute;top:0;left:0;width:1px;height:1px;margin:0;"; + vb = "visibility:hidden;border:0;"; + style = "style='" + ptlm + "border:5px solid #000;padding:0;'"; + html = "
" + + "" + + "
"; + + container = document.createElement("div"); + container.style.cssText = vb + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px"; + body.insertBefore( container, body.firstChild ); + + // Construct the test element + div = document.createElement("div"); + container.appendChild( div ); + + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + // (only IE 8 fails this test) + div.innerHTML = "
t
"; + tds = div.getElementsByTagName( "td" ); + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Check if empty table cells still have offsetWidth/Height + // (IE <= 8 fail this test) + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Figure out if the W3C box model works as expected + div.innerHTML = ""; + div.style.width = div.style.paddingLeft = "1px"; + jQuery.boxModel = support.boxModel = div.offsetWidth === 2; + + if ( typeof div.style.zoom !== "undefined" ) { + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + // (IE < 8 does this) + div.style.display = "inline"; + div.style.zoom = 1; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 2 ); + + // Check if elements with layout shrink-wrap their children + // (IE 6 does this) + div.style.display = ""; + div.innerHTML = "
"; + support.shrinkWrapBlocks = ( div.offsetWidth !== 2 ); + } + + div.style.cssText = ptlm + vb; + div.innerHTML = html; + + outer = div.firstChild; + inner = outer.firstChild; + td = outer.nextSibling.firstChild.firstChild; + + offsetSupport = { + doesNotAddBorder: ( inner.offsetTop !== 5 ), + doesAddBorderForTableAndCells: ( td.offsetTop === 5 ) + }; + + inner.style.position = "fixed"; + inner.style.top = "20px"; + + // safari subtracts parent border width here which is 5px + offsetSupport.fixedPosition = ( inner.offsetTop === 20 || inner.offsetTop === 15 ); + inner.style.position = inner.style.top = ""; + + outer.style.overflow = "hidden"; + outer.style.position = "relative"; + + offsetSupport.subtractsBorderForOverflowNotVisible = ( inner.offsetTop === -5 ); + offsetSupport.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== conMarginTop ); + + body.removeChild( container ); + div = container = null; + + jQuery.extend( support, offsetSupport ); + }); + + return support; +})(); + + + + +var rbrace = /^(?:\{.*\}|\[.*\])$/, + rmultiDash = /([A-Z])/g; + +jQuery.extend({ + cache: {}, + + // Please use with caution + uuid: 0, + + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", + "applet": true + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var privateCache, thisCache, ret, + internalKey = jQuery.expando, + getByName = typeof name === "string", + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey, + isEvents = name === "events"; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!isEvents && !pvt && !cache[id].data)) && getByName && data === undefined ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + elem[ internalKey ] = id = ++jQuery.uuid; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + cache[ id ] = {}; + + // Avoids exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + if ( !isNode ) { + cache[ id ].toJSON = jQuery.noop; + } + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + privateCache = thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Users should not attempt to inspect the internal events object using jQuery.data, + // it is undocumented and subject to change. But does anyone listen? No. + if ( isEvents && !thisCache[ name ] ) { + return privateCache.events; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( getByName ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; + }, + + removeData: function( elem, name, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, l, + + // Reference to internal data cache key + internalKey = jQuery.expando, + + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + + // See jQuery.data for more information + id = isNode ? elem[ internalKey ] : internalKey; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split( " " ); + } + } + } + + for ( i = 0, l = name.length; i < l; i++ ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject(cache[ id ]) ) { + return; + } + } + + // Browsers that fail expando deletion also refuse to delete expandos on + // the window, but it will allow it on all other JS objects; other browsers + // don't care + // Ensure that `cache` is not a window object #10080 + if ( jQuery.support.deleteExpando || !cache.setInterval ) { + delete cache[ id ]; + } else { + cache[ id ] = null; + } + + // We destroyed the cache and need to eliminate the expando on the node to avoid + // false lookups in the cache for entries that no longer exist + if ( isNode ) { + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( jQuery.support.deleteExpando ) { + delete elem[ internalKey ]; + } else if ( elem.removeAttribute ) { + elem.removeAttribute( internalKey ); + } else { + elem[ internalKey ] = null; + } + } + }, + + // For internal use only. + _data: function( elem, name, data ) { + return jQuery.data( elem, name, data, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + if ( elem.nodeName ) { + var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; + + if ( match ) { + return !(match === true || elem.getAttribute("classid") !== match); + } + } + + return true; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var parts, attr, name, + data = null; + + if ( typeof key === "undefined" ) { + if ( this.length ) { + data = jQuery.data( this[0] ); + + if ( this[0].nodeType === 1 && !jQuery._data( this[0], "parsedAttrs" ) ) { + attr = this[0].attributes; + for ( var i = 0, l = attr.length; i < l; i++ ) { + name = attr[i].name; + + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.substring(5) ); + + dataAttr( this[0], name, data[ name ] ); + } + } + jQuery._data( this[0], "parsedAttrs", true ); + } + } + + return data; + + } else if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + parts = key.split("."); + parts[1] = parts[1] ? "." + parts[1] : ""; + + if ( value === undefined ) { + data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); + + // Try to fetch any internally stored data first + if ( data === undefined && this.length ) { + data = jQuery.data( this[0], key ); + data = dataAttr( this[0], key, data ); + } + + return data === undefined && parts[1] ? + this.data( parts[0] ) : + data; + + } else { + return this.each(function() { + var self = jQuery( this ), + args = [ parts[0], value ]; + + self.triggerHandler( "setData" + parts[1] + "!", args ); + jQuery.data( this, key, value ); + self.triggerHandler( "changeData" + parts[1] + "!", args ); + }); + } + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + jQuery.isNumeric( data ) ? parseFloat( data ) : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + for ( var name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} + + + + +function handleQueueMarkDefer( elem, type, src ) { + var deferDataKey = type + "defer", + queueDataKey = type + "queue", + markDataKey = type + "mark", + defer = jQuery._data( elem, deferDataKey ); + if ( defer && + ( src === "queue" || !jQuery._data(elem, queueDataKey) ) && + ( src === "mark" || !jQuery._data(elem, markDataKey) ) ) { + // Give room for hard-coded callbacks to fire first + // and eventually mark/queue something else on the element + setTimeout( function() { + if ( !jQuery._data( elem, queueDataKey ) && + !jQuery._data( elem, markDataKey ) ) { + jQuery.removeData( elem, deferDataKey, true ); + defer.fire(); + } + }, 0 ); + } +} + +jQuery.extend({ + + _mark: function( elem, type ) { + if ( elem ) { + type = ( type || "fx" ) + "mark"; + jQuery._data( elem, type, (jQuery._data( elem, type ) || 0) + 1 ); + } + }, + + _unmark: function( force, elem, type ) { + if ( force !== true ) { + type = elem; + elem = force; + force = false; + } + if ( elem ) { + type = type || "fx"; + var key = type + "mark", + count = force ? 0 : ( (jQuery._data( elem, key ) || 1) - 1 ); + if ( count ) { + jQuery._data( elem, key, count ); + } else { + jQuery.removeData( elem, key, true ); + handleQueueMarkDefer( elem, type, "mark" ); + } + } + }, + + queue: function( elem, type, data ) { + var q; + if ( elem ) { + type = ( type || "fx" ) + "queue"; + q = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !q || jQuery.isArray(data) ) { + q = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + q.push( data ); + } + } + return q || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + fn = queue.shift(), + hooks = {}; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + } + + if ( fn ) { + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + jQuery._data( elem, type + ".run", hooks ); + fn.call( elem, function() { + jQuery.dequeue( elem, type ); + }, hooks ); + } + + if ( !queue.length ) { + jQuery.removeData( elem, type + "queue " + type + ".run", true ); + handleQueueMarkDefer( elem, type, "queue" ); + } + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + } + + if ( data === undefined ) { + return jQuery.queue( this[0], type ); + } + return this.each(function() { + var queue = jQuery.queue( this, type, data ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, object ) { + if ( typeof type !== "string" ) { + object = type; + type = undefined; + } + type = type || "fx"; + var defer = jQuery.Deferred(), + elements = this, + i = elements.length, + count = 1, + deferDataKey = type + "defer", + queueDataKey = type + "queue", + markDataKey = type + "mark", + tmp; + function resolve() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + } + while( i-- ) { + if (( tmp = jQuery.data( elements[ i ], deferDataKey, undefined, true ) || + ( jQuery.data( elements[ i ], queueDataKey, undefined, true ) || + jQuery.data( elements[ i ], markDataKey, undefined, true ) ) && + jQuery.data( elements[ i ], deferDataKey, jQuery.Callbacks( "once memory" ), true ) )) { + count++; + tmp.add( resolve ); + } + } + resolve(); + return defer.promise(); + } +}); + + + + +var rclass = /[\n\t\r]/g, + rspace = /\s+/, + rreturn = /\r/g, + rtype = /^(?:button|input)$/i, + rfocusable = /^(?:button|input|object|select|textarea)$/i, + rclickable = /^a(?:rea)?$/i, + rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute, + nodeHook, boolHook, fixSpecified; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, name, value, true, jQuery.attr ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, name, value, true, jQuery.prop ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classNames, i, l, elem, + setClass, c, cl; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call(this, j, this.className) ); + }); + } + + if ( value && typeof value === "string" ) { + classNames = value.split( rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + + if ( elem.nodeType === 1 ) { + if ( !elem.className && classNames.length === 1 ) { + elem.className = value; + + } else { + setClass = " " + elem.className + " "; + + for ( c = 0, cl = classNames.length; c < cl; c++ ) { + if ( !~setClass.indexOf( " " + classNames[ c ] + " " ) ) { + setClass += classNames[ c ] + " "; + } + } + elem.className = jQuery.trim( setClass ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classNames, i, l, elem, className, c, cl; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call(this, j, this.className) ); + }); + } + + if ( (value && typeof value === "string") || value === undefined ) { + classNames = ( value || "" ).split( rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + + if ( elem.nodeType === 1 && elem.className ) { + if ( value ) { + className = (" " + elem.className + " ").replace( rclass, " " ); + for ( c = 0, cl = classNames.length; c < cl; c++ ) { + className = className.replace(" " + classNames[ c ] + " ", " "); + } + elem.className = jQuery.trim( className ); + + } else { + elem.className = ""; + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.split( rspace ); + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space seperated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + } else if ( type === "undefined" || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // toggle whole className + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var hooks, ret, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.nodeName.toLowerCase() ] || jQuery.valHooks[ elem.type ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var self = jQuery(this), val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, self.val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.nodeName.toLowerCase() ] || jQuery.valHooks[ this.type ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // attributes.value is undefined in Blackberry 4.7 but + // uses .value. See #6932 + var val = elem.attributes.value; + return !val || val.specified ? elem.value : elem.text; + } + }, + select: { + get: function( elem ) { + var value, i, max, option, + index = elem.selectedIndex, + values = [], + options = elem.options, + one = elem.type === "select-one"; + + // Nothing was selected + if ( index < 0 ) { + return null; + } + + // Loop through all the selected options + i = one ? index : 0; + max = one ? index + 1 : options.length; + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Don't return options that are disabled or in a disabled optgroup + if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && + (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + // Fixes Bug #2551 -- select.val() broken in IE after form.reset() + if ( one && !values.length && options.length ) { + return jQuery( options[ index ] ).val(); + } + + return values; + }, + + set: function( elem, value ) { + var values = jQuery.makeArray( value ); + + jQuery(elem).find("option").each(function() { + this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; + }); + + if ( !values.length ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + attrFn: { + val: true, + css: true, + html: true, + text: true, + data: true, + width: true, + height: true, + offset: true + }, + + attr: function( elem, name, value, pass ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( pass && name in jQuery.attrFn ) { + return jQuery( elem )[ name ]( value ); + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( notxml ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + + } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, "" + value ); + return value; + } + + } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + + ret = elem.getAttribute( name ); + + // Non-existent attributes return null, we normalize to undefined + return ret === null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var propName, attrNames, name, l, + i = 0; + + if ( value && elem.nodeType === 1 ) { + attrNames = value.toLowerCase().split( rspace ); + l = attrNames.length; + + for ( ; i < l; i++ ) { + name = attrNames[ i ]; + + if ( name ) { + propName = jQuery.propFix[ name ] || name; + + // See #9699 for explanation of this approach (setting first, then removal) + jQuery.attr( elem, name, "" ); + elem.removeAttribute( getSetAttribute ? name : propName ); + + // Set corresponding property to false for boolean attributes + if ( rboolean.test( name ) && propName in elem ) { + elem[ propName ] = false; + } + } + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + // We can't allow the type property to be changed (since it causes problems in IE) + if ( rtype.test( elem.nodeName ) && elem.parentNode ) { + jQuery.error( "type property can't be changed" ); + } else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to it's default in case type is set after value + // This is for element creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + }, + // Use the value property for back compat + // Use the nodeHook for button elements in IE6/7 (#1954) + value: { + get: function( elem, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.get( elem, name ); + } + return name in elem ? + elem.value : + null; + }, + set: function( elem, value, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.set( elem, value, name ); + } + // Does not return so that setAttribute is also used + elem.value = value; + } + } + }, + + propFix: { + tabindex: "tabIndex", + readonly: "readOnly", + "for": "htmlFor", + "class": "className", + maxlength: "maxLength", + cellspacing: "cellSpacing", + cellpadding: "cellPadding", + rowspan: "rowSpan", + colspan: "colSpan", + usemap: "useMap", + frameborder: "frameBorder", + contenteditable: "contentEditable" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + return ( elem[ name ] = value ); + } + + } else { + if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + return elem[ name ]; + } + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + var attributeNode = elem.getAttributeNode("tabindex"); + + return attributeNode && attributeNode.specified ? + parseInt( attributeNode.value, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + undefined; + } + } + } +}); + +// Add the tabIndex propHook to attrHooks for back-compat (different case is intentional) +jQuery.attrHooks.tabindex = jQuery.propHooks.tabIndex; + +// Hook for boolean attributes +boolHook = { + get: function( elem, name ) { + // Align boolean attributes with corresponding properties + // Fall back to attribute presence where some booleans are not supported + var attrNode, + property = jQuery.prop( elem, name ); + return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? + name.toLowerCase() : + undefined; + }, + set: function( elem, value, name ) { + var propName; + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + // value is true since we know at this point it's type boolean and not false + // Set boolean attributes to the same name and set the DOM property + propName = jQuery.propFix[ name ] || name; + if ( propName in elem ) { + // Only set the IDL specifically if it already exists on the element + elem[ propName ] = true; + } + + elem.setAttribute( name, name.toLowerCase() ); + } + return name; + } +}; + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + fixSpecified = { + name: true, + id: true + }; + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = jQuery.valHooks.button = { + get: function( elem, name ) { + var ret; + ret = elem.getAttributeNode( name ); + return ret && ( fixSpecified[ name ] ? ret.nodeValue !== "" : ret.specified ) ? + ret.nodeValue : + undefined; + }, + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + ret = document.createAttribute( name ); + elem.setAttributeNode( ret ); + } + return ( ret.nodeValue = value + "" ); + } + }; + + // Apply the nodeHook to tabindex + jQuery.attrHooks.tabindex.set = nodeHook.set; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }); + }); + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + get: nodeHook.get, + set: function( elem, value, name ) { + if ( value === "" ) { + value = "false"; + } + nodeHook.set( elem, value, name ); + } + }; +} + + +// Some attributes require a special call on IE +if ( !jQuery.support.hrefNormalized ) { + jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + get: function( elem ) { + var ret = elem.getAttribute( name, 2 ); + return ret === null ? undefined : ret; + } + }); + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Normalize to lowercase since IE uppercases css property names + return elem.style.cssText.toLowerCase() || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = "" + value ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }); +} + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +if ( !jQuery.support.checkOn ) { + jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + get: function( elem ) { + // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + } + }; + }); +} +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }); +}); + + + + +var rformElems = /^(?:textarea|input|select)$/i, + rtypenamespace = /^([^\.]*)?(?:\.(.+))?$/, + rhoverHack = /\bhover(\.\S+)?\b/, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rquickIs = /^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/, + quickParse = function( selector ) { + var quick = rquickIs.exec( selector ); + if ( quick ) { + // 0 1 2 3 + // [ _, tag, id, class ] + quick[1] = ( quick[1] || "" ).toLowerCase(); + quick[3] = quick[3] && new RegExp( "(?:^|\\s)" + quick[3] + "(?:\\s|$)" ); + } + return quick; + }, + quickIs = function( elem, m ) { + var attrs = elem.attributes || {}; + return ( + (!m[1] || elem.nodeName.toLowerCase() === m[1]) && + (!m[2] || (attrs.id || {}).value === m[2]) && + (!m[3] || m[3].test( (attrs[ "class" ] || {}).value )) + ); + }, + hoverHack = function( events ) { + return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); + }; + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + add: function( elem, types, handler, data, selector ) { + + var elemData, eventHandle, events, + t, tns, type, namespaces, handleObj, + handleObjIn, quick, handlers, special; + + // Don't attach events to noData or text/comment nodes (allow plain objects tho) + if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + events = elemData.events; + if ( !events ) { + elemData.events = events = {}; + } + eventHandle = elemData.handle; + if ( !eventHandle ) { + elemData.handle = eventHandle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + // jQuery(...).bind("mouseover mouseout", fn); + types = jQuery.trim( hoverHack(types) ).split( " " ); + for ( t = 0; t < types.length; t++ ) { + + tns = rtypenamespace.exec( types[t] ) || []; + type = tns[1]; + namespaces = ( tns[2] || "" ).split( "." ).sort(); + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: tns[1], + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + quick: quickParse( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + handlers = events[ type ]; + if ( !handlers ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + global: {}, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var elemData = jQuery.hasData( elem ) && jQuery._data( elem ), + t, tns, type, origType, namespaces, origCount, + j, events, special, handle, eventType, handleObj; + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = jQuery.trim( hoverHack( types || "" ) ).split(" "); + for ( t = 0; t < types.length; t++ ) { + tns = rtypenamespace.exec( types[t] ) || []; + type = origType = tns[1]; + namespaces = tns[2]; + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector? special.delegateType : special.bindType ) || type; + eventType = events[ type ] || []; + origCount = eventType.length; + namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.)?") + "(\\.|$)") : null; + + // Remove matching events + for ( j = 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !namespaces || namespaces.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + eventType.splice( j--, 1 ); + + if ( handleObj.selector ) { + eventType.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( eventType.length === 0 && origCount !== eventType.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + handle = elemData.handle; + if ( handle ) { + handle.elem = null; + } + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery.removeData( elem, [ "events", "handle" ], true ); + } + }, + + // Events that are safe to short-circuit if no handlers are attached. + // Native DOM events should not be added, they may have inline handlers. + customEvent: { + "getData": true, + "setData": true, + "changeData": true + }, + + trigger: function( event, data, elem, onlyHandlers ) { + // Don't do events on text and comment nodes + if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) { + return; + } + + // Event object or event type + var type = event.type || event, + namespaces = [], + cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType; + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "!" ) >= 0 ) { + // Exclusive events trigger only for the exact event (no namespaces) + type = type.slice(0, -1); + exclusive = true; + } + + if ( type.indexOf( "." ) >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + + if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) { + // No jQuery handlers for this event type, and it can't have inline handlers + return; + } + + // Caller can pass in an Event, Object, or just an event type string + event = typeof event === "object" ? + // jQuery.Event object + event[ jQuery.expando ] ? event : + // Object literal + new jQuery.Event( type, event ) : + // Just the event type (string) + new jQuery.Event( type ); + + event.type = type; + event.isTrigger = true; + event.exclusive = exclusive; + event.namespace = namespaces.join( "." ); + event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.)?") + "(\\.|$)") : null; + ontype = type.indexOf( ":" ) < 0 ? "on" + type : ""; + + // Handle a global trigger + if ( !elem ) { + + // TODO: Stop taunting the data cache; remove global events and always attach to document + cache = jQuery.cache; + for ( i in cache ) { + if ( cache[ i ].events && cache[ i ].events[ type ] ) { + jQuery.event.trigger( event, data, cache[ i ].handle.elem, true ); + } + } + return; + } + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data != null ? jQuery.makeArray( data ) : []; + data.unshift( event ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + eventPath = [[ elem, special.bindType || type ]]; + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode; + old = null; + for ( ; cur; cur = cur.parentNode ) { + eventPath.push([ cur, bubbleType ]); + old = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( old && old === elem.ownerDocument ) { + eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]); + } + } + + // Fire handlers on the event path + for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) { + + cur = eventPath[i][0]; + event.type = eventPath[i][1]; + + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + // Note that this is a bare JS function and not a jQuery handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && + !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + // IE<9 dies on focus/blur to hidden element (#1486) + if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + old = elem[ ontype ]; + + if ( old ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( old ) { + elem[ ontype ] = old; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event || window.event ); + + var handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []), + delegateCount = handlers.delegateCount, + args = [].slice.call( arguments, 0 ), + run_all = !event.exclusive && !event.namespace, + handlerQueue = [], + i, j, cur, jqcur, ret, selMatch, matched, matches, handleObj, sel, related; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Determine handlers that should run if there are delegated events + // Avoid disabled elements in IE (#6911) and non-left-click bubbling in Firefox (#3861) + if ( delegateCount && !event.target.disabled && !(event.button && event.type === "click") ) { + + // Pregenerate a single jQuery object for reuse with .is() + jqcur = jQuery(this); + jqcur.context = this.ownerDocument || this; + + for ( cur = event.target; cur != this; cur = cur.parentNode || this ) { + selMatch = {}; + matches = []; + jqcur[0] = cur; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + sel = handleObj.selector; + + if ( selMatch[ sel ] === undefined ) { + selMatch[ sel ] = ( + handleObj.quick ? quickIs( cur, handleObj.quick ) : jqcur.is( sel ) + ); + } + if ( selMatch[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, matches: matches }); + } + } + } + + // Add the remaining (directly-bound) handlers + if ( handlers.length > delegateCount ) { + handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) }); + } + + // Run delegates first; they may want to stop propagation beneath us + for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) { + matched = handlerQueue[ i ]; + event.currentTarget = matched.elem; + + for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) { + handleObj = matched.matches[ j ]; + + // Triggered event must either 1) be non-exclusive and have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) { + + event.data = handleObj.data; + event.handleObj = handleObj; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + event.result = ret; + if ( ret === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + return event.result; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + // *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 *** + props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, + originalEvent = event, + fixHook = jQuery.event.fixHooks[ event.type ] || {}, + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = jQuery.Event( originalEvent ); + + for ( i = copy.length; i; ) { + prop = copy[ --i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Fix target property, if necessary (#1925, IE 6/7/8 & Safari2) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Target should not be a text node (#504, Safari) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // For mouse/key events; add metaKey if it's not there (#3368, IE6/7/8) + if ( event.metaKey === undefined ) { + event.metaKey = event.ctrlKey; + } + + return fixHook.filter? fixHook.filter( event, originalEvent ) : event; + }, + + special: { + ready: { + // Make sure the ready event is setup + setup: jQuery.bindReady + }, + + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + + focus: { + delegateType: "focusin" + }, + blur: { + delegateType: "focusout" + }, + + beforeunload: { + setup: function( data, namespaces, eventHandle ) { + // We only want to do this special case on windows + if ( jQuery.isWindow( this ) ) { + this.onbeforeunload = eventHandle; + } + }, + + teardown: function( namespaces, eventHandle ) { + if ( this.onbeforeunload === eventHandle ) { + this.onbeforeunload = null; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +// Some plugins are using, but it's undocumented/deprecated and will be removed. +// The 1.7 special event interface should provide all the hooks needed now. +jQuery.event.handle = jQuery.event.dispatch; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + if ( elem.detachEvent ) { + elem.detachEvent( "on" + type, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +function returnFalse() { + return false; +} +function returnTrue() { + return true; +} + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + preventDefault: function() { + this.isDefaultPrevented = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + + // if preventDefault exists run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // otherwise set the returnValue property of the original event to false (IE) + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + this.isPropagationStopped = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + // if stopPropagation exists run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + // otherwise set the cancelBubble property of the original event to true (IE) + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + }, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var target = this, + related = event.relatedTarget, + handleObj = event.handleObj, + selector = handleObj.selector, + ret; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !form._submit_attached ) { + jQuery.event.add( form, "submit._submit", function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + }); + form._submit_attached = true; + } + }); + // return undefined since we don't need an event listener + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + jQuery.event.simulate( "change", this, event, true ); + } + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !elem._change_attached ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + elem._change_attached = true; + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on.call( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + var handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace? handleObj.type + "." + handleObj.namespace : handleObj.type, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( var type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + bind: function( types, data, fn ) { + return this.on( types, null, data, fn ); + }, + unbind: function( types, fn ) { + return this.off( types, null, fn ); + }, + + live: function( types, data, fn ) { + jQuery( this.context ).on( types, this.selector, data, fn ); + return this; + }, + die: function( types, fn ) { + jQuery( this.context ).off( types, this.selector || "**", fn ); + return this; + }, + + delegate: function( selector, types, data, fn ) { + return this.on( types, selector, data, fn ); + }, + undelegate: function( selector, types, fn ) { + // ( namespace ) or ( selector, types [, fn] ) + return arguments.length == 1? this.off( selector, "**" ) : this.off( types, selector, fn ); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + if ( this[0] ) { + return jQuery.event.trigger( type, data, this[0], true ); + } + }, + + toggle: function( fn ) { + // Save reference to arguments for access in closure + var args = arguments, + guid = fn.guid || jQuery.guid++, + i = 0, + toggler = function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + }; + + // link all the functions, so any of them can unbind this click handler + toggler.guid = guid; + while ( i < args.length ) { + args[ i++ ].guid = guid; + } + + return this.click( toggler ); + }, + + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + } +}); + +jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + if ( fn == null ) { + fn = data; + data = null; + } + + return arguments.length > 0 ? + this.on( name, null, data, fn ) : + this.trigger( name ); + }; + + if ( jQuery.attrFn ) { + jQuery.attrFn[ name ] = true; + } + + if ( rkeyEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; + } + + if ( rmouseEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; + } +}); + + + +/*! + * Sizzle CSS Selector Engine + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){ + +var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, + expando = "sizcache" + (Math.random() + '').replace('.', ''), + done = 0, + toString = Object.prototype.toString, + hasDuplicate = false, + baseHasDuplicate = true, + rBackslash = /\\/g, + rReturn = /\r\n/g, + rNonWord = /\W/; + +// Here we check if the JavaScript engine is using some sort of +// optimization where it does not always call our comparision +// function. If that is the case, discard the hasDuplicate value. +// Thus far that includes Google Chrome. +[0, 0].sort(function() { + baseHasDuplicate = false; + return 0; +}); + +var Sizzle = function( selector, context, results, seed ) { + results = results || []; + context = context || document; + + var origContext = context; + + if ( context.nodeType !== 1 && context.nodeType !== 9 ) { + return []; + } + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + var m, set, checkSet, extra, ret, cur, pop, i, + prune = true, + contextXML = Sizzle.isXML( context ), + parts = [], + soFar = selector; + + // Reset the position of the chunker regexp (start from head) + do { + chunker.exec( "" ); + m = chunker.exec( soFar ); + + if ( m ) { + soFar = m[3]; + + parts.push( m[1] ); + + if ( m[2] ) { + extra = m[3]; + break; + } + } + } while ( m ); + + if ( parts.length > 1 && origPOS.exec( selector ) ) { + + if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { + set = posProcess( parts[0] + parts[1], context, seed ); + + } else { + set = Expr.relative[ parts[0] ] ? + [ context ] : + Sizzle( parts.shift(), context ); + + while ( parts.length ) { + selector = parts.shift(); + + if ( Expr.relative[ selector ] ) { + selector += parts.shift(); + } + + set = posProcess( selector, set, seed ); + } + } + + } else { + // Take a shortcut and set the context if the root selector is an ID + // (but not if it'll be faster if the inner selector is an ID) + if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && + Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { + + ret = Sizzle.find( parts.shift(), context, contextXML ); + context = ret.expr ? + Sizzle.filter( ret.expr, ret.set )[0] : + ret.set[0]; + } + + if ( context ) { + ret = seed ? + { expr: parts.pop(), set: makeArray(seed) } : + Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); + + set = ret.expr ? + Sizzle.filter( ret.expr, ret.set ) : + ret.set; + + if ( parts.length > 0 ) { + checkSet = makeArray( set ); + + } else { + prune = false; + } + + while ( parts.length ) { + cur = parts.pop(); + pop = cur; + + if ( !Expr.relative[ cur ] ) { + cur = ""; + } else { + pop = parts.pop(); + } + + if ( pop == null ) { + pop = context; + } + + Expr.relative[ cur ]( checkSet, pop, contextXML ); + } + + } else { + checkSet = parts = []; + } + } + + if ( !checkSet ) { + checkSet = set; + } + + if ( !checkSet ) { + Sizzle.error( cur || selector ); + } + + if ( toString.call(checkSet) === "[object Array]" ) { + if ( !prune ) { + results.push.apply( results, checkSet ); + + } else if ( context && context.nodeType === 1 ) { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { + results.push( set[i] ); + } + } + + } else { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && checkSet[i].nodeType === 1 ) { + results.push( set[i] ); + } + } + } + + } else { + makeArray( checkSet, results ); + } + + if ( extra ) { + Sizzle( extra, origContext, results, seed ); + Sizzle.uniqueSort( results ); + } + + return results; +}; + +Sizzle.uniqueSort = function( results ) { + if ( sortOrder ) { + hasDuplicate = baseHasDuplicate; + results.sort( sortOrder ); + + if ( hasDuplicate ) { + for ( var i = 1; i < results.length; i++ ) { + if ( results[i] === results[ i - 1 ] ) { + results.splice( i--, 1 ); + } + } + } + } + + return results; +}; + +Sizzle.matches = function( expr, set ) { + return Sizzle( expr, null, null, set ); +}; + +Sizzle.matchesSelector = function( node, expr ) { + return Sizzle( expr, null, null, [node] ).length > 0; +}; + +Sizzle.find = function( expr, context, isXML ) { + var set, i, len, match, type, left; + + if ( !expr ) { + return []; + } + + for ( i = 0, len = Expr.order.length; i < len; i++ ) { + type = Expr.order[i]; + + if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { + left = match[1]; + match.splice( 1, 1 ); + + if ( left.substr( left.length - 1 ) !== "\\" ) { + match[1] = (match[1] || "").replace( rBackslash, "" ); + set = Expr.find[ type ]( match, context, isXML ); + + if ( set != null ) { + expr = expr.replace( Expr.match[ type ], "" ); + break; + } + } + } + } + + if ( !set ) { + set = typeof context.getElementsByTagName !== "undefined" ? + context.getElementsByTagName( "*" ) : + []; + } + + return { set: set, expr: expr }; +}; + +Sizzle.filter = function( expr, set, inplace, not ) { + var match, anyFound, + type, found, item, filter, left, + i, pass, + old = expr, + result = [], + curLoop = set, + isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); + + while ( expr && set.length ) { + for ( type in Expr.filter ) { + if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { + filter = Expr.filter[ type ]; + left = match[1]; + + anyFound = false; + + match.splice(1,1); + + if ( left.substr( left.length - 1 ) === "\\" ) { + continue; + } + + if ( curLoop === result ) { + result = []; + } + + if ( Expr.preFilter[ type ] ) { + match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); + + if ( !match ) { + anyFound = found = true; + + } else if ( match === true ) { + continue; + } + } + + if ( match ) { + for ( i = 0; (item = curLoop[i]) != null; i++ ) { + if ( item ) { + found = filter( item, match, i, curLoop ); + pass = not ^ found; + + if ( inplace && found != null ) { + if ( pass ) { + anyFound = true; + + } else { + curLoop[i] = false; + } + + } else if ( pass ) { + result.push( item ); + anyFound = true; + } + } + } + } + + if ( found !== undefined ) { + if ( !inplace ) { + curLoop = result; + } + + expr = expr.replace( Expr.match[ type ], "" ); + + if ( !anyFound ) { + return []; + } + + break; + } + } + } + + // Improper expression + if ( expr === old ) { + if ( anyFound == null ) { + Sizzle.error( expr ); + + } else { + break; + } + } + + old = expr; + } + + return curLoop; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Utility function for retreiving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +var getText = Sizzle.getText = function( elem ) { + var i, node, + nodeType = elem.nodeType, + ret = ""; + + if ( nodeType ) { + if ( nodeType === 1 || nodeType === 9 ) { + // Use textContent || innerText for elements + if ( typeof elem.textContent === 'string' ) { + return elem.textContent; + } else if ( typeof elem.innerText === 'string' ) { + // Replace IE's carriage returns + return elem.innerText.replace( rReturn, '' ); + } else { + // Traverse it's children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + } else { + + // If no nodeType, this is expected to be an array + for ( i = 0; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + if ( node.nodeType !== 8 ) { + ret += getText( node ); + } + } + } + return ret; +}; + +var Expr = Sizzle.selectors = { + order: [ "ID", "NAME", "TAG" ], + + match: { + ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, + ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, + TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, + CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, + POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, + PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ + }, + + leftMatch: {}, + + attrMap: { + "class": "className", + "for": "htmlFor" + }, + + attrHandle: { + href: function( elem ) { + return elem.getAttribute( "href" ); + }, + type: function( elem ) { + return elem.getAttribute( "type" ); + } + }, + + relative: { + "+": function(checkSet, part){ + var isPartStr = typeof part === "string", + isTag = isPartStr && !rNonWord.test( part ), + isPartStrNotTag = isPartStr && !isTag; + + if ( isTag ) { + part = part.toLowerCase(); + } + + for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { + if ( (elem = checkSet[i]) ) { + while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} + + checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? + elem || false : + elem === part; + } + } + + if ( isPartStrNotTag ) { + Sizzle.filter( part, checkSet, true ); + } + }, + + ">": function( checkSet, part ) { + var elem, + isPartStr = typeof part === "string", + i = 0, + l = checkSet.length; + + if ( isPartStr && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + var parent = elem.parentNode; + checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; + } + } + + } else { + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + checkSet[i] = isPartStr ? + elem.parentNode : + elem.parentNode === part; + } + } + + if ( isPartStr ) { + Sizzle.filter( part, checkSet, true ); + } + } + }, + + "": function(checkSet, part, isXML){ + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); + }, + + "~": function( checkSet, part, isXML ) { + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !rNonWord.test( part ) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); + } + }, + + find: { + ID: function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }, + + NAME: function( match, context ) { + if ( typeof context.getElementsByName !== "undefined" ) { + var ret = [], + results = context.getElementsByName( match[1] ); + + for ( var i = 0, l = results.length; i < l; i++ ) { + if ( results[i].getAttribute("name") === match[1] ) { + ret.push( results[i] ); + } + } + + return ret.length === 0 ? null : ret; + } + }, + + TAG: function( match, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( match[1] ); + } + } + }, + preFilter: { + CLASS: function( match, curLoop, inplace, result, not, isXML ) { + match = " " + match[1].replace( rBackslash, "" ) + " "; + + if ( isXML ) { + return match; + } + + for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { + if ( elem ) { + if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { + if ( !inplace ) { + result.push( elem ); + } + + } else if ( inplace ) { + curLoop[i] = false; + } + } + } + + return false; + }, + + ID: function( match ) { + return match[1].replace( rBackslash, "" ); + }, + + TAG: function( match, curLoop ) { + return match[1].replace( rBackslash, "" ).toLowerCase(); + }, + + CHILD: function( match ) { + if ( match[1] === "nth" ) { + if ( !match[2] ) { + Sizzle.error( match[0] ); + } + + match[2] = match[2].replace(/^\+|\s*/g, ''); + + // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' + var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( + match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || + !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); + + // calculate the numbers (first)n+(last) including if they are negative + match[2] = (test[1] + (test[2] || 1)) - 0; + match[3] = test[3] - 0; + } + else if ( match[2] ) { + Sizzle.error( match[0] ); + } + + // TODO: Move to normal caching system + match[0] = done++; + + return match; + }, + + ATTR: function( match, curLoop, inplace, result, not, isXML ) { + var name = match[1] = match[1].replace( rBackslash, "" ); + + if ( !isXML && Expr.attrMap[name] ) { + match[1] = Expr.attrMap[name]; + } + + // Handle if an un-quoted value was used + match[4] = ( match[4] || match[5] || "" ).replace( rBackslash, "" ); + + if ( match[2] === "~=" ) { + match[4] = " " + match[4] + " "; + } + + return match; + }, + + PSEUDO: function( match, curLoop, inplace, result, not ) { + if ( match[1] === "not" ) { + // If we're dealing with a complex expression, or a simple one + if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { + match[3] = Sizzle(match[3], null, null, curLoop); + + } else { + var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); + + if ( !inplace ) { + result.push.apply( result, ret ); + } + + return false; + } + + } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { + return true; + } + + return match; + }, + + POS: function( match ) { + match.unshift( true ); + + return match; + } + }, + + filters: { + enabled: function( elem ) { + return elem.disabled === false && elem.type !== "hidden"; + }, + + disabled: function( elem ) { + return elem.disabled === true; + }, + + checked: function( elem ) { + return elem.checked === true; + }, + + selected: function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + parent: function( elem ) { + return !!elem.firstChild; + }, + + empty: function( elem ) { + return !elem.firstChild; + }, + + has: function( elem, i, match ) { + return !!Sizzle( match[3], elem ).length; + }, + + header: function( elem ) { + return (/h\d/i).test( elem.nodeName ); + }, + + text: function( elem ) { + var attr = elem.getAttribute( "type" ), type = elem.type; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && "text" === type && ( attr === type || attr === null ); + }, + + radio: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "radio" === elem.type; + }, + + checkbox: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "checkbox" === elem.type; + }, + + file: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "file" === elem.type; + }, + + password: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "password" === elem.type; + }, + + submit: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && "submit" === elem.type; + }, + + image: function( elem ) { + return elem.nodeName.toLowerCase() === "input" && "image" === elem.type; + }, + + reset: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && "reset" === elem.type; + }, + + button: function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && "button" === elem.type || name === "button"; + }, + + input: function( elem ) { + return (/input|select|textarea|button/i).test( elem.nodeName ); + }, + + focus: function( elem ) { + return elem === elem.ownerDocument.activeElement; + } + }, + setFilters: { + first: function( elem, i ) { + return i === 0; + }, + + last: function( elem, i, match, array ) { + return i === array.length - 1; + }, + + even: function( elem, i ) { + return i % 2 === 0; + }, + + odd: function( elem, i ) { + return i % 2 === 1; + }, + + lt: function( elem, i, match ) { + return i < match[3] - 0; + }, + + gt: function( elem, i, match ) { + return i > match[3] - 0; + }, + + nth: function( elem, i, match ) { + return match[3] - 0 === i; + }, + + eq: function( elem, i, match ) { + return match[3] - 0 === i; + } + }, + filter: { + PSEUDO: function( elem, match, i, array ) { + var name = match[1], + filter = Expr.filters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + + } else if ( name === "contains" ) { + return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0; + + } else if ( name === "not" ) { + var not = match[3]; + + for ( var j = 0, l = not.length; j < l; j++ ) { + if ( not[j] === elem ) { + return false; + } + } + + return true; + + } else { + Sizzle.error( name ); + } + }, + + CHILD: function( elem, match ) { + var first, last, + doneName, parent, cache, + count, diff, + type = match[1], + node = elem; + + switch ( type ) { + case "only": + case "first": + while ( (node = node.previousSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + if ( type === "first" ) { + return true; + } + + node = elem; + + case "last": + while ( (node = node.nextSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + return true; + + case "nth": + first = match[2]; + last = match[3]; + + if ( first === 1 && last === 0 ) { + return true; + } + + doneName = match[0]; + parent = elem.parentNode; + + if ( parent && (parent[ expando ] !== doneName || !elem.nodeIndex) ) { + count = 0; + + for ( node = parent.firstChild; node; node = node.nextSibling ) { + if ( node.nodeType === 1 ) { + node.nodeIndex = ++count; + } + } + + parent[ expando ] = doneName; + } + + diff = elem.nodeIndex - last; + + if ( first === 0 ) { + return diff === 0; + + } else { + return ( diff % first === 0 && diff / first >= 0 ); + } + } + }, + + ID: function( elem, match ) { + return elem.nodeType === 1 && elem.getAttribute("id") === match; + }, + + TAG: function( elem, match ) { + return (match === "*" && elem.nodeType === 1) || !!elem.nodeName && elem.nodeName.toLowerCase() === match; + }, + + CLASS: function( elem, match ) { + return (" " + (elem.className || elem.getAttribute("class")) + " ") + .indexOf( match ) > -1; + }, + + ATTR: function( elem, match ) { + var name = match[1], + result = Sizzle.attr ? + Sizzle.attr( elem, name ) : + Expr.attrHandle[ name ] ? + Expr.attrHandle[ name ]( elem ) : + elem[ name ] != null ? + elem[ name ] : + elem.getAttribute( name ), + value = result + "", + type = match[2], + check = match[4]; + + return result == null ? + type === "!=" : + !type && Sizzle.attr ? + result != null : + type === "=" ? + value === check : + type === "*=" ? + value.indexOf(check) >= 0 : + type === "~=" ? + (" " + value + " ").indexOf(check) >= 0 : + !check ? + value && result !== false : + type === "!=" ? + value !== check : + type === "^=" ? + value.indexOf(check) === 0 : + type === "$=" ? + value.substr(value.length - check.length) === check : + type === "|=" ? + value === check || value.substr(0, check.length + 1) === check + "-" : + false; + }, + + POS: function( elem, match, i, array ) { + var name = match[2], + filter = Expr.setFilters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + } + } + } +}; + +var origPOS = Expr.match.POS, + fescape = function(all, num){ + return "\\" + (num - 0 + 1); + }; + +for ( var type in Expr.match ) { + Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); + Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); +} + +var makeArray = function( array, results ) { + array = Array.prototype.slice.call( array, 0 ); + + if ( results ) { + results.push.apply( results, array ); + return results; + } + + return array; +}; + +// Perform a simple check to determine if the browser is capable of +// converting a NodeList to an array using builtin methods. +// Also verifies that the returned array holds DOM nodes +// (which is not the case in the Blackberry browser) +try { + Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; + +// Provide a fallback method if it does not work +} catch( e ) { + makeArray = function( array, results ) { + var i = 0, + ret = results || []; + + if ( toString.call(array) === "[object Array]" ) { + Array.prototype.push.apply( ret, array ); + + } else { + if ( typeof array.length === "number" ) { + for ( var l = array.length; i < l; i++ ) { + ret.push( array[i] ); + } + + } else { + for ( ; array[i]; i++ ) { + ret.push( array[i] ); + } + } + } + + return ret; + }; +} + +var sortOrder, siblingCheck; + +if ( document.documentElement.compareDocumentPosition ) { + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { + return a.compareDocumentPosition ? -1 : 1; + } + + return a.compareDocumentPosition(b) & 4 ? -1 : 1; + }; + +} else { + sortOrder = function( a, b ) { + // The nodes are identical, we can exit early + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Fallback to using sourceIndex (in IE) if it's available on both nodes + } else if ( a.sourceIndex && b.sourceIndex ) { + return a.sourceIndex - b.sourceIndex; + } + + var al, bl, + ap = [], + bp = [], + aup = a.parentNode, + bup = b.parentNode, + cur = aup; + + // If the nodes are siblings (or identical) we can do a quick check + if ( aup === bup ) { + return siblingCheck( a, b ); + + // If no parents were found then the nodes are disconnected + } else if ( !aup ) { + return -1; + + } else if ( !bup ) { + return 1; + } + + // Otherwise they're somewhere else in the tree so we need + // to build up a full list of the parentNodes for comparison + while ( cur ) { + ap.unshift( cur ); + cur = cur.parentNode; + } + + cur = bup; + + while ( cur ) { + bp.unshift( cur ); + cur = cur.parentNode; + } + + al = ap.length; + bl = bp.length; + + // Start walking down the tree looking for a discrepancy + for ( var i = 0; i < al && i < bl; i++ ) { + if ( ap[i] !== bp[i] ) { + return siblingCheck( ap[i], bp[i] ); + } + } + + // We ended someplace up the tree so do a sibling check + return i === al ? + siblingCheck( a, bp[i], -1 ) : + siblingCheck( ap[i], b, 1 ); + }; + + siblingCheck = function( a, b, ret ) { + if ( a === b ) { + return ret; + } + + var cur = a.nextSibling; + + while ( cur ) { + if ( cur === b ) { + return -1; + } + + cur = cur.nextSibling; + } + + return 1; + }; +} + +// Check to see if the browser returns elements by name when +// querying by getElementById (and provide a workaround) +(function(){ + // We're going to inject a fake input element with a specified name + var form = document.createElement("div"), + id = "script" + (new Date()).getTime(), + root = document.documentElement; + + form.innerHTML = ""; + + // Inject it into the root element, check its status, and remove it quickly + root.insertBefore( form, root.firstChild ); + + // The workaround has to do additional checks after a getElementById + // Which slows things down for other browsers (hence the branching) + if ( document.getElementById( id ) ) { + Expr.find.ID = function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + + return m ? + m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? + [m] : + undefined : + []; + } + }; + + Expr.filter.ID = function( elem, match ) { + var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); + + return elem.nodeType === 1 && node && node.nodeValue === match; + }; + } + + root.removeChild( form ); + + // release memory in IE + root = form = null; +})(); + +(function(){ + // Check to see if the browser returns only elements + // when doing getElementsByTagName("*") + + // Create a fake element + var div = document.createElement("div"); + div.appendChild( document.createComment("") ); + + // Make sure no comments are found + if ( div.getElementsByTagName("*").length > 0 ) { + Expr.find.TAG = function( match, context ) { + var results = context.getElementsByTagName( match[1] ); + + // Filter out possible comments + if ( match[1] === "*" ) { + var tmp = []; + + for ( var i = 0; results[i]; i++ ) { + if ( results[i].nodeType === 1 ) { + tmp.push( results[i] ); + } + } + + results = tmp; + } + + return results; + }; + } + + // Check to see if an attribute returns normalized href attributes + div.innerHTML = ""; + + if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && + div.firstChild.getAttribute("href") !== "#" ) { + + Expr.attrHandle.href = function( elem ) { + return elem.getAttribute( "href", 2 ); + }; + } + + // release memory in IE + div = null; +})(); + +if ( document.querySelectorAll ) { + (function(){ + var oldSizzle = Sizzle, + div = document.createElement("div"), + id = "__sizzle__"; + + div.innerHTML = "

"; + + // Safari can't handle uppercase or unicode characters when + // in quirks mode. + if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { + return; + } + + Sizzle = function( query, context, extra, seed ) { + context = context || document; + + // Only use querySelectorAll on non-XML documents + // (ID selectors don't work in non-HTML documents) + if ( !seed && !Sizzle.isXML(context) ) { + // See if we find a selector to speed up + var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); + + if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { + // Speed-up: Sizzle("TAG") + if ( match[1] ) { + return makeArray( context.getElementsByTagName( query ), extra ); + + // Speed-up: Sizzle(".CLASS") + } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { + return makeArray( context.getElementsByClassName( match[2] ), extra ); + } + } + + if ( context.nodeType === 9 ) { + // Speed-up: Sizzle("body") + // The body element only exists once, optimize finding it + if ( query === "body" && context.body ) { + return makeArray( [ context.body ], extra ); + + // Speed-up: Sizzle("#ID") + } else if ( match && match[3] ) { + var elem = context.getElementById( match[3] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id === match[3] ) { + return makeArray( [ elem ], extra ); + } + + } else { + return makeArray( [], extra ); + } + } + + try { + return makeArray( context.querySelectorAll(query), extra ); + } catch(qsaError) {} + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + var oldContext = context, + old = context.getAttribute( "id" ), + nid = old || id, + hasParent = context.parentNode, + relativeHierarchySelector = /^\s*[+~]/.test( query ); + + if ( !old ) { + context.setAttribute( "id", nid ); + } else { + nid = nid.replace( /'/g, "\\$&" ); + } + if ( relativeHierarchySelector && hasParent ) { + context = context.parentNode; + } + + try { + if ( !relativeHierarchySelector || hasParent ) { + return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); + } + + } catch(pseudoError) { + } finally { + if ( !old ) { + oldContext.removeAttribute( "id" ); + } + } + } + } + + return oldSizzle(query, context, extra, seed); + }; + + for ( var prop in oldSizzle ) { + Sizzle[ prop ] = oldSizzle[ prop ]; + } + + // release memory in IE + div = null; + })(); +} + +(function(){ + var html = document.documentElement, + matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector; + + if ( matches ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9 fails this) + var disconnectedMatch = !matches.call( document.createElement( "div" ), "div" ), + pseudoWorks = false; + + try { + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( document.documentElement, "[test!='']:sizzle" ); + + } catch( pseudoError ) { + pseudoWorks = true; + } + + Sizzle.matchesSelector = function( node, expr ) { + // Make sure that attribute selectors are quoted + expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); + + if ( !Sizzle.isXML( node ) ) { + try { + if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { + var ret = matches.call( node, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || !disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9, so check for that + node.document && node.document.nodeType !== 11 ) { + return ret; + } + } + } catch(e) {} + } + + return Sizzle(expr, null, null, [node]).length > 0; + }; + } +})(); + +(function(){ + var div = document.createElement("div"); + + div.innerHTML = "
"; + + // Opera can't find a second classname (in 9.6) + // Also, make sure that getElementsByClassName actually exists + if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { + return; + } + + // Safari caches class attributes, doesn't catch changes (in 3.2) + div.lastChild.className = "e"; + + if ( div.getElementsByClassName("e").length === 1 ) { + return; + } + + Expr.order.splice(1, 0, "CLASS"); + Expr.find.CLASS = function( match, context, isXML ) { + if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { + return context.getElementsByClassName(match[1]); + } + }; + + // release memory in IE + div = null; +})(); + +function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem[ expando ] === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 && !isXML ){ + elem[ expando ] = doneName; + elem.sizset = i; + } + + if ( elem.nodeName.toLowerCase() === cur ) { + match = elem; + break; + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem[ expando ] === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 ) { + if ( !isXML ) { + elem[ expando ] = doneName; + elem.sizset = i; + } + + if ( typeof cur !== "string" ) { + if ( elem === cur ) { + match = true; + break; + } + + } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { + match = elem; + break; + } + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +if ( document.documentElement.contains ) { + Sizzle.contains = function( a, b ) { + return a !== b && (a.contains ? a.contains(b) : true); + }; + +} else if ( document.documentElement.compareDocumentPosition ) { + Sizzle.contains = function( a, b ) { + return !!(a.compareDocumentPosition(b) & 16); + }; + +} else { + Sizzle.contains = function() { + return false; + }; +} + +Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; + + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +var posProcess = function( selector, context, seed ) { + var match, + tmpSet = [], + later = "", + root = context.nodeType ? [context] : context; + + // Position selectors must be done after the filter + // And so must :not(positional) so we move all PSEUDOs to the end + while ( (match = Expr.match.PSEUDO.exec( selector )) ) { + later += match[0]; + selector = selector.replace( Expr.match.PSEUDO, "" ); + } + + selector = Expr.relative[selector] ? selector + "*" : selector; + + for ( var i = 0, l = root.length; i < l; i++ ) { + Sizzle( selector, root[i], tmpSet, seed ); + } + + return Sizzle.filter( later, tmpSet ); +}; + +// EXPOSE +// Override sizzle attribute retrieval +Sizzle.attr = jQuery.attr; +Sizzle.selectors.attrMap = {}; +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.filters; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})(); + + +var runtil = /Until$/, + rparentsprev = /^(?:parents|prevUntil|prevAll)/, + // Note: This RegExp should be improved, or likely pulled from Sizzle + rmultiselector = /,/, + isSimple = /^.[^:#\[\.,]*$/, + slice = Array.prototype.slice, + POS = jQuery.expr.match.POS, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var self = this, + i, l; + + if ( typeof selector !== "string" ) { + return jQuery( selector ).filter(function() { + for ( i = 0, l = self.length; i < l; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }); + } + + var ret = this.pushStack( "", "find", selector ), + length, n, r; + + for ( i = 0, l = this.length; i < l; i++ ) { + length = ret.length; + jQuery.find( selector, this[i], ret ); + + if ( i > 0 ) { + // Make sure that the results are unique + for ( n = length; n < ret.length; n++ ) { + for ( r = 0; r < length; r++ ) { + if ( ret[r] === ret[n] ) { + ret.splice(n--, 1); + break; + } + } + } + } + } + + return ret; + }, + + has: function( target ) { + var targets = jQuery( target ); + return this.filter(function() { + for ( var i = 0, l = targets.length; i < l; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector, false), "not", selector); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector, true), "filter", selector ); + }, + + is: function( selector ) { + return !!selector && ( + typeof selector === "string" ? + // If this is a positional selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + POS.test( selector ) ? + jQuery( selector, this.context ).index( this[0] ) >= 0 : + jQuery.filter( selector, this ).length > 0 : + this.filter( selector ).length > 0 ); + }, + + closest: function( selectors, context ) { + var ret = [], i, l, cur = this[0]; + + // Array (deprecated as of jQuery 1.7) + if ( jQuery.isArray( selectors ) ) { + var level = 1; + + while ( cur && cur.ownerDocument && cur !== context ) { + for ( i = 0; i < selectors.length; i++ ) { + + if ( jQuery( cur ).is( selectors[ i ] ) ) { + ret.push({ selector: selectors[ i ], elem: cur, level: level }); + } + } + + cur = cur.parentNode; + level++; + } + + return ret; + } + + // String + var pos = POS.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( i = 0, l = this.length; i < l; i++ ) { + cur = this[i]; + + while ( cur ) { + if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { + ret.push( cur ); + break; + + } else { + cur = cur.parentNode; + if ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) { + break; + } + } + } + } + + ret = ret.length > 1 ? jQuery.unique( ret ) : ret; + + return this.pushStack( ret, "closest", selectors ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? + all : + jQuery.unique( all ) ); + }, + + andSelf: function() { + return this.add( this.prevObject ); + } +}); + +// A painfully simple check to see if an element is disconnected +// from a document (should be improved, where feasible). +function isDisconnected( node ) { + return !node || !node.parentNode || node.parentNode.nodeType === 11; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return jQuery.nth( elem, 2, "nextSibling" ); + }, + prev: function( elem ) { + return jQuery.nth( elem, 2, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( elem.parentNode.firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.makeArray( elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( !runtil.test( name ) ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; + + if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + + return this.pushStack( ret, name, slice.call( arguments ).join(",") ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 ? + jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : + jQuery.find.matches(expr, elems); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + nth: function( cur, result, dir, elem ) { + result = result || 1; + var num = 0; + + for ( ; cur; cur = cur[dir] ) { + if ( cur.nodeType === 1 && ++num === result ) { + break; + } + } + + return cur; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, keep ) { + + // Can't pass null or undefined to indexOf in Firefox 4 + // Set to 0 to skip string check + qualifier = qualifier || 0; + + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep(elements, function( elem, i ) { + var retVal = !!qualifier.call( elem, i, elem ); + return retVal === keep; + }); + + } else if ( qualifier.nodeType ) { + return jQuery.grep(elements, function( elem, i ) { + return ( elem === qualifier ) === keep; + }); + + } else if ( typeof qualifier === "string" ) { + var filtered = jQuery.grep(elements, function( elem ) { + return elem.nodeType === 1; + }); + + if ( isSimple.test( qualifier ) ) { + return jQuery.filter(qualifier, filtered, !keep); + } else { + qualifier = jQuery.filter( qualifier, filtered ); + } + } + + return jQuery.grep(elements, function( elem, i ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; + }); +} + + + + +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, + rtagName = /<([\w:]+)/, + rtbody = /", "" ], + legend: [ 1, "
", "
" ], + thead: [ 1, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + col: [ 2, "", "
" ], + area: [ 1, "", "" ], + _default: [ 0, "", "" ] + }, + safeFragment = createSafeFragment( document ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// IE can't serialize and " \ + "" \ + "" \ + "" \ + "
" \ + "" \ + "Value created at:

" \ + "Next value in:
" \ + "
" \ + "Value: " \ + "
" \ + "
" \ + "

Testpage

" \ + "Welcome %s
" \ + "" \ + "
Link" \ + "
" \ + "
" \ + "" \ + "" + +HttpResponse +httpResponseMe(char * uname) +{ + HttpResponse response; + HttpMessage message; + + response = new(HttpResponse, "HTTP/1.1", 200, "OK"); + message = (HttpMessage)response; + + httpHeaderAdd(&(message->header), + new(HttpHeader, CSTRA("Content-Type"), CSTRA("text/html"))); + httpHeaderAdd(&(message->header), + new(HttpHeader, CSTRA("Set-Cookie"), CSTRA("name=Georg+Hopp"))); + httpHeaderAdd(&(message->header), + new(HttpHeader, CSTRA("Set-Cookie"), CSTRA("profession=coder"))); + + message->type = HTTP_MESSAGE_BUFFERED; + message->nbody = sizeof(RESP_DATA)-1-2+strlen(uname); //!< the two are the %s + message->body = malloc(message->nbody+1); + sprintf(message->body, RESP_DATA, uname); + //memcpy(message->body, RESP_DATA, sizeof(RESP_DATA)-1); + + return response; +} + +// vim: set ts=4 sw=4: diff --git a/src/http/response/randval.c b/src/http/response/randval.c new file mode 100644 index 0000000..059effa --- /dev/null +++ b/src/http/response/randval.c @@ -0,0 +1,68 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include +#include + +#include "class.h" +#include "interface/class.h" + +#include "http/response.h" +#include "http/message.h" +#include "http/header.h" + +#include "utils/memory.h" + +#define RESP_DATA "{\"ctime\":%ld,\"vnext\":%ld,\"value\":\"%02d\"}" + +HttpResponse +httpResponseRandval(time_t ctime, int value) +{ + char buffer[200]; + HttpResponse response; + HttpMessage message; + size_t nbuf; + time_t remaining; + + response = new(HttpResponse, "HTTP/1.1", 200, "OK"); + message = (HttpMessage)response; + + httpHeaderAdd(&(message->header), + new(HttpHeader, CSTRA("Content-Type"), CSTRA("application/json"))); + + message->type = HTTP_MESSAGE_BUFFERED; + + remaining = 10 - (time(NULL) - ctime); + + nbuf = sprintf(buffer, RESP_DATA, ctime, remaining, value); + + message->nbody = nbuf; + message->body = malloc(nbuf); + memcpy(message->body, buffer, nbuf); + + return response; +} + +// vim: set ts=4 sw=4: diff --git a/src/http/worker.c b/src/http/worker.c new file mode 100644 index 0000000..b4dfc1a --- /dev/null +++ b/src/http/worker.c @@ -0,0 +1,124 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#define _GNU_SOURCE + +#include +#include +#include +#include +#include + +#include "class.h" +#include "stream.h" +#include "http/worker.h" +#include "http/parser.h" +#include "http/writer.h" + +#include "interface/class.h" +#include "interface/stream_reader.h" +#include "interface/stream_writer.h" + +#include "utils/memory.h" + +static +int +httpWorkerCtor(void * _this, va_list * params) +{ + HttpWorker this = _this; + char * id = va_arg(*params, char *); + char cbuf_id[100]; + + this->id = malloc(strlen(id) + 1); + strcpy(this->id, id); + + this->val = va_arg(*params, struct randval *); + + sprintf(cbuf_id, "%s_%s", "parser", id); + this->pbuf = new(Cbuf, cbuf_id, PARSER_MAX_BUF); + + sprintf(cbuf_id, "%s_%s", "writer", id); + this->wbuf = new(Cbuf, cbuf_id, WRITER_MAX_BUF); + + this->parser = new(HttpParser, this->pbuf); + this->writer = new(HttpWriter, this->wbuf); + + this->sroot = &(this->session); + + return 0; +} + +static +inline +void +tDelete(void * node) +{ + delete(node); +} + +static +void +httpWorkerDtor(void * _this) +{ + HttpWorker this = _this; + + FREE(this->id); + + delete(this->parser); + delete(this->writer); + + if (NULL != this->pbuf) { + delete(this->pbuf); //!< cloned workers have NULL, so delete won't do anything + delete(this->wbuf); //!< cloned workers have NULL, so delete won't do anything + tdestroy(*(this->sroot), tDelete); + } +} + +static +void +httpWorkerClone(void * _this, void * _base) +{ + HttpWorker this = _this; + HttpWorker base = _base; + + this->val = base->val; + + this->parser = new(HttpParser, base->pbuf); + this->writer = new(HttpWriter, base->wbuf); + + this->sroot = &(base->session); +} + +ssize_t httpWorkerProcess(void *, Stream); +ssize_t httpWorkerWrite(void *, Stream); + +INIT_IFACE(Class, httpWorkerCtor, httpWorkerDtor, httpWorkerClone); +INIT_IFACE(StreamReader, httpWorkerProcess); +INIT_IFACE(StreamWriter, httpWorkerWrite); +CREATE_CLASS( + HttpWorker, + NULL, + IFACE(Class), + IFACE(StreamReader), + IFACE(StreamWriter)); + +// vim: set ts=4 sw=4: diff --git a/src/http/worker/add_common_header.c b/src/http/worker/add_common_header.c new file mode 100644 index 0000000..36fbf6d --- /dev/null +++ b/src/http/worker/add_common_header.c @@ -0,0 +1,51 @@ +#include +#include + +#include "class.h" +#include "interface/class.h" + +#include "http/message.h" +#include "http/response.h" + +#include "utils/memory.h" + +void +httpWorkerAddCommonHeader(HttpMessage request, HttpMessage response) +{ + time_t t; + struct tm * tmp; + char buffer[200]; + size_t nbuf; + + if (httpMessageHasKeepAlive(request)) { + httpHeaderAdd( + &(response->header), + new(HttpHeader, CSTRA("Connection"), CSTRA("Keep-Alive"))); + } + else { + httpHeaderAdd( + &(response->header), + new(HttpHeader, CSTRA("Connection"), CSTRA("Close"))); + } + + httpHeaderAdd(&(response->header), + new(HttpHeader, CSTRA("Server"), CSTRA("testserver"))); + + switch(((HttpResponse)response)->status) { + case 304: + break; + + default: + nbuf = sprintf(buffer, "%d", response->nbody); + httpHeaderAdd(&(response->header), + new(HttpHeader, CSTRA("Content-Length"), buffer, nbuf)); + } + + t = time(NULL); + tmp = localtime(&t); + nbuf = strftime(buffer, sizeof(buffer), "%a, %d %b %Y %T %Z", tmp); + httpHeaderAdd(&(response->header), + new(HttpHeader, CSTRA("Date"), buffer, nbuf)); +} + +// vim: set ts=4 sw=4: diff --git a/src/http/worker/get_asset.c b/src/http/worker/get_asset.c new file mode 100644 index 0000000..180729b --- /dev/null +++ b/src/http/worker/get_asset.c @@ -0,0 +1,38 @@ +#include + +#include "http/header.h" +#include "http/message.h" +#include "http/request.h" +#include "http/response.h" + +#include "utils/memory.h" + +HttpMessage +httpWorkerGetAsset( + HttpRequest request, + const char * fname, + const char * mime, + size_t nmime) +{ + char * match; + size_t nmatch; + HttpHeader header; + + header = httpHeaderGet( + &(((HttpMessage)request)->header), + CSTRA("If-None-Match")); + + if (NULL == header) { + match = ""; + nmatch = 0; + } + else { + match = (header->value)[0]; + nmatch = (header->nvalue)[0]; + } + + return (HttpMessage)httpResponseAsset( + fname, mime, nmime, match, nmatch); +} + +// vim: set ts=4 sw=4: diff --git a/src/http/worker/process.c b/src/http/worker/process.c new file mode 100644 index 0000000..f7a65e9 --- /dev/null +++ b/src/http/worker/process.c @@ -0,0 +1,169 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include + +#include "class.h" +#include "interface/class.h" + +#include "http/worker.h" +#include "http/message.h" +#include "http/request.h" +#include "http/response.h" +#include "http/message/queue.h" +#include "http/parser.h" +#include "session.h" +#include "stream.h" + +#include "utils/memory.h" + +HttpMessage httpWorkerGetAsset(HttpRequest, const char *, const char *, size_t); +void httpWorkerAddCommonHeader(HttpMessage, HttpMessage); + +ssize_t +httpWorkerProcess(HttpWorker this, Stream st) +{ + ssize_t size; + + if (0 < (size = httpParserParse(this->parser, st))) { + int i; + HttpMessageQueue reqq = this->parser->queue; + HttpMessageQueue respq = this->writer->queue; + + for (i=0; inmsgs; i++) { + HttpMessage rmessage = reqq->msgs[i]; + HttpRequest request = (HttpRequest)(reqq->msgs[i]); + HttpMessage response = NULL; + HttpHeader cookie = httpHeaderGet( + &(rmessage->header), + CSTRA("cookie")); + + if (NULL == this->session && NULL != cookie) { + int i; + + for (i=0; icvalue; i++) { + char * sidstr = strstr(cookie->value[i], "sid"); + + if (NULL != sidstr) { + unsigned long sid; + + sidstr = strchr(sidstr, '=')+1; + sid = strtoul(sidstr, NULL, 10); + + this->session = sessionGet(this->sroot, sid); + break; + } + } + } + + if (NULL != this->session) { + if (time(NULL) < this->session->livetime) { + this->session->livetime = time(NULL) + SESSION_LIVETIME; + } else { + sessionDelete(this->sroot, this->session->id); + delete(this->session); + } + } + + if (0 == strcmp("POST", request->method)) { + if (0 == strcmp("/me/", request->uri)) { + char * delim = memchr(rmessage->body, '=', rmessage->nbody); + char * val; + size_t nkey, nval; + char buffer[200]; + size_t nbuf; + + nkey = delim - rmessage->body - 1; + *delim = 0; + val = delim + 1; + nval = rmessage->nbody - (val - rmessage->body); + + this->session = sessionAdd( + this->sroot, + new(Session, val, nval)); + nbuf = sprintf(buffer, "sid=%lu;Path=/", this->session->id); + + response = (HttpMessage)httpResponseMe(this->session->username); + + httpHeaderAdd( + &(response->header), + new(HttpHeader, CSTRA("Set-Cookie"), buffer, nbuf)); + } + } + + if (0 == strcmp("GET", request->method)) { + + if (0 == strcmp("/login/", request->uri)) { + response = (HttpMessage)httpResponseLoginForm(); + } + + if (0 == strcmp("/me/", request->uri)) { + char * uname = (NULL != this->session)? this->session->username : ""; + response = (HttpMessage)httpResponseMe(uname); + } + + if (0 == strcmp("/randval/", request->uri)) { + if (NULL != this->session) { + response = (HttpMessage)httpResponseRandval( + this->val->timestamp, + this->val->value); + } else { + response = (HttpMessage)httpResponse403(); + } + } + + if (0 == strcmp("/image/", request->uri)) { + response = httpWorkerGetAsset( + request, + "./assets/waldschrat.jpg", + CSTRA("image/jpeg")); + } + + if (0 == strcmp("/jquery/", request->uri)) { + response = httpWorkerGetAsset( + request, + "./assets/jquery-1.7.1.min.js", + CSTRA("text/javascript")); + } + } + + if (NULL == response) { + response = (HttpMessage)httpResponse404(); + } + + httpWorkerAddCommonHeader((HttpMessage)request, response); + + respq->msgs[(respq->nmsgs)++] = response; + response = NULL; + delete((reqq->msgs)[i]); + } + + reqq->nmsgs = 0; + } + + return size; +} + +// vim: set ts=4 sw=4: diff --git a/src/http/worker/write.c b/src/http/worker/write.c new file mode 100644 index 0000000..ca1889c --- /dev/null +++ b/src/http/worker/write.c @@ -0,0 +1,35 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +#include "http/worker.h" +#include "http/writer.h" +#include "stream.h" + +ssize_t +httpWorkerWrite(HttpWorker this, Stream st) +{ + return httpWriterWrite(this->writer, st); +} + +// vim: set ts=4 sw=4: diff --git a/src/http/writer.c b/src/http/writer.c new file mode 100644 index 0000000..00104e9 --- /dev/null +++ b/src/http/writer.c @@ -0,0 +1,63 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +#include "class.h" +#include "interface/class.h" +#include "interface/stream_writer.h" + +#include "http/message/queue.h" +#include "http/writer.h" + +static +int +httpWriterCtor(void * _this, va_list * params) +{ + HttpWriter this = _this; + + this->buffer = va_arg(*params, Cbuf); + this->queue = new(HttpMessageQueue); + + return 0; +} + +static +void +httpWriterDtor(void * _this) +{ + HttpWriter this = _this; + + delete(this->queue); + + if (TRUE == this->ourLock) + cbufRelease(this->buffer); + + if (NULL != this->current) + delete(this->current); +} + +INIT_IFACE(Class, httpWriterCtor, httpWriterDtor, NULL); +INIT_IFACE(StreamWriter, httpWriterWrite); +CREATE_CLASS(HttpWriter, NULL, IFACE(Class), IFACE(StreamWriter)); + +// vim: set ts=4 sw=4: diff --git a/src/http/writer/write.c b/src/http/writer/write.c new file mode 100644 index 0000000..abf46d8 --- /dev/null +++ b/src/http/writer/write.c @@ -0,0 +1,155 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include "class.h" +#include "interface/class.h" +#include "http/message.h" +#include "http/writer.h" +#include "cbuf.h" +#include "stream.h" + +#define MIN(x,y) ((x) < (y) ? (x) : (y)) +#define MAX(x,y) ((x) > (y) ? (x) : (y)) + +ssize_t +httpWriterWrite(void * _this, Stream st) +{ + HttpWriter this = _this; + HttpMessageQueue respq = this->queue; + int cont = 1; + + if (cbufIsLocked(this->buffer)) { + if (FALSE == this->ourLock) + return 0; + } + else { + cbufLock(this->buffer); + this->ourLock = TRUE; + } + + while (cont) { + switch (this->state) { + case HTTP_WRITER_GET: + if (NULL == this->current && 0 < respq->nmsgs) { + this->current = respq->msgs[0]; + + this->written = 0; + this->nbody = 0; + this->nheader = httpMessageHeaderSizeGet(this->current); + + httpMessageHeaderToString( + this->current, + cbufGetWrite(this->buffer)); + cbufIncWrite(this->buffer, this->nheader); + + this->state = HTTP_WRITER_WRITE; + } + else { + cbufRelease(this->buffer); + this->ourLock = FALSE; + cont = 0; + } + break; + + case HTTP_WRITER_WRITE: + /** + * read + */ + if (this->nbody < this->current->nbody) { + size_t size = MIN( + this->current->nbody - this->nbody, + cbufGetFree(this->buffer)); + + switch (this->current->type) { + case HTTP_MESSAGE_BUFFERED: + cbufSetData(this->buffer, + this->current->body + this->nbody, + size); + break; + + case HTTP_MESSAGE_PIPED: + size = cbufRead(this->buffer, this->current->handle); + break; + + default: + return -1; + } + + this->nbody += size; + } + + /** + * write + */ + { + ssize_t written = cbufWrite(this->buffer, st); + + if (0 <= written) { + this->written += written; + } + else { + return -1; + } + } + + if (this->written == this->current->nbody + this->nheader) { + this->state = HTTP_WRITER_DONE; + } + else { + cont = 0; + } + break; + + case HTTP_WRITER_DONE: + this->state = HTTP_WRITER_GET; + + memmove(respq->msgs, + &(respq->msgs[1]), + sizeof(void*) * (--respq->nmsgs + 1)); + + cbufRelease(this->buffer); + this->ourLock = FALSE; + + if (! httpMessageHasKeepAlive(this->current)) { + /** + * if the message did not have the keep-alive feature + * we don't care about further pipelined messages and + * return to the caller with a -1 indicating that the + * underlying connection should be closed at their side. + * Then we close to connection. + */ + delete(this->current); + return -1; + } + + delete(this->current); + break; + } + } + + return respq->nmsgs; +} + +// vim: set ts=4 sw=4: diff --git a/src/interface.c b/src/interface.c new file mode 100644 index 0000000..04ef14a --- /dev/null +++ b/src/interface.c @@ -0,0 +1,64 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include "interface.h" +#include "commons.h" + +static +inline +int +comp(const void * _a, const void * _b) +{ + const struct interface * a = **(const struct interface ***)_a; + const struct interface * b = **(const struct interface ***)_b; + return ((a)<(b))? -1 : ((a)>(b))? 1 : 0; +} + +/** + * this one is important in selector functions to get the correct interface + * implementation of a class. + */ +struct interface * +interfaceGet(iface_impl_ptr iface_impl, const iface_ptr _iface) +{ + const iface_ptr * iface = &_iface; + void * dummy; + + if (! iface_impl->simpl) { + qsort((void**)(iface_impl->impl), iface_impl->nimpl, sizeof(iface_ptr), comp); + iface_impl->simpl=TRUE; + } + + dummy = bsearch( + &iface, + iface_impl->impl, + iface_impl->nimpl, + sizeof(iface_ptr), + comp); + + return dummy? *(struct interface **)dummy : dummy; +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/class.c b/src/interface/class.c new file mode 100644 index 0000000..8327e89 --- /dev/null +++ b/src/interface/class.c @@ -0,0 +1,85 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include "class.h" +#include "interface/class.h" + +const +struct interface i_Class = { + "class", + 3 +}; + +void * +classNew(class_ptr class, ...) +{ + void * object = calloc(1, class->object_size + sizeof(void*)); + va_list params; + int ret; + + if (class->init) class->init(); + + * (class_ptr *)object = class; + object += sizeof(void*); + + va_start(params, class); + RETCALL(object, Class, ctor, ret, ¶ms); + va_end(params); + + if (-1 == ret) { + classDelete(&object); + } + + return object; +} + +void +classDelete(void ** object) +{ + if (NULL != *object) { + CALL(*object, Class, dtor); + + free(*object - sizeof(void*)); + *object = NULL; + } +} + +void * +classClone(void * _object) +{ + class_ptr class = GET_CLASS(_object); + void * object = calloc(1, class->object_size + sizeof(void*)); + + * (class_ptr *)object = class; + object += sizeof(void*); + +#undef clone + CALL(object, Class, clone, _object); + + return object; +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/http_intro.c b/src/interface/http_intro.c new file mode 100644 index 0000000..2f12eb0 --- /dev/null +++ b/src/interface/http_intro.c @@ -0,0 +1,51 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "class.h" +#include "interface/http_intro.h" + +const struct interface i_HttpIntro = { + "httpIntro", + 2 +}; + +size_t +httpIntroSizeGet(void * object) +{ + size_t ret; + + RETCALL(object, HttpIntro, sizeGet, ret); + + return ret; +} + +char * +httpIntroToString(void * object, char * string) +{ + char * ret; + + RETCALL(object, HttpIntro, toString, ret, string); + + return ret; +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/logger.c b/src/interface/logger.c new file mode 100644 index 0000000..bb2a75e --- /dev/null +++ b/src/interface/logger.c @@ -0,0 +1,60 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include "logger.h" +#include "interface/logger.h" + +const struct interface i_Logger = { + "logger", + 1 +}; + +void +loggerLog(void * _object, logger_level level, const char * const fmt, ...) { + Logger object = _object; + + if (level >= object->min_level) { + char * msg = NULL; + size_t msg_size = 0; + va_list params; + + va_start(params, fmt); + msg_size = vsnprintf(msg, msg_size, fmt, params); + va_end(params); + + msg = malloc(msg_size + 1); + + va_start(params, fmt); + vsnprintf(msg, msg_size + 1, fmt, params); + va_end(params); + + CALL(_object, Logger, log, level, msg); + + free(msg); + } +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/observer.c b/src/interface/observer.c new file mode 100644 index 0000000..b2424e7 --- /dev/null +++ b/src/interface/observer.c @@ -0,0 +1,37 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "class.h" +#include "interface/observer.h" + +const struct interface i_Observer = { + "observer", + 1 +}; + +void +observerNotify(void * observer, void * subject) +{ + CALL(observer, Observer, notify, subject); +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/stream_reader.c b/src/interface/stream_reader.c new file mode 100644 index 0000000..c23895e --- /dev/null +++ b/src/interface/stream_reader.c @@ -0,0 +1,42 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "class.h" +#include "interface/stream_reader.h" +#include "stream.h" + +const struct interface i_StreamReader = { + "streamReader", + 1 +}; + +ssize_t +streamReaderRead(void * object, Stream st) +{ + ssize_t ret; + + RETCALL(object, StreamReader, read, ret, st); + + return ret; +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/stream_writer.c b/src/interface/stream_writer.c new file mode 100644 index 0000000..8489a0d --- /dev/null +++ b/src/interface/stream_writer.c @@ -0,0 +1,42 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "class.h" +#include "interface/stream_writer.h" +#include "stream.h" + +const struct interface i_StreamWriter = { + "streamWriter", + 1 +}; + +ssize_t +streamWriterWrite(void * object, Stream st) +{ + ssize_t ret; + + RETCALL(object, StreamWriter, write, ret, st); + + return ret; +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/subject.c b/src/interface/subject.c new file mode 100644 index 0000000..4ee3f4a --- /dev/null +++ b/src/interface/subject.c @@ -0,0 +1,49 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "class.h" +#include "interface/subject.h" + +const struct interface i_Subject = { + "subject", + 3 +}; + +void +subjectAttach(void * subject, void * observer) +{ + CALL(subject, Subject, attach, observer); +} + +void +subjectDetach(void * subject, void * observer) +{ + CALL(subject, Subject, detach, observer); +} + +void +subjectNotify(void * subject) +{ + CALL(subject, Subject, notify); +} + +// vim: set ts=4 sw=4: diff --git a/src/logger.c b/src/logger.c new file mode 100644 index 0000000..859ceed --- /dev/null +++ b/src/logger.c @@ -0,0 +1,57 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +#include "logger.h" +#include "interface/class.h" +#include "interface/logger.h" + +const +char * const +logger_level_str[] = { + "DEBUG", + "INFO", + "NOTICE", + "WARNING", + "ERR", + "CRIT", + "ALERT", + "EMERG" +}; + +static +int +loggerCtor(void * _this, va_list * params) +{ + Logger this = _this; + this->min_level = va_arg(*params, int); + + return 0; +} + +static void loggerDtor(void * _this) {} + +INIT_IFACE(Class, loggerCtor, loggerDtor, NULL); +CREATE_CLASS(Logger, NULL, IFACE(Class)); + +// vim: set ts=4 sw=4: diff --git a/src/logger/stderr.c b/src/logger/stderr.c new file mode 100644 index 0000000..dd26e1b --- /dev/null +++ b/src/logger/stderr.c @@ -0,0 +1,38 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +#include "logger.h" +#include "interface/logger.h" + +static +void +logStderr(void * this, logger_level level, const char * const msg) +{ + fprintf(stderr, "[%s] %s\n", logger_level_str[level], msg); +} + +INIT_IFACE(Logger, logStderr); +CREATE_CLASS(LoggerStderr, Logger, IFACE(Logger)); + +// vim: set ts=4 sw=4: diff --git a/src/logger/syslog.c b/src/logger/syslog.c new file mode 100644 index 0000000..3667606 --- /dev/null +++ b/src/logger/syslog.c @@ -0,0 +1,51 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +#include "logger.h" +#include "interface/logger.h" + +static +const +int syslog_priority[] = { + LOG_USER | LOG_DEBUG, + LOG_USER | LOG_INFO, + LOG_USER | LOG_NOTICE, + LOG_USER | LOG_WARNING, + LOG_USER | LOG_ERR, + LOG_USER | LOG_CRIT, + LOG_USER | LOG_ALERT, + LOG_USER | LOG_EMERG +}; + +static +void +logSyslog(void * this, logger_level level, const char * const msg) +{ + syslog(syslog_priority[level], "[%s] %s", logger_level_str[level], msg); +} + +INIT_IFACE(Logger, logSyslog); +CREATE_CLASS(LoggerSyslog, Logger, IFACE(Logger)); + +// vim: set ts=4 sw=4: diff --git a/src/server.c b/src/server.c new file mode 100644 index 0000000..a8e7951 --- /dev/null +++ b/src/server.c @@ -0,0 +1,132 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include +#include + +#include "class.h" +#include "server.h" +#include "socket.h" +#include "logger.h" +#include "interface/class.h" + +#include "utils/memory.h" + +static +int +serverCtor(void * _this, va_list * params) +{ + Server this = _this; + in_port_t port; + unsigned int backlog; + int flags; + + this->max_fds = sysconf(_SC_OPEN_MAX); + if (this->max_fds <= 10) { // reserve 10 handles for internal use. + /** + * \todo some logging would be appropriate :) + */ + return -1; + } + this->max_fds -= 10; + + this->logger = va_arg(* params, Logger); + this->worker = va_arg(* params, void *); + port = va_arg(* params, int); + backlog = va_arg(* params, unsigned int); + + this->fds = calloc(sizeof(struct pollfd), this->max_fds); + this->conns = calloc(sizeof(struct conns), this->max_fds); + + this->sock = new(Sock, this->logger, port); + flags = fcntl(this->sock->handle, F_GETFL, 0); + fcntl(this->sock->handle, F_SETFL, flags | O_NONBLOCK); + + this->sockSSL = new(Sock, this->logger, port+1); + flags = fcntl(this->sockSSL->handle, F_GETFL, 0); + fcntl(this->sockSSL->handle, F_SETFL, flags | O_NONBLOCK); + + SSL_library_init(); + SSL_load_error_strings(); + this->ctx = SSL_CTX_new(SSLv23_server_method()); + SSL_CTX_use_certificate_file( + this->ctx, + "./certs/server.crt", + SSL_FILETYPE_PEM); + + SSL_CTX_use_RSAPrivateKey_file( + this->ctx, + "./certs/server.key", + SSL_FILETYPE_PEM); + + socketListen(this->sock, backlog); + socketListen(this->sockSSL, backlog); + + (this->fds)[0].fd = this->sock->handle; + (this->fds)[0].events = POLLIN; + (this->fds)[1].fd = this->sockSSL->handle; + (this->fds)[1].events = POLLIN; + this->nfds = 2; + + return 0; +} + +static +void +serverDtor(void * _this) +{ + Server this = _this; + int i; + + for (i=0; infds; i++) { + if (this->sock->handle != (this->fds)[i].fd) { + Stream st = (this->conns[(this->fds)[i].fd]).stream; + + delete((this->conns[(this->fds)[i].fd]).sock); + delete((this->conns[(this->fds)[i].fd]).worker); + + if (NULL != st && STREAM_SSL == st->type) { + SSL_shutdown((st->handle).ssl); + SSL_free((st->handle).ssl); + } + + delete((this->conns[(this->fds)[i].fd]).stream); + } + } + + FREE(this->fds); + FREE(this->conns); + + delete(this->sock); + delete(this->sockSSL); + SSL_CTX_free(this->ctx); + ERR_free_strings(); +} + +INIT_IFACE(Class, serverCtor, serverDtor, NULL); +CREATE_CLASS(Server, NULL, IFACE(Class)); + +// vim: set ts=4 sw=4: diff --git a/src/server/close_conn.c b/src/server/close_conn.c new file mode 100644 index 0000000..dcab329 --- /dev/null +++ b/src/server/close_conn.c @@ -0,0 +1,48 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include "server.h" +#include "interface/class.h" +#include "stream.h" + +void +serverCloseConn(Server this, unsigned int i) +{ + int fd = (this->fds)[i].fd; + Stream st = (this->conns[(this->fds)[i].fd]).stream; + + delete((this->conns)[fd].sock); + delete((this->conns)[fd].worker); + + if (NULL != st && STREAM_SSL == st->type) { + SSL_shutdown((st->handle).ssl); + } + + delete((this->conns)[fd].stream); + + memset(&(this->fds[i]), 0, sizeof(struct pollfd)); +} + +// vim: set ts=4 sw=4: diff --git a/src/server/handle_accept.c b/src/server/handle_accept.c new file mode 100644 index 0000000..8235e30 --- /dev/null +++ b/src/server/handle_accept.c @@ -0,0 +1,100 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include + +#include "http/worker.h" +#include "server.h" +#include "interface/class.h" +#include "interface/logger.h" +#include "stream.h" + +int +serverHandleAccept(Server this, unsigned int i) +{ + char remoteAddr[16] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"; + Sock acc = NULL; + Stream st; + + if (this->nfds >= this->max_fds) { + return -1; + } + + switch(i) { + case 0: + // no SSL + acc = socketAccept(this->sock, &remoteAddr); + st = new(Stream, STREAM_FD, acc->handle); + break; + + case 1: + // SSL + { + SSL * ssl = SSL_new(this->ctx); + acc = socketAccept(this->sockSSL, &remoteAddr); + SSL_set_fd(ssl, acc->handle); + SSL_accept(ssl); + st = new(Stream, STREAM_SSL, ssl); + } + break; + + default: + break; + } + + if (-1 != acc->handle) { + // save the socket handle + (this->conns)[acc->handle].sock = acc; + + // clone worker + (this->conns)[acc->handle].worker = clone(this->worker); + (this->conns)[acc->handle].stream = st; + + (this->fds)[this->nfds].fd = acc->handle; + (this->fds)[this->nfds].events = POLLIN; + this->nfds++; + } else { + delete(acc); + + switch(errno) { + case EAGAIN: + loggerLog(this->logger, + LOGGER_DEBUG, + "server accept blocks"); + break; + + default: + loggerLog(this->logger, + LOGGER_DEBUG, + "server accept error"); + break; + } + } + + return (acc)? acc->handle : -1; +} + +// vim: set ts=4 sw=4: diff --git a/src/server/poll.c b/src/server/poll.c new file mode 100644 index 0000000..8c1d76c --- /dev/null +++ b/src/server/poll.c @@ -0,0 +1,81 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include "server.h" +#include "interface/logger.h" + +#include "utils/signalHandling.h" + +#define POLLFD(ptr) ((struct pollfd *)(ptr)) +#define SWAP(a, b) ((a)^=(b),(b)^=(a),(a)^=(b)) + +int +serverPoll(Server this) { + int events; + + /** + * put all closed fds to end of array in O(this->nfds) + */ + struct pollfd * fda = &(this->fds[2]); + struct pollfd * fdb = &(this->fds[this->nfds-1]); + + while (fda <= fdb) { + while (0 == fdb->fd && fda <= fdb) { + fdb--; + this->nfds--; + } + + while (0 != fda->fd && fda <= fdb) fda++; + + if (fda < fdb) { + memcpy(fda, fdb, sizeof(struct pollfd)); + fdb--; + this->nfds--; + } + } + + /* + * wait for handles to become ready + */ + if (-1 == (events = poll(this->fds, this->nfds, -1))) { + switch (errno) { + default: + case EBADF: + case EINVAL: + case ENOMEM: + doShutdown = 1; + // DROP THROUGH + + case EINTR: + loggerLog(this->logger, LOGGER_CRIT, + "poll systemcall failed: [%s] - service terminated", + strerror(errno)); + } + } + + return events; +} + +// vim: set ts=4 sw=4: diff --git a/src/server/read.c b/src/server/read.c new file mode 100644 index 0000000..0eda967 --- /dev/null +++ b/src/server/read.c @@ -0,0 +1,79 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "server.h" +#include "interface/logger.h" +#include "interface/stream_reader.h" + +void serverCloseConn(Server, unsigned int); + +ssize_t +serverRead(Server this, unsigned int i) +{ + int fd = (this->fds)[i].fd; + ssize_t size; + + if (NULL == (this->conns)[fd].worker) { + loggerLog( + this->logger, + LOGGER_INFO, + "initialization error: NULL reader"); + return -1; + } + + switch ((size = streamReaderRead( + (this->conns)[fd].worker, + (this->conns)[fd].stream))) + { + case -2: + /** + * normal close: this must be mapped to -2 within the + * underlying read call. + * + * \todo make sure all pending writes will be done before + * close. + */ + // DROP-THROUGH + + case -1: + /* + * read failure / close connection + */ + loggerLog(this->logger, LOGGER_INFO, + "connection[%d] closed...%s", + fd, + inet_ntoa((((this->conns)[fd].sock)->addr).sin_addr)); + serverCloseConn(this, i); + break; + + case 0: + break; + + default: + (this->fds)[i].events |= POLLOUT; + break; + } + + return size; +} + +// vim: set ts=4 sw=4: diff --git a/src/server/run.c b/src/server/run.c new file mode 100644 index 0000000..950a292 --- /dev/null +++ b/src/server/run.c @@ -0,0 +1,97 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "server.h" +#include "interface/logger.h" + +#include "utils/signalHandling.h" + +int serverPoll(Server); +int serverHandleAccept(Server, unsigned int); +void serverCloseConn(Server, unsigned int); +ssize_t serverRead(Server, unsigned int); +ssize_t serverWrite(Server, unsigned int); + +void +serverRun(Server this) +{ + loggerLog(this->logger, LOGGER_INFO, "service started"); + + while (!doShutdown) //! until error or signal + { + int events; + unsigned int i; + int naccs = 10; + + events = serverPoll(this); + if (doShutdown || 0 >= events) break; + + /** + * handle accept + */ + if (0 != ((this->fds)[0].revents & POLLIN)) { + events--; + while(-1 != serverHandleAccept(this, 0) && 0 < naccs) { + naccs--; + } + } + + /** + * handle accept SSL + */ + if (0 != ((this->fds)[1].revents & POLLIN)) { + events--; + while(-1 != serverHandleAccept(this, 1) && 0 < naccs) { + naccs--; + } + } + + for (i=2; i < this->nfds; i++) { + int nreads = 10, nwrites = 10; + + /** + * handle reads + */ + if (0 != ((this->fds)[i].revents & POLLIN) && 0 < nreads) { + events--; + nreads--; + + serverRead(this, i); + } + + /** + * handle writes + */ + if (0 != ((this->fds)[i].revents & POLLOUT) && 0 < nwrites) { + events--; + nwrites--; + + serverWrite(this, i); + } + + if (0 > events) + break; // no more events to handle + } + } +} + +// vim: set ts=4 sw=4: diff --git a/src/server/write.c b/src/server/write.c new file mode 100644 index 0000000..aa5e69a --- /dev/null +++ b/src/server/write.c @@ -0,0 +1,63 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "server.h" +#include "interface/logger.h" +#include "interface/stream_writer.h" + +void serverCloseConn(Server, unsigned int); + +ssize_t +serverWrite(Server this, unsigned int i) +{ + int fd = (this->fds)[i].fd; + ssize_t remaining; + + if (NULL == (this->conns)[fd].worker) { + loggerLog( + this->logger, + LOGGER_INFO, + "initialization error: NULL worker"); + return -1; + } + + remaining = streamWriterWrite( + (this->conns)[fd].worker, + (this->conns)[fd].stream); + + switch(remaining) { + case -1: + serverCloseConn(this, i); + break; + + case 0: + (this->fds)[i].events &= ~POLLOUT; + break; + + default: + break; + } + + return remaining; +} + +// vim: set ts=4 sw=4: diff --git a/src/session.c b/src/session.c new file mode 100644 index 0000000..b3b4e37 --- /dev/null +++ b/src/session.c @@ -0,0 +1,46 @@ +#include +#include +#include +#include +#include +#include + +#include "session.h" +#include "class.h" +#include "interface/class.h" + +#include "utils/hash.h" +#include "utils/memory.h" + + +static +int +sessionCtor(void * _this, va_list * params) +{ + Session this = _this; + char * uname = va_arg(* params, char *); + size_t nuname = va_arg(* params, size_t); + + this->livetime = time(NULL) + SESSION_LIVETIME; + this->id = sdbm((unsigned char *)uname, nuname) & this->livetime; + + this->username = malloc(nuname + 1); + this->username[nuname] = 0; + memcpy(this->username, uname, nuname); + + return 0; +} + +static +void +sessionDtor(void * _this) +{ + Session this = _this; + + FREE(this->username); +} + +INIT_IFACE(Class, sessionCtor, sessionDtor, NULL); +CREATE_CLASS(Session, NULL, IFACE(Class)); + +// vim: set ts=4 sw=4: diff --git a/src/session/add.c b/src/session/add.c new file mode 100644 index 0000000..07adfa2 --- /dev/null +++ b/src/session/add.c @@ -0,0 +1,36 @@ +#include + +#include "session.h" +#include "interface/class.h" + + +static +inline +int +sessionAddComp(const void * _a, const void * _b) +{ + Session a = (Session)_a; + Session b = (Session)_b; + return (a->id < b->id)? -1 : (a->id > b->id)? 1 : 0; +} + +Session +sessionAdd(const Session * root, Session session) +{ + Session * found = tsearch(session, (void**)root, sessionAddComp); + + if (NULL == found) { + return NULL; + } + + if (*found != session) { + /** + * \todo this should not happen, so do some logging here. + */ + delete(session); + } + + return *found; +} + +// vim: set ts=4 sw=4: diff --git a/src/session/delete.c b/src/session/delete.c new file mode 100644 index 0000000..ef560ee --- /dev/null +++ b/src/session/delete.c @@ -0,0 +1,23 @@ +#include + +#include "session.h" +#include "interface/class.h" + + +static +inline +int +sessionDeleteComp(const void * _a, const void * _b) +{ + unsigned long a = *(unsigned long *)_a; + Session b = (Session)_b; + return (a < b->id)? -1 : (a > b->id)? 1 : 0; +} + +void +sessionDelete(const Session * root, const unsigned long id) +{ + tdelete(&id, (void**)root, sessionDeleteComp); +} + +// vim: set ts=4 sw=4: diff --git a/src/session/get.c b/src/session/get.c new file mode 100644 index 0000000..2b622ee --- /dev/null +++ b/src/session/get.c @@ -0,0 +1,29 @@ +#include +#include + +#include "session.h" + + +static +inline +int +sessionGetComp(const void * _a, const void * _b) +{ + unsigned long a = *(unsigned long *)_a; + Session b = (Session)_b; + return (a < b->id)? -1 : (a > b->id)? 1 : 0; +} + +Session +sessionGet(const Session * root, const unsigned long id) +{ + Session * found = tfind(&id, (void**)root, sessionGetComp); + + if (NULL == found) { + return NULL; + } + + return *found; +} + +// vim: set ts=4 sw=4: diff --git a/src/socket.c b/src/socket.c new file mode 100644 index 0000000..3603513 --- /dev/null +++ b/src/socket.c @@ -0,0 +1,79 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include "socket.h" +#include "logger.h" +#include "interface/class.h" +#include "interface/logger.h" + +static +int +socketCtor(void * _this, va_list * params) +{ + Sock this = _this; + int reUse = 1; //! \todo make this configurable + int port; + + this->log = va_arg(* params, Logger); + port = va_arg(* params, int); + + //! if port is -1 do not initialize the socket. (Used with accept) + if (-1 == port) { + return 0; + } else { + this->port = port; + } + + //! Create socket for incoming connections + if (-1 == (this->handle = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP))) { + loggerLog(this->log, LOGGER_CRIT, + "error opening socket: %s - service terminated", + strerror(errno)); + return -1; + } + + //! Make the socket REUSE a TIME_WAIT socket + setsockopt(this->handle, SOL_SOCKET, SO_REUSEADDR, &reUse, sizeof(reUse)); + + return 0; +} + +static +void +socketDtor(void * _this) +{ + Sock this = _this; + + if (STDERR_FILENO < this->handle) { + shutdown(this->handle, SHUT_RDWR); + close(this->handle); + } +} + +INIT_IFACE(Class, socketCtor, socketDtor, NULL); +CREATE_CLASS(Sock, NULL, IFACE(Class)); + +// vim: set ts=4 sw=4: diff --git a/src/socket/accept.c b/src/socket/accept.c new file mode 100644 index 0000000..e1ff313 --- /dev/null +++ b/src/socket/accept.c @@ -0,0 +1,63 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include // for errno +#include + +#include "socket.h" +#include "interface/class.h" +#include "interface/logger.h" + +Sock +socketAccept(Sock this, char (*remoteAddr)[16]) +{ + Sock sock; // Socket for client + unsigned int len; // Length of client address data structure + + // Set the size of the in-out parameter + len = sizeof(this->addr); + + /** + * \todo Uhh, this is bad. we open a new socket additionally to + * the one we get from the accept call. + * i have to change the socket constructor to be able to create + * the data structure without creation of a socket at all. + * For now i simply close the socket here.... :D + */ + sock = new(Sock, this->log, -1); + + // Wait for a client to connect + sock->handle = accept(this->handle, (struct sockaddr *) &(sock->addr), &len); + if (-1 == sock->handle) { + loggerLog(this->log, LOGGER_WARNING, + "error accepting connection: %s", strerror(errno)); + } else { + strcpy(*remoteAddr, inet_ntoa((sock->addr).sin_addr)); + + loggerLog(this->log, LOGGER_INFO, + "handling client %s\n", inet_ntoa((sock->addr).sin_addr)); + } + + return sock; +} + +// vim: set ts=4 sw=4: diff --git a/src/socket/connect.c b/src/socket/connect.c new file mode 100644 index 0000000..66aa19c --- /dev/null +++ b/src/socket/connect.c @@ -0,0 +1,55 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include // for atoi() and exit() +#include // for errno + +#include "socket.h" +#include "interface/class.h" +#include "interface/logger.h" + + +void +socketConnect(Sock this, const char * addr, char (*remoteAddr)[16]) +{ + inet_pton(AF_INET, addr, &((this->addr).sin_addr)); + (this->addr).sin_family = AF_INET; // Internet address family + (this->addr).sin_port = htons(this->port); // Local port + + if (-1 == connect( + this->handle, + (struct sockaddr*) &(this->addr), + sizeof(this->addr))) + { + loggerLog(this->log, LOGGER_CRIT, + "error connection socket: %s - service terminated", + strerror(errno)); + exit(EXIT_FAILURE); + } else { + strcpy(*remoteAddr, inet_ntoa((this->addr).sin_addr)); + + loggerLog(this->log, LOGGER_INFO, + "handling connection %s\n", inet_ntoa((this->addr).sin_addr)); + } +} + +// vim: set ts=4 sw=4: diff --git a/src/socket/listen.c b/src/socket/listen.c new file mode 100644 index 0000000..4992058 --- /dev/null +++ b/src/socket/listen.c @@ -0,0 +1,59 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include // for atoi() and exit() +#include // for errno + +#include "socket.h" +#include "interface/class.h" +#include "interface/logger.h" + + +void +socketListen(Sock this, int backlog) +{ + (this->addr).sin_family = AF_INET; // Internet address family + (this->addr).sin_addr.s_addr = htonl(INADDR_ANY); // Any incoming interface + (this->addr).sin_port = htons(this->port); // Local port + + /** + * Bind to the local address + */ + if (-1 == bind(this->handle, (struct sockaddr *) &(this->addr), sizeof(this->addr))) { + loggerLog(this->log, LOGGER_CRIT, + "error binding socket: %s - service terminated", + strerror(errno)); + exit(EXIT_FAILURE); + } + + /** + * Mark the socket so it will listen for incoming connections + */ + if (-1 == listen(this->handle, backlog)) { + loggerLog(this->log, LOGGER_CRIT, + "error binding socket: %s - service terminated", + strerror(errno)); + exit(EXIT_FAILURE); + } +} + +// vim: set ts=4 sw=4: diff --git a/src/stream.c b/src/stream.c new file mode 100644 index 0000000..49cf067 --- /dev/null +++ b/src/stream.c @@ -0,0 +1,41 @@ +#include +#include + +#include "class.h" +#include "interface/class.h" +#include "stream.h" + + +static +int +streamCtor(void * _this, va_list * params) +{ + Stream this = _this; + this->type = va_arg(* params, StreamHandleType); + + switch(this->type) { + case STREAM_FD: + (this->handle).fd = va_arg(* params, int); + break; + + case STREAM_SSL: + (this->handle).ssl = va_arg(* params, SSL*); + break; + + default: + return -1; + } + + return 0; +} + +static +void +streamDtor(void * _this) +{ +} + +INIT_IFACE(Class, streamCtor, streamDtor, NULL); +CREATE_CLASS(Stream, NULL, IFACE(Class)); + +// vim: set ts=4 sw=4: diff --git a/src/stream/read.c b/src/stream/read.c new file mode 100644 index 0000000..b7bb058 --- /dev/null +++ b/src/stream/read.c @@ -0,0 +1,27 @@ +#include +#include + +#include "stream.h" + +ssize_t +streamRead(Stream this, void * buf, size_t count) +{ + ssize_t done; + + switch(this->type) { + case STREAM_FD: + done = read((this->handle).fd, buf, count); + break; + + case STREAM_SSL: + done = SSL_read((this->handle).ssl, buf, count); + break; + + default: + break; + } + + return done; +} + +// vim: set ts=4 sw=4: diff --git a/src/stream/write.c b/src/stream/write.c new file mode 100644 index 0000000..475e9e9 --- /dev/null +++ b/src/stream/write.c @@ -0,0 +1,27 @@ +#include +#include + +#include "stream.h" + +ssize_t +streamWrite(Stream this, void * buf, size_t count) +{ + ssize_t done; + + switch(this->type) { + case STREAM_FD: + done = write((this->handle).fd, buf, count); + break; + + case STREAM_SSL: + done = SSL_write((this->handle).ssl, buf, count); + break; + + default: + break; + } + + return done; +} + +// vim: set ts=4 sw=4: diff --git a/src/taskrambler.c b/src/taskrambler.c new file mode 100644 index 0000000..5125956 --- /dev/null +++ b/src/taskrambler.c @@ -0,0 +1,196 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "server.h" +#include "logger.h" +#include "http/worker.h" + +#include "interface/class.h" +#include "interface/logger.h" + +#include "utils/signalHandling.h" + +#define DEFAULT_SECS 10 +//#define DEFAULT_USECS (1000000 / HZ * 2) +//#define DEFAULT_SECS 1 +#define DEFAULT_USECS 0 + +void nullhandler() {} + +void daemonize(void); + +int +main() +{ + pid_t pid; + long psize = sysconf(_SC_PAGESIZE); + int status; + int shm; + struct randval * value; + + struct rlimit limit = {RLIM_INFINITY, RLIM_INFINITY}; + setrlimit(RLIMIT_CPU, &limit); + + getrlimit(RLIMIT_NOFILE, &limit); + limit.rlim_cur = limit.rlim_max; + setrlimit(RLIMIT_NOFILE, &limit); + + init_signals(); + + shm = shm_open("/fooshm", O_RDWR|O_CREAT, S_IRWXU); + ftruncate(shm, psize); + + switch((pid = fork())) { + case -1: + break; + + case 0: + { + sigset_t block_these, pause_mask; + struct sigaction s; + struct itimerval interval; + + value = mmap (0, sizeof(struct randval), PROT_READ|PROT_WRITE, + MAP_SHARED, shm, 0); + value->timestamp = 0; + value->value = 0; + + close(shm); + + // Block SIGALRM + sigemptyset(&block_these); + sigaddset(&block_these, SIGALRM); + sigprocmask(SIG_BLOCK, &block_these, &pause_mask); + + // Set up handler for SIGALRM + sigemptyset(&s.sa_mask); + sigaddset(&s.sa_mask, SIGINT); + s.sa_flags = 0; + s.sa_handler = nullhandler; + if (sigaction(SIGALRM, &s, NULL) < 0) { + perror("sigaction SIGALRM"); + exit (1); + } + + interval.it_value.tv_sec = DEFAULT_SECS; + interval.it_value.tv_usec = DEFAULT_USECS; + interval.it_interval.tv_sec = DEFAULT_SECS; + interval.it_interval.tv_usec = DEFAULT_USECS; + + setitimer(ITIMER_REAL, &interval, NULL); + + // child + while(!doShutdown) { + value->timestamp = time(NULL); + value->value = rand() % 100; + sigsuspend(&pause_mask); + } + + _exit(EXIT_SUCCESS); + } + + default: + { + Logger logger; + HttpWorker worker; + Server server; + + value = mmap (0, sizeof(int), PROT_READ|PROT_WRITE, + MAP_SHARED, shm, 0); + + shm_unlink("/fooshm"); + close(shm); + + logger = new(LoggerStderr, LOGGER_DEBUG); + worker = new(HttpWorker, "testserver", value); + server = new(Server, logger, worker, 11212, SOMAXCONN); + + //daemonize(); + if (NULL != server) { + serverRun(server); + } + else { + doShutdown = 1; + kill(pid, SIGINT); + } + + do { + pid_t w; + + w = waitpid(pid, &status, 0); + + while (w == -1) { + switch(errno) { + case EINTR: w = waitpid(pid, &status, 0); + break; + case ECHILD: perror("no child"); + // DROP THROUGH + default: w = 0; + } + } + + if (0 < w) { + if (WIFEXITED(status)) { + loggerLog(logger, LOGGER_INFO, + "child exited, status=%d\n", + WEXITSTATUS(status)); + } else if (WIFSIGNALED(status)) { + loggerLog(logger, LOGGER_INFO, + "killed by signal %d\n", + WTERMSIG(status)); + } else if (WIFSTOPPED(status)) { + loggerLog(logger, LOGGER_INFO, + "stopped by signal %d\n", + WSTOPSIG(status)); + } else if (WIFCONTINUED(status)) { + loggerLog(logger, LOGGER_INFO, "continued\n"); + } + } + } while (!WIFEXITED(status) && !WIFSIGNALED(status)); + + if (NULL != server) delete(server); + if (NULL != worker) delete(worker); + if (NULL != logger) delete(logger); + } + + break; + } + + return 0; +} + +// vim: set ts=4 sw=4: diff --git a/src/utils/daemonize.c b/src/utils/daemonize.c new file mode 100644 index 0000000..bdd61f5 --- /dev/null +++ b/src/utils/daemonize.c @@ -0,0 +1,47 @@ +/** + * \file + * Disconnect from parent process and let all standard file handles + * point to /dev/null. + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include // for printf() and fprintf() +#include // for getopt +#include + + +void daemonize(void) { + pid_t pid; + + if (0 > ((pid = fork()))) { + perror("deamoinze[fork]"); + exit(EXIT_FAILURE); + } else if (0 != pid) { + exit(EXIT_SUCCESS); + } + + // make new child session leader + setsid(); + + // connect all standard streams to /dev/null + stderr = freopen("/dev/null", "w", stderr); + stdin = freopen("/dev/null", "r", stdin); + stdout = freopen("/dev/null", "w", stdout); +} diff --git a/src/utils/hash.c b/src/utils/hash.c new file mode 100644 index 0000000..dc6dcea --- /dev/null +++ b/src/utils/hash.c @@ -0,0 +1,30 @@ +#include +#include + +#include "utils/hash.h" + +/** + * SDBM hashing algorithm: + * + * this algorithm was created for sdbm (a public-domain reimplementation of + * ndbm) database library. it was found to do well in scrambling bits, + * causing better distribution of the keys and fewer splits. it also happens + * to be a good general hashing function with good distribution. the actual + * function is hash(i) = hash(i - 1) * 65599 + str[i]; what is included below + * is the faster version used in gawk. [there is even a faster, duff-device + * version] the magic constant 65599 was picked out of thin air while + * experimenting with different constants, and turns out to be a prime. this + * is one of the algorithms used in berkeley db (see sleepycat) and elsewhere. + */ +unsigned long +sdbm(const unsigned char * str, size_t len) +{ + unsigned long hash = 0; + + for(; 0 < len; str++, len--) + hash = tolower(*str) + (hash << 6) + (hash << 16) - hash; + + return hash; +} + +// vim: set ts=4 sw=4: diff --git a/src/utils/http.c b/src/utils/http.c new file mode 100644 index 0000000..61e833b --- /dev/null +++ b/src/utils/http.c @@ -0,0 +1,51 @@ +#include +#include +#include + +#include "http/message.h" +#include "http/request.h" +#include "http/response.h" + +#include "interface/class.h" + +#include "commons.h" + +char +isHttpVersion(const char * str, size_t len) +{ + if (NULL == str) + return FALSE; + + if (8 > len) + return FALSE; + + if (0 != memcmp("HTTP/", str, sizeof("HTTP/")-1)) + return FALSE; + + return TRUE; +} + +HttpMessage +httpGetMessage( + const char * part1, size_t len1, + const char * part2, size_t len2, + const char * part3, size_t len3) +{ + if (isHttpVersion(part1, len1)) { + return new(HttpResponse, + part1, len1, + strtoul(part2, NULL, 10), + part3, len3); + } + + if (isHttpVersion(part3, len3)) { + return new(HttpRequest, + part1, len1, + part2, len2, + part3, len3); + } + + return NULL; +} + +// vim: set ts=4 sw=4: diff --git a/src/utils/memory.c b/src/utils/memory.c new file mode 100644 index 0000000..853b613 --- /dev/null +++ b/src/utils/memory.c @@ -0,0 +1,14 @@ +#include + +#include "utils/memory.h" + +void +ffree(void ** data) +{ + if (NULL != *data) { + free(*data); + *data = NULL; + } +} + +// vim: set ts=4 sw=4: diff --git a/src/utils/signalHandling.c b/src/utils/signalHandling.c new file mode 100644 index 0000000..4771fa0 --- /dev/null +++ b/src/utils/signalHandling.c @@ -0,0 +1,47 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include // for signal() and signal names + +volatile int doShutdown; + +void terminate(int signum) +{ + signal(signum, SIG_IGN); + /* + * \todo do logging here + */ + doShutdown = 1; +} + +void init_signals(void) +{ + signal(SIGTERM, terminate); + signal(SIGHUP, SIG_IGN); + signal(SIGINT, terminate); + signal(SIGQUIT, terminate); + signal(SIGABRT, terminate); + signal(SIGALRM, SIG_IGN); + signal(SIGURG, SIG_IGN); + + signal(SIGPIPE, SIG_IGN); +} diff --git a/src/webgameserver.c b/src/webgameserver.c new file mode 100644 index 0000000..5125956 --- /dev/null +++ b/src/webgameserver.c @@ -0,0 +1,196 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "server.h" +#include "logger.h" +#include "http/worker.h" + +#include "interface/class.h" +#include "interface/logger.h" + +#include "utils/signalHandling.h" + +#define DEFAULT_SECS 10 +//#define DEFAULT_USECS (1000000 / HZ * 2) +//#define DEFAULT_SECS 1 +#define DEFAULT_USECS 0 + +void nullhandler() {} + +void daemonize(void); + +int +main() +{ + pid_t pid; + long psize = sysconf(_SC_PAGESIZE); + int status; + int shm; + struct randval * value; + + struct rlimit limit = {RLIM_INFINITY, RLIM_INFINITY}; + setrlimit(RLIMIT_CPU, &limit); + + getrlimit(RLIMIT_NOFILE, &limit); + limit.rlim_cur = limit.rlim_max; + setrlimit(RLIMIT_NOFILE, &limit); + + init_signals(); + + shm = shm_open("/fooshm", O_RDWR|O_CREAT, S_IRWXU); + ftruncate(shm, psize); + + switch((pid = fork())) { + case -1: + break; + + case 0: + { + sigset_t block_these, pause_mask; + struct sigaction s; + struct itimerval interval; + + value = mmap (0, sizeof(struct randval), PROT_READ|PROT_WRITE, + MAP_SHARED, shm, 0); + value->timestamp = 0; + value->value = 0; + + close(shm); + + // Block SIGALRM + sigemptyset(&block_these); + sigaddset(&block_these, SIGALRM); + sigprocmask(SIG_BLOCK, &block_these, &pause_mask); + + // Set up handler for SIGALRM + sigemptyset(&s.sa_mask); + sigaddset(&s.sa_mask, SIGINT); + s.sa_flags = 0; + s.sa_handler = nullhandler; + if (sigaction(SIGALRM, &s, NULL) < 0) { + perror("sigaction SIGALRM"); + exit (1); + } + + interval.it_value.tv_sec = DEFAULT_SECS; + interval.it_value.tv_usec = DEFAULT_USECS; + interval.it_interval.tv_sec = DEFAULT_SECS; + interval.it_interval.tv_usec = DEFAULT_USECS; + + setitimer(ITIMER_REAL, &interval, NULL); + + // child + while(!doShutdown) { + value->timestamp = time(NULL); + value->value = rand() % 100; + sigsuspend(&pause_mask); + } + + _exit(EXIT_SUCCESS); + } + + default: + { + Logger logger; + HttpWorker worker; + Server server; + + value = mmap (0, sizeof(int), PROT_READ|PROT_WRITE, + MAP_SHARED, shm, 0); + + shm_unlink("/fooshm"); + close(shm); + + logger = new(LoggerStderr, LOGGER_DEBUG); + worker = new(HttpWorker, "testserver", value); + server = new(Server, logger, worker, 11212, SOMAXCONN); + + //daemonize(); + if (NULL != server) { + serverRun(server); + } + else { + doShutdown = 1; + kill(pid, SIGINT); + } + + do { + pid_t w; + + w = waitpid(pid, &status, 0); + + while (w == -1) { + switch(errno) { + case EINTR: w = waitpid(pid, &status, 0); + break; + case ECHILD: perror("no child"); + // DROP THROUGH + default: w = 0; + } + } + + if (0 < w) { + if (WIFEXITED(status)) { + loggerLog(logger, LOGGER_INFO, + "child exited, status=%d\n", + WEXITSTATUS(status)); + } else if (WIFSIGNALED(status)) { + loggerLog(logger, LOGGER_INFO, + "killed by signal %d\n", + WTERMSIG(status)); + } else if (WIFSTOPPED(status)) { + loggerLog(logger, LOGGER_INFO, + "stopped by signal %d\n", + WSTOPSIG(status)); + } else if (WIFCONTINUED(status)) { + loggerLog(logger, LOGGER_INFO, "continued\n"); + } + } + } while (!WIFEXITED(status) && !WIFSIGNALED(status)); + + if (NULL != server) delete(server); + if (NULL != worker) delete(worker); + if (NULL != logger) delete(logger); + } + + break; + } + + return 0; +} + +// vim: set ts=4 sw=4: diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..d3c0391 --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,29 @@ +ACLOCAL_AMFLAGS = -I m4 +AUTOMAKE_OPTIONS = subdir-objects + +TESTS_ENVIRONMENT = valgrind --error-exitcode=123 --leak-check=full --quiet +TESTS = cclassTest loggerTest socketTest serverTest +check_PROGRAMS = cclassTest loggerTest socketTest serverTest + +COMMON = runtest.c ../src/interface/class.c +CCLASS = $(COMMON) mock/class.c +LOGGER = $(COMMON) ../src/logger.c ../src/interface/logger.c \ + ../src/logger/stderr.c ../src/logger/syslog.c +SOCKET = $(LOGGER) ../src/socket.c ../src/socket/listen.c \ + ../src/socket/accept.c ../src/socket/connect.c +SERVER = $(SOCKET) ../src/server.c ../src/server/run.c \ + ../src/server/close_conn.c ../src/utils/signalHandling.c + +cclassTest_SOURCES = $(CCLASS) cclassTest.c +cclassTest_CFLAGS = -Wall -ggdb -O0 -finline-functions -I ../include -I .. -I . + +loggerTest_SOURCES = $(LOGGER) loggerTest.c +loggerTest_CFLAGS = -Wall -ggdb -O0 -I ../include -I .. -I . + +socketTest_SOURCES = $(SOCKET) socketTest.c +socketTest_CFLAGS = -Wall -ggdb -O0 -I ../include -I .. -I . + +serverTest_SOURCES = $(SERVER) serverTest.c +serverTest_CFLAGS = -Wall -ggdb -O0 -I ../include -I .. -I . + +EXTRA_DIST = runtest.h mock/class.h diff --git a/tests/cclassTest.c b/tests/cclassTest.c new file mode 100644 index 0000000..45f92a0 --- /dev/null +++ b/tests/cclassTest.c @@ -0,0 +1,131 @@ +/** + * \file + * cclassTest.c: tests for my oop C stuff + * Copyright (C) 2011 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#include +#include +#include + +#include "runtest.h" +#include "mock/class.h" +#include "cclass.h" + +const char testname[] = "cclassTest"; + +MOCK_CLASS mock = NULL; + +static +int +__setUp() +{ + mock = NULL; + _reset(); + + return TEST_OK; +} +int (* const setUp)() = __setUp; + +static +int +__tearDown() +{ + if (NULL != mock) { + ASSERT_OBJECT(mock); + delete(&mock); + } + + return TEST_OK; +} +int (* const tearDown)() = __tearDown; + +static +int +testNew(void) +{ + mock = new(MOCK_CLASS, 123); + + ASSERT_OBJECT_NOT_NULL(mock); + ASSERT_EQUAL(1, _called); + ASSERT_EQUAL(123, mock_class_getValue(mock)); + + return TEST_OK; +} + +static +int +testNewFromJson(void) +{ + struct json_object * json = json_object_new_int(123); + + mock = newFromJson(MOCK_CLASS, json); + json_object_put(json); + + ASSERT_OBJECT_NOT_NULL(mock); + ASSERT_EQUAL(1, _called); + ASSERT_EQUAL(123, mock_class_getValue(mock)); + + return TEST_OK; +} + +static +int +testDelete(void) +{ + mock = new(MOCK_CLASS, 123); + + ASSERT_NOT_NULL(mock); + + _reset(); + delete(&mock); + + ASSERT_NULL(mock); + ASSERT_EQUAL(1, _called); + + return TEST_OK; +} + +static +int +testToJson(void) +{ + struct json_object * json = NULL; + mock = new(MOCK_CLASS, 123); + int value; + + _reset(); + toJson(mock, &json); + + ASSERT_NOT_NULL(json); + + value = json_object_get_int(json); + json_object_put(json); + + ASSERT_EQUAL(123, value); + ASSERT_EQUAL(1, _called); + + return TEST_OK; +} + +const testfunc tests[] = { + testNew, + testNewFromJson, + testDelete, + testToJson +}; +const size_t count = FUNCS_COUNT(tests); + +// vim: set et ts=4 sw=4: diff --git a/tests/loggerTest.c b/tests/loggerTest.c new file mode 100644 index 0000000..2727a47 --- /dev/null +++ b/tests/loggerTest.c @@ -0,0 +1,94 @@ +/** + * \file + * loggerTest.c: tests for my logger class + * Copyright (C) 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include "runtest.h" +#include "cclass.h" +#include "logger.h" + + +int level = -1; +char * msg = NULL; + +static void +logfnct_mock(int _level, const char * _msg) +{ + level = _level; + msg = malloc(strlen(_msg) + 1); + strcpy(msg, _msg); +} + +const char testname[] = "loggerTest"; +LOGGER logger = NULL; + + +static +int +__setUp() +{ + logger = new(LOGGER, NULL); + + ASSERT_INSTANCE_OF(LOGGER, logger); + + logger_add(logger, logfnct_mock); + + return TEST_OK; +} +int (* const setUp)() = __setUp; + +static +int +__tearDown() +{ + level = -1; + + if (NULL != msg) { + free(msg); + msg = NULL; + } + + if (NULL != logger) { + ASSERT_OBJECT(logger); + delete(&logger); + } + + return TEST_OK; +} +int (* const tearDown)() = __tearDown; + +static +int +testLogger() +{ + logger_log(logger, LOGGER_ERR, "foo %d %s", 123, "bar"); + + ASSERT_EQUAL(LOGGER_ERR, level); + ASSERT_STRING_EQUAL("foo 123 bar", msg); + + return TEST_OK; +} + +const testfunc tests[] = { + testLogger +}; +const size_t count = FUNCS_COUNT(tests); + +// vim: set et ts=4 sw=4: diff --git a/tests/mock/class.c b/tests/mock/class.c new file mode 100644 index 0000000..8a9da0a --- /dev/null +++ b/tests/mock/class.c @@ -0,0 +1,88 @@ +/** + * \file + * mock/class.c: a mock to test my oop stuff + * Copyright (C) 2011 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include "cclass.h" +#include "class.h" + +char _called; + +INIT_CLASS(MOCK_CLASS); + +__construct(MOCK_CLASS) +{ + _called = 1; + this->value = va_arg(* params, int); +} + +__jsonConst(MOCK_CLASS) +{ + _called = 1; + assert(json_type_int == json_object_get_type(json)); + + this->value = json_object_get_int(json); +} + +__clear(MOCK_CLASS) {} + +__destruct(MOCK_CLASS) +{ + _called = 1; +} + +__toJson(MOCK_CLASS) +{ + *json = json_object_new_int(this->value); + _called = 1; +} + +/** + * ~~~ method implementations ~~~~~~~~ + */ + +int +mock_class_getValue(MOCK_CLASS this) +{ + return this->value; +} + +void +mock_class_setValue(MOCK_CLASS this, int value) +{ + this->value = value; +} + +/** + * ~~~ helper for mock assertions ~~~~~~~~ + */ +void * +getConstruct() +{ + return __construct; +} + +void * +getJsonConst() +{ + return __jsonConst; +} + +// vim: set et ts=4 sw=4: diff --git a/tests/mock/class.h b/tests/mock/class.h new file mode 100644 index 0000000..e439bb1 --- /dev/null +++ b/tests/mock/class.h @@ -0,0 +1,49 @@ +/** + * \file + * mock/class.h: definitions for my mock to test my oop stuff + * Copyright (C) 2011 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#ifndef __MOCK_CLASS_H__ +#define __MOCK_CLASS_H__ + +#include "cclass.h" + +extern char _called; + +#ifndef _RESET +#define _RESET +void +inline +_reset() +{ + _called = 0; +} +#endif//_RESET + + +CLASS(MOCK_CLASS) { + int value; +}; + +/** + * ~~~ method declarations ~~~~~~~~ + */ + +int mock_class_getValue(MOCK_CLASS this); +void mock_class_setValue(MOCK_CLASS this, int value); + +#endif//__MOCK_CLASS_H__ +// vim: set et ts=4 sw=4: diff --git a/tests/runtest.c b/tests/runtest.c new file mode 100644 index 0000000..b363cc8 --- /dev/null +++ b/tests/runtest.c @@ -0,0 +1,121 @@ +/** + * \file + * runtest.c: the main runner for my tests + * Copyright (C) 2011 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#include +#include +#include +#include + +#include "runtest.h" +#include "cclass.h" + + +#define TEST_OK_CHAR '.' +#define TEST_FAILED_CHAR 'F' +#define TEST_ERROR_CHAR 'E' + + +const char results[3] = { + TEST_OK_CHAR, + TEST_FAILED_CHAR, + TEST_ERROR_CHAR +}; + +int +isObjectNull(void * _object) +{ + const CCLASS * class = _object - sizeof(CCLASS); + + if (! isObject(_object)) { + return 0; + } + + return isMemNull(_object, (*class)->size); +} + +int +isMemNull(void * _mem, size_t size) +{ + size_t index; + + if (NULL == _mem) { + return 0; + } + + for(index=0; index. + */ +#ifndef __RUNTEST_h__ +#define __RUNTEST_h__ + +#include +#include + + +enum RESULT_TYPES { + TEST_OK=0, + TEST_FAILED, + TEST_ERROR +}; + +#define ASSERT_NULL(value) \ + if (NULL != (value)) { \ + printf("%s[%d]: Assertion failed that %s is NULL\n", \ + __FILE__, __LINE__, #value); \ + return TEST_FAILED; } + +#define ASSERT_NOT_NULL(value) \ + if (NULL == (value)) { \ + printf("%s[%d]: Assertion failed that %s is NOT NULL\n", \ + __FILE__, __LINE__, #value); \ + return TEST_FAILED; } + +#define ASSERT_EQUAL(val1,val2) \ + if ((val1) != (val2)) { \ + printf("%s[%d]: Assertion failed that %s EQUALS %s\n", \ + __FILE__, __LINE__, #val1, #val2); \ + return TEST_FAILED; } + +#define ASSERT_NOT_EQUAL(val1,val2) \ + if ((val1) == (val2)) { \ + printf("%s[%d]: Assertion failed that %s NOT EQUALS %s\n", \ + __FILE__, __LINE__, #val1, #val2); \ + return TEST_FAILED; } + +#define ASSERT_MEM_EQUAL(val1,val2,size) \ + if(0 != memcmp((val1), (val2), (size))) { \ + printf("%s[%d]: Assertion failed that memory at %s EQUALS %s for %lu bytes\n", \ + __FILE__, __LINE__, #val1, #val2, size); \ + return TEST_FAILED; } + +#define ASSERT_MEM_NOT_EQUAL(val1,val2,size) \ + if(0 == memcmp((val1), (val2), (size))) { \ + printf("%s[%d]: Assertion failed that memory at %s NOT EQUALS %s for %lu bytes\n", \ + __FILE__, __LINE__, #val1, #val2, size); \ + return TEST_FAILED; } + +#define ASSERT_MEM_NULL(val, size) \ + if (! isMemNull((val), (size))) { \ + printf("%s[%d]: Assertion failed that memory at %s is NULL for %lu bytes\n", \ + __FILE__, __LINE__, #val, size); \ + return TEST_FAILED; } + +#define ASSERT_MEM_NOT_NULL(val, size) \ + if (isMemNull((val), (size))) { \ + printf("%s[%d]: Assertion failed that memory at %s is NOT NULL for %lu bytes\n", \ + __FILE__, __LINE__, #val, size); \ + return TEST_FAILED; } + +#define ASSERT_STRING_EQUAL(val1, val2) \ + if(0 != strcmp((val1), (val2))) { \ + printf("%s[%d]: Assertion failed that string %s EQUALS %s\n", \ + __FILE__, __LINE__, val1, val2); \ + return TEST_FAILED; } + +#define ASSERT_STRING_NOT_EQUAL(val1, val2) \ + if(0 == strcmp((val1), (val2))) { \ + printf("%s[%d]: Assertion failed that string %s NOT EQUALS %s\n", \ + __FILE__, __LINE__, val1, val2); \ + return TEST_FAILED; } + +#define ASSERT_OBJECT(val) \ + if (! isObject((val))) { \ + printf("%s[%d]: Assertion failed that %s IS an object\n", \ + __FILE__, __LINE__, #val); \ + return TEST_FAILED; } + +#define ASSERT_OBJECT_NULL(val) \ + if (! isObjectNull((val))) { \ + printf("%s[%d]: Assertion failed that %s IS an UNINITIALIZED object\n", \ + __FILE__, __LINE__, #val); \ + return TEST_FAILED; } + +#define ASSERT_OBJECT_NOT_NULL(val) \ + if (isObjectNull((val))) { \ + printf("%s[%d]: Assertion failed that %s IS an INITIALIZED object\n", \ + __FILE__, __LINE__, #val); \ + return TEST_FAILED; } + +#define ASSERT_INSTANCE_OF(class, val) \ + if (! instanceOf(class, val)) { \ + printf("%s[%d]: Assertion failed that %s is instance of %s\n", \ + __FILE__, __LINE__, #val, #class); \ + return TEST_FAILED; } + + +typedef int (* const testfunc)(void); +#define FUNCS_COUNT(array) (sizeof((array)) / sizeof(testfunc)) + +extern const char testname[]; +extern testfunc tests[]; +extern const size_t count; + +extern int (* const setUp)(); +extern int (* const tearDown)(); + +int isMemNull(void * _mem, size_t size); +int isObjectNull(void * _object); + +#endif//__RUNTEST_h__ +// vim: set et ts=4 sw=4: diff --git a/tests/serverTest.c b/tests/serverTest.c new file mode 100644 index 0000000..3eae940 --- /dev/null +++ b/tests/serverTest.c @@ -0,0 +1,122 @@ +#include +#include +#include +#include +#include + +#include "runtest.h" +#include "logger.h" +#include "cclass.h" +#include "server.h" +#include "signalHandling.h" + + +#define TEST_PORT 11212 +#define TEST_DATA "test" + + +int level = -1; +char msg[1024]; +char buffer[1025]; + +static void +read_hook(const char * _buffer, size_t size) +{ + memset(buffer, 0, 1025); + + if (NULL != _buffer) { + strncpy(buffer, _buffer, 1024>size? size : 1024); + } + + doShutdown = 1; +} + +static void +logfnct_mock(int _level, const char * _msg) +{ + level = _level; + strncpy(msg, _msg, 1023); +} + +const char testname[] = "serverTest"; +LOGGER logger = NULL; +SERVER server = NULL; + +static +int +__setUp() +{ + logger = new(LOGGER, NULL); + logger_add(logger, logfnct_mock); + + server = new(SERVER, logger, TEST_PORT, SOMAXCONN); + + ASSERT_INSTANCE_OF(SERVER, server); + ASSERT_INSTANCE_OF(LOGGER, server->logger); + ASSERT_INSTANCE_OF(SOCK, server->sock); + ASSERT_EQUAL(TEST_PORT, server->sock->port); + + server->read_hook = read_hook; + + return TEST_OK; +} +int (* const setUp)() = __setUp; + +static +int +__tearDown() +{ + level = -1; + + if (NULL != server) { + ASSERT_OBJECT(server); + delete(&server); + } + + if (NULL != logger) { + ASSERT_OBJECT(logger); + delete(&logger); + } + + return TEST_OK; +} +int (* const tearDown)() = __tearDown; + +static +int +testDummy() +{ + SOCK con; + pid_t pid; + + pid = fork(); + + switch(pid) { + case 0: + con = new(SOCK, logger, TEST_PORT); + sleep(1); + sock_connect(con, "127.0.0.1"); + write(con->handle, TEST_DATA, strlen(TEST_DATA)+1); + delete(&con); + __tearDown(); + exit(EXIT_SUCCESS); + + case -1: + return TEST_FAILED; + + default: + init_signals(); + server_run(server); + } + + ASSERT_STRING_EQUAL(TEST_DATA, buffer); + + return TEST_OK; +} + +const testfunc tests[] = { + testDummy +}; +const size_t count = FUNCS_COUNT(tests); + +// vim: set ts=4 sw=4: diff --git a/tests/socketTest.c b/tests/socketTest.c new file mode 100644 index 0000000..64447da --- /dev/null +++ b/tests/socketTest.c @@ -0,0 +1,123 @@ +#include +#include +#include + +#include "runtest.h" +#include "logger.h" +#include "cclass.h" +#include "socket.h" + + +#define TEST_PORT 11212 + + +int level = -1; +char * msg = NULL; + +static void +logfnct_mock(int _level, const char * _msg) +{ + level = _level; + msg = malloc(strlen(_msg) + 1); + strcpy(msg, _msg); +} + +const char testname[] = "socketTest"; +LOGGER logger = NULL; +SOCK sock = NULL; + +static +int +__setUp() +{ + logger = new(LOGGER, NULL); + logger_add(logger, logfnct_mock); + + sock = new(SOCK, logger, TEST_PORT); + + ASSERT_INSTANCE_OF(SOCK, sock); + ASSERT_INSTANCE_OF(LOGGER, sock->logger); + ASSERT_EQUAL(TEST_PORT, sock->port); + ASSERT_NOT_EQUAL(0, sock->handle); + + return TEST_OK; +} +int (* const setUp)() = __setUp; + +static +int +__tearDown() +{ + level = -1; + + if (NULL != msg) { + free(msg); + msg = NULL; + } + + if (NULL != logger) { + ASSERT_OBJECT(logger); + delete(&logger); + } + + if (NULL != sock) { + ASSERT_OBJECT(sock); + delete(&sock); + } + + return TEST_OK; +} +int (* const tearDown)() = __tearDown; + +static +int +testListen() +{ + sock_listen(sock, 10); + + return TEST_OK; +} + +static +int +testAccept() +{ + SOCK acc, con; + char addr[16]; + pid_t pid; + + sock_listen(sock, 10); + + pid = fork(); + + switch(pid) { + case 0: + con = new(SOCK, logger, TEST_PORT); + sleep(1); + sock_connect(con, "127.0.0.1"); + delete(&con); + __tearDown(); + exit(EXIT_SUCCESS); + + case -1: + return TEST_FAILED; + + default: + acc = sock_accept(sock, addr); + } + + if (NULL != acc) { + ASSERT_OBJECT(acc); + delete(&acc); + } + + return TEST_OK; +} + +const testfunc tests[] = { + testListen, + testAccept +}; +const size_t count = FUNCS_COUNT(tests); + +// vim: set ts=4 sw=4: diff --git a/tests/tst-tsearch.c b/tests/tst-tsearch.c new file mode 100644 index 0000000..722b6d7 --- /dev/null +++ b/tests/tst-tsearch.c @@ -0,0 +1,333 @@ +/* Test program for tsearch et al. + Copyright (C) 1997, 2000, 2001 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + +#ifndef _GNU_SOURCE +# define _GNU_SOURCE 1 +#endif + +#include +#include +#include +#include + +#define SEED 0 +#define BALANCED 1 +#define PASSES 100 + +#if BALANCED +#include +#define SIZE 1000 +#else +#define SIZE 100 +#endif + +enum order +{ + ascending, + descending, + randomorder +}; + +enum action +{ + build, + build_and_del, + delete, + find +}; + +/* Set to 1 if a test is flunked. */ +static int error = 0; + +/* The keys we add to the tree. */ +static int x[SIZE]; + +/* Pointers into the key array, possibly permutated, to define an order + for insertion/removal. */ +static int y[SIZE]; + +/* Flags set for each element visited during a tree walk. */ +static int z[SIZE]; + +/* Depths for all the elements, to check that the depth is constant for + all three visits. */ +static int depths[SIZE]; + +/* Maximum depth during a tree walk. */ +static int max_depth; + +/* Compare two keys. */ +static int +cmp_fn (const void *a, const void *b) +{ + return *(const int *) a - *(const int *) b; +} + +/* Permute an array of integers. */ +static void +memfry (int *string) +{ + int i; + + for (i = 0; i < SIZE; ++i) + { + int32_t j; + int c; + + j = random () % SIZE; + + c = string[i]; + string[i] = string[j]; + string[j] = c; + } +} + +static void +walk_action (const void *nodep, const VISIT which, const int depth) +{ + int key = **(int **) nodep; + + if (depth > max_depth) + max_depth = depth; + if (which == leaf || which == preorder) + { + ++z[key]; + depths[key] = depth; + } + else + { + if (depths[key] != depth) + { + fputs ("Depth for one element is not constant during tree walk.\n", + stdout); + } + } +} + +static void +walk_tree (void *root, int expected_count) +{ + int i; + + memset (z, 0, sizeof z); + max_depth = 0; + + twalk (root, walk_action); + for (i = 0; i < expected_count; ++i) + if (z[i] != 1) + { + fputs ("Node was not visited.\n", stdout); + error = 1; + } + +#if BALANCED + if (max_depth > log (expected_count) * 2 + 2) +#else + if (max_depth > expected_count) +#endif + { + fputs ("Depth too large during tree walk.\n", stdout); + error = 1; + } +} + +/* Perform an operation on a tree. */ +static void +mangle_tree (enum order how, enum action what, void **root, int lag) +{ + int i; + + if (how == randomorder) + { + for (i = 0; i < SIZE; ++i) + y[i] = i; + memfry (y); + } + + for (i = 0; i < SIZE + lag; ++i) + { + void *elem; + int j, k; + + switch (how) + { + case randomorder: + if (i >= lag) + k = y[i - lag]; + else + /* Ensure that the array index is within bounds. */ + k = y[(SIZE - i - 1 + lag) % SIZE]; + j = y[i % SIZE]; + break; + + case ascending: + k = i - lag; + j = i; + break; + + case descending: + k = SIZE - i - 1 + lag; + j = SIZE - i - 1; + break; + + default: + /* This never should happen, but gcc isn't smart enough to + recognize it. */ + abort (); + } + + switch (what) + { + case build_and_del: + case build: + if (i < SIZE) + { + if (tfind (x + j, (void *const *) root, cmp_fn) != NULL) + { + fputs ("Found element which is not in tree yet.\n", stdout); + error = 1; + } + elem = tsearch (x + j, root, cmp_fn); + if (elem == 0 + || tfind (x + j, (void *const *) root, cmp_fn) == NULL) + { + fputs ("Couldn't find element after it was added.\n", + stdout); + error = 1; + } + } + + if (what == build || i < lag) + break; + + j = k; + /* fall through */ + + case delete: + elem = tfind (x + j, (void *const *) root, cmp_fn); + if (elem == NULL || tdelete (x + j, root, cmp_fn) == NULL) + { + fputs ("Error deleting element.\n", stdout); + error = 1; + } + break; + + case find: + if (tfind (x + j, (void *const *) root, cmp_fn) == NULL) + { + fputs ("Couldn't find element after it was added.\n", stdout); + error = 1; + } + break; + + } + } +} + + +int +main (int argc, char **argv) +{ + int total_error = 0; + static char state[8] = { 1, 2, 3, 4, 5, 6, 7, 8 }; + void *root = NULL; + int i, j; + + initstate (SEED, state, 8); + + for (i = 0; i < SIZE; ++i) + x[i] = i; + + /* Do this loop several times to get different permutations for the + random case. */ + fputs ("Series I\n", stdout); + for (i = 0; i < PASSES; ++i) + { + fprintf (stdout, "Pass %d... ", i + 1); + fflush (stdout); + error = 0; + + mangle_tree (ascending, build, &root, 0); + mangle_tree (ascending, find, &root, 0); + mangle_tree (descending, find, &root, 0); + mangle_tree (randomorder, find, &root, 0); + walk_tree (root, SIZE); + mangle_tree (ascending, delete, &root, 0); + + mangle_tree (ascending, build, &root, 0); + walk_tree (root, SIZE); + mangle_tree (descending, delete, &root, 0); + + mangle_tree (ascending, build, &root, 0); + walk_tree (root, SIZE); + mangle_tree (randomorder, delete, &root, 0); + + mangle_tree (descending, build, &root, 0); + mangle_tree (ascending, find, &root, 0); + mangle_tree (descending, find, &root, 0); + mangle_tree (randomorder, find, &root, 0); + walk_tree (root, SIZE); + mangle_tree (descending, delete, &root, 0); + + mangle_tree (descending, build, &root, 0); + walk_tree (root, SIZE); + mangle_tree (descending, delete, &root, 0); + + mangle_tree (descending, build, &root, 0); + walk_tree (root, SIZE); + mangle_tree (randomorder, delete, &root, 0); + + mangle_tree (randomorder, build, &root, 0); + mangle_tree (ascending, find, &root, 0); + mangle_tree (descending, find, &root, 0); + mangle_tree (randomorder, find, &root, 0); + walk_tree (root, SIZE); + mangle_tree (randomorder, delete, &root, 0); + + for (j = 1; j < SIZE; j *= 2) + { + mangle_tree (randomorder, build_and_del, &root, j); + } + + fputs (error ? " failed!\n" : " ok.\n", stdout); + total_error |= error; + } + + fputs ("Series II\n", stdout); + for (i = 1; i < SIZE; i *= 2) + { + fprintf (stdout, "For size %d... ", i); + fflush (stdout); + error = 0; + + mangle_tree (ascending, build_and_del, &root, i); + mangle_tree (descending, build_and_del, &root, i); + mangle_tree (ascending, build_and_del, &root, i); + mangle_tree (descending, build_and_del, &root, i); + mangle_tree (ascending, build_and_del, &root, i); + mangle_tree (descending, build_and_del, &root, i); + mangle_tree (ascending, build_and_del, &root, i); + mangle_tree (descending, build_and_del, &root, i); + + fputs (error ? " failed!\n" : " ok.\n", stdout); + total_error |= error; + } + + return total_error; +} From f6de9deec5bf7ab8f95112286a9dfce716ecb461 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Sat, 10 Mar 2012 01:06:41 +0100 Subject: [PATCH 02/22] some fixes i have done in server --- src/Makefile.am | 2 +- src/cbuf/skip_non_alpha.c | 2 +- src/http/parser/body.c | 4 +- src/http/parser/parse.c | 31 +++--- src/webgameserver.c | 196 -------------------------------------- 5 files changed, 20 insertions(+), 215 deletions(-) delete mode 100644 src/webgameserver.c diff --git a/src/Makefile.am b/src/Makefile.am index 3f687a0..7830b46 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -58,7 +58,7 @@ AM_CFLAGS = -Wall -I ../include/ bin_PROGRAMS = taskrambler -taskrambler_SOURCES = webgameserver.c \ +taskrambler_SOURCES = taskrambler.c \ $(IFACE) $(SOCKET) $(SERVER) $(LOGGER) $(MSG) $(REQ) \ $(WRITER) $(RESP) $(HEADER) $(PARSER) $(WORKER) $(CB) \ $(UTILS) $(MSGQ) $(SESSION) $(STREAM) diff --git a/src/cbuf/skip_non_alpha.c b/src/cbuf/skip_non_alpha.c index 0021d18..72ef3aa 100644 --- a/src/cbuf/skip_non_alpha.c +++ b/src/cbuf/skip_non_alpha.c @@ -27,7 +27,7 @@ void cbufSkipNonAlpha(Cbuf this) { - while(0 > this->bused && isalpha(*cbufGetRead(this))) + while(0 < this->bused && !isalpha(*cbufGetRead(this))) cbufIncRead(this, 1); } diff --git a/src/http/parser/body.c b/src/http/parser/body.c index 8557217..6901c8d 100644 --- a/src/http/parser/body.c +++ b/src/http/parser/body.c @@ -28,7 +28,7 @@ #include "http/parser.h" #include "cbuf.h" -#define MAX(a,b) (((a) > (b))? (a) : (b)) +#define MIN(a,b) (((a) < (b))? (a) : (b)) size_t httpParserBody(HttpParser this, const char * buf, size_t nbuf) @@ -37,7 +37,7 @@ httpParserBody(HttpParser this, const char * buf, size_t nbuf) HttpMessage current = this->current; if (current->dbody < current->nbody) { - len = MAX(current->nbody - current->dbody, nbuf); + len = MIN(current->nbody - current->dbody, nbuf); memcpy(current->body, buf, len); diff --git a/src/http/parser/parse.c b/src/http/parser/parse.c index 72d9db7..9bef455 100644 --- a/src/http/parser/parse.c +++ b/src/http/parser/parse.c @@ -120,23 +120,24 @@ httpParserParse(void * _this, Stream st) break; case HTTP_MESSAGE_HEADERS_DONE: - { - cbufIncRead( - this->buffer, - httpParserBody( - this, - cbufGetRead(this->buffer), - this->buffer->bused)); - - if (cbufIsEmpty(this->buffer)) { - cbufRelease(this->buffer); - this->ourLock = FALSE; - } + if (this->current->dbody == this->current->nbody) { + this->state = HTTP_MESSAGE_DONE; + break; + } - if (this->current->dbody == this->current->nbody) { - this->state = HTTP_MESSAGE_DONE; - } + if (cbufIsEmpty(this->buffer)) { + cbufRelease(this->buffer); + this->ourLock = FALSE; + cont = 0; + break; } + + cbufIncRead( + this->buffer, + httpParserBody( + this, + cbufGetRead(this->buffer), + this->buffer->bused)); break; case HTTP_MESSAGE_DONE: diff --git a/src/webgameserver.c b/src/webgameserver.c deleted file mode 100644 index 5125956..0000000 --- a/src/webgameserver.c +++ /dev/null @@ -1,196 +0,0 @@ -/** - * \file - * - * \author Georg Hopp - * - * \copyright - * Copyright (C) 2012 Georg Hopp - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "server.h" -#include "logger.h" -#include "http/worker.h" - -#include "interface/class.h" -#include "interface/logger.h" - -#include "utils/signalHandling.h" - -#define DEFAULT_SECS 10 -//#define DEFAULT_USECS (1000000 / HZ * 2) -//#define DEFAULT_SECS 1 -#define DEFAULT_USECS 0 - -void nullhandler() {} - -void daemonize(void); - -int -main() -{ - pid_t pid; - long psize = sysconf(_SC_PAGESIZE); - int status; - int shm; - struct randval * value; - - struct rlimit limit = {RLIM_INFINITY, RLIM_INFINITY}; - setrlimit(RLIMIT_CPU, &limit); - - getrlimit(RLIMIT_NOFILE, &limit); - limit.rlim_cur = limit.rlim_max; - setrlimit(RLIMIT_NOFILE, &limit); - - init_signals(); - - shm = shm_open("/fooshm", O_RDWR|O_CREAT, S_IRWXU); - ftruncate(shm, psize); - - switch((pid = fork())) { - case -1: - break; - - case 0: - { - sigset_t block_these, pause_mask; - struct sigaction s; - struct itimerval interval; - - value = mmap (0, sizeof(struct randval), PROT_READ|PROT_WRITE, - MAP_SHARED, shm, 0); - value->timestamp = 0; - value->value = 0; - - close(shm); - - // Block SIGALRM - sigemptyset(&block_these); - sigaddset(&block_these, SIGALRM); - sigprocmask(SIG_BLOCK, &block_these, &pause_mask); - - // Set up handler for SIGALRM - sigemptyset(&s.sa_mask); - sigaddset(&s.sa_mask, SIGINT); - s.sa_flags = 0; - s.sa_handler = nullhandler; - if (sigaction(SIGALRM, &s, NULL) < 0) { - perror("sigaction SIGALRM"); - exit (1); - } - - interval.it_value.tv_sec = DEFAULT_SECS; - interval.it_value.tv_usec = DEFAULT_USECS; - interval.it_interval.tv_sec = DEFAULT_SECS; - interval.it_interval.tv_usec = DEFAULT_USECS; - - setitimer(ITIMER_REAL, &interval, NULL); - - // child - while(!doShutdown) { - value->timestamp = time(NULL); - value->value = rand() % 100; - sigsuspend(&pause_mask); - } - - _exit(EXIT_SUCCESS); - } - - default: - { - Logger logger; - HttpWorker worker; - Server server; - - value = mmap (0, sizeof(int), PROT_READ|PROT_WRITE, - MAP_SHARED, shm, 0); - - shm_unlink("/fooshm"); - close(shm); - - logger = new(LoggerStderr, LOGGER_DEBUG); - worker = new(HttpWorker, "testserver", value); - server = new(Server, logger, worker, 11212, SOMAXCONN); - - //daemonize(); - if (NULL != server) { - serverRun(server); - } - else { - doShutdown = 1; - kill(pid, SIGINT); - } - - do { - pid_t w; - - w = waitpid(pid, &status, 0); - - while (w == -1) { - switch(errno) { - case EINTR: w = waitpid(pid, &status, 0); - break; - case ECHILD: perror("no child"); - // DROP THROUGH - default: w = 0; - } - } - - if (0 < w) { - if (WIFEXITED(status)) { - loggerLog(logger, LOGGER_INFO, - "child exited, status=%d\n", - WEXITSTATUS(status)); - } else if (WIFSIGNALED(status)) { - loggerLog(logger, LOGGER_INFO, - "killed by signal %d\n", - WTERMSIG(status)); - } else if (WIFSTOPPED(status)) { - loggerLog(logger, LOGGER_INFO, - "stopped by signal %d\n", - WSTOPSIG(status)); - } else if (WIFCONTINUED(status)) { - loggerLog(logger, LOGGER_INFO, "continued\n"); - } - } - } while (!WIFEXITED(status) && !WIFSIGNALED(status)); - - if (NULL != server) delete(server); - if (NULL != worker) delete(worker); - if (NULL != logger) delete(logger); - } - - break; - } - - return 0; -} - -// vim: set ts=4 sw=4: From 61f8dc58e1507ee37c81818098b98a294cd9b62f Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Wed, 21 Mar 2012 09:05:23 +0100 Subject: [PATCH 03/22] add latest stuff from parent project yabrog. Essentially some request variable handling and authentication interface with ldap implementation. Additionally add docBlocks to all C source and header files and make a real copyright sign from the (C). --- .gitignore | 3 +- TODO | 8 ++ assets/html/main.html | 50 ++++++++ assets/{ => image}/waldschrat.jpg | Bin assets/js/init.js | 37 ++++++ assets/{ => js}/jquery-1.7.1.js | 0 assets/{ => js}/jquery-1.7.1.min.js | 0 assets/js/serverval.js | 78 +++++++++++++ assets/js/session.js | 78 +++++++++++++ assets/style/common.css | 58 ++++++++++ include/auth.h | 45 ++++++++ include/auth/ldap.h | 41 +++++++ include/cbuf.h | 2 +- include/class.h | 2 +- include/commons.h | 38 +++++++ include/credential.h | 54 +++++++++ include/hash.h | 42 +++++++ include/hash_value.h | 42 +++++++ include/http/cookie.h | 51 +++++++++ include/http/header.h | 4 +- include/http/message.h | 7 +- include/http/message/queue.h | 2 +- include/http/parser.h | 5 +- include/http/request.h | 8 +- include/http/response.h | 4 +- include/http/worker.h | 4 +- include/http/writer.h | 2 +- include/interface.h | 2 +- include/interface/auth.h | 49 ++++++++ include/interface/class.h | 2 +- include/interface/hashable.h | 45 ++++++++ include/interface/http_intro.h | 2 +- include/interface/logger.h | 2 +- include/interface/observer.h | 2 +- include/interface/stream_reader.h | 2 +- include/interface/stream_writer.h | 2 +- include/interface/subject.h | 2 +- include/logger.h | 2 +- include/server.h | 2 +- include/session.h | 2 +- include/socket.h | 2 +- include/stream.h | 22 ++++ include/utils/hash.h | 2 +- include/utils/http.h | 22 ++++ include/utils/memory.h | 2 +- include/utils/signalHandling.h | 2 +- src/Makefile.am | 23 ++-- src/auth/ldap.c | 110 ++++++++++++++++++ src/cbuf.c | 2 +- src/cbuf/addr_index.c | 2 +- src/cbuf/empty.c | 2 +- src/cbuf/get_data.c | 2 +- src/cbuf/get_free.c | 2 +- src/cbuf/get_line.c | 2 +- src/cbuf/get_read.c | 2 +- src/cbuf/get_write.c | 2 +- src/cbuf/inc_read.c | 2 +- src/cbuf/inc_write.c | 2 +- src/cbuf/is_empty.c | 2 +- src/cbuf/is_locked.c | 2 +- src/cbuf/lock.c | 2 +- src/cbuf/memchr.c | 2 +- src/cbuf/read.c | 2 +- src/cbuf/release.c | 2 +- src/cbuf/set_data.c | 2 +- src/cbuf/skip_non_alpha.c | 2 +- src/cbuf/write.c | 2 +- src/credential.c | 86 ++++++++++++++ src/hash.c | 64 +++++++++++ src/{http/header => hash}/add.c | 41 +++---- src/hash/delete.c | 47 ++++++++ src/hash/each.c | 47 ++++++++ src/{http/header => hash}/get.c | 26 ++--- src/hash_value.c | 109 ++++++++++++++++++ src/http/cookie.c | 104 +++++++++++++++++ src/http/header.c | 33 +++++- src/http/header/to_string.c | 2 +- src/http/message.c | 25 ++-- src/http/message/get_version.c | 2 +- src/http/message/has_keep_alive.c | 5 +- src/http/message/has_valid_version.c | 2 +- src/http/message/header_size_get.c | 11 +- src/http/message/header_to_string.c | 13 ++- src/http/message/queue.c | 2 +- src/http/parser.c | 2 +- src/http/parser/body.c | 4 +- src/http/parser/header.c | 44 +++++++- src/http/parser/new_message.c | 22 ++++ src/http/parser/parse.c | 29 ++++- src/http/parser/post_vars.c | 72 ++++++++++++ src/http/parser/request_vars.c | 71 ++++++++++++ src/http/request.c | 11 +- src/http/request/has_valid_method.c | 2 +- src/http/response.c | 2 +- src/http/response/304.c | 9 +- src/http/response/403.c | 2 +- src/http/response/404.c | 5 +- src/http/response/asset.c | 10 +- src/http/response/login_form.c | 5 +- src/http/response/me.c | 151 ------------------------- src/http/response/randval.c | 5 +- src/http/response/session.c | 71 ++++++++++++ src/http/worker.c | 5 +- src/http/worker/add_common_header.c | 36 ++++-- src/http/worker/get_asset.c | 27 ++++- src/http/worker/process.c | 163 ++++++++++++++++++++------- src/http/worker/write.c | 2 +- src/http/writer.c | 2 +- src/http/writer/write.c | 6 +- src/interface.c | 2 +- src/interface/auth.c | 42 +++++++ src/interface/class.c | 2 +- src/interface/hashable.c | 51 +++++++++ src/interface/http_intro.c | 2 +- src/interface/logger.c | 2 +- src/interface/observer.c | 2 +- src/interface/stream_reader.c | 2 +- src/interface/stream_writer.c | 2 +- src/interface/subject.c | 2 +- src/logger.c | 2 +- src/logger/stderr.c | 2 +- src/logger/syslog.c | 2 +- src/server.c | 22 ++-- src/server/close_conn.c | 7 +- src/server/handle_accept.c | 8 +- src/server/poll.c | 3 +- src/server/read.c | 2 +- src/server/run.c | 2 +- src/server/write.c | 2 +- src/session.c | 24 +++- src/session/add.c | 22 ++++ src/session/delete.c | 22 ++++ src/session/get.c | 22 ++++ src/socket.c | 2 +- src/socket/accept.c | 2 +- src/socket/connect.c | 2 +- src/socket/listen.c | 2 +- src/stream.c | 22 ++++ src/stream/read.c | 22 ++++ src/stream/write.c | 22 ++++ src/taskrambler.c | 13 ++- src/utils/daemonize.c | 2 +- src/utils/hash.c | 23 ++++ src/utils/http.c | 22 ++++ src/utils/memory.c | 22 ++++ src/utils/signalHandling.c | 2 +- 146 files changed, 2372 insertions(+), 418 deletions(-) create mode 100644 assets/html/main.html rename assets/{ => image}/waldschrat.jpg (100%) create mode 100644 assets/js/init.js rename assets/{ => js}/jquery-1.7.1.js (100%) rename assets/{ => js}/jquery-1.7.1.min.js (100%) create mode 100644 assets/js/serverval.js create mode 100644 assets/js/session.js create mode 100644 assets/style/common.css create mode 100644 include/auth.h create mode 100644 include/auth/ldap.h create mode 100644 include/credential.h create mode 100644 include/hash.h create mode 100644 include/hash_value.h create mode 100644 include/http/cookie.h create mode 100644 include/interface/auth.h create mode 100644 include/interface/hashable.h create mode 100644 src/auth/ldap.c create mode 100644 src/credential.c create mode 100644 src/hash.c rename src/{http/header => hash}/add.c (50%) create mode 100644 src/hash/delete.c create mode 100644 src/hash/each.c rename src/{http/header => hash}/get.c (56%) create mode 100644 src/hash_value.c create mode 100644 src/http/cookie.c create mode 100644 src/http/parser/post_vars.c create mode 100644 src/http/parser/request_vars.c delete mode 100644 src/http/response/me.c create mode 100644 src/http/response/session.c create mode 100644 src/interface/auth.c create mode 100644 src/interface/hashable.c diff --git a/.gitignore b/.gitignore index 9c79b2b..6b8107e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,10 +4,9 @@ .deps/ Makefile Makefile.in +/config* m4/ /docs/ -/config.* -/configure /INSTALL *.m4 /autom4te.cache/ diff --git a/TODO b/TODO index e69de29..6bfe265 100644 --- a/TODO +++ b/TODO @@ -0,0 +1,8 @@ +VERY BIG TODO: +- right now i will use long polling ajax calls when feedback from to the client + is needed. In the long term this should be changed to websockets (ws). But + right now ws specification is not final anyway. :) + +- handle errors after all system call...especially open, close, etc. + +- IPV6 support diff --git a/assets/html/main.html b/assets/html/main.html new file mode 100644 index 0000000..a61e444 --- /dev/null +++ b/assets/html/main.html @@ -0,0 +1,50 @@ + + + + + My own little Web-App + + + + + + + + +
+ Session:
+ +
+
+
+ +
+ +
+ +
+
+
+ + Value created at:
+
+ Next value in:
+
+ Value: +
+
+

Testpage

+ Welcome!!!
+ +
+
+
+ + + + diff --git a/assets/waldschrat.jpg b/assets/image/waldschrat.jpg similarity index 100% rename from assets/waldschrat.jpg rename to assets/image/waldschrat.jpg diff --git a/assets/js/init.js b/assets/js/init.js new file mode 100644 index 0000000..b36c539 --- /dev/null +++ b/assets/js/init.js @@ -0,0 +1,37 @@ +var sess = null; + +$(document).ready(function() { + var sval = new ServerVal("#randval"); + + sess = new Session("#sessinfo"); + + $(window).focus(function() { + $.getJSON("/sessinfo/", $.proxy(sess.loadJSON, sess)); + }); + + $("ul#menu li:eq(0)").click(function() { + sval.start(); + }); + + $("ul#menu li:eq(1)").click(function() { + $.getJSON("/sess/", $.proxy(sess.loadJSON, sess)); + }); + + $("ul#menu li:eq(2)").click(function() { + $("#login").removeClass("hide"); + }); + + $("#randval").click(function() { + sval.stop(); + }); + + $("#login form").submit(function(event) { + event.preventDefault(); + $.post("/login/", + $("#login form").serialize(), + $.proxy(sess.loadJSON, sess)); + $("#login").addClass("hide"); + }); +}); + +// vim: set ts=4 sw=4: diff --git a/assets/jquery-1.7.1.js b/assets/js/jquery-1.7.1.js similarity index 100% rename from assets/jquery-1.7.1.js rename to assets/js/jquery-1.7.1.js diff --git a/assets/jquery-1.7.1.min.js b/assets/js/jquery-1.7.1.min.js similarity index 100% rename from assets/jquery-1.7.1.min.js rename to assets/js/jquery-1.7.1.min.js diff --git a/assets/js/serverval.js b/assets/js/serverval.js new file mode 100644 index 0000000..bdb848b --- /dev/null +++ b/assets/js/serverval.js @@ -0,0 +1,78 @@ +function ServerVal(eId) +{ + this.eId = eId; + this.eCtime = eId + " span:eq(1)"; + this.eVnext = eId + " span:eq(2)"; + this.eValue = eId + " span:eq(3)"; + + this.interval = null; + this.ctime = null; + this.vnext = 0; + this.value = null; +} + +ServerVal.prototype.loadJSON = function(data) +{ + this.ctime = new Date(data.ctime * 1000); + this.vnext = data.vnext; + this.value = data.value; + + $.getJSON("/sessinfo/", $.proxy(sess.loadJSON, sess)); + this.show(); +} + +ServerVal.prototype.show = function() +{ + $(this.eCtime).empty().append(this.ctime.toString()); + $(this.eVnext).empty().append(this.vnext); + $(this.eValue).empty().append(this.value); + + if ($(this.eId).hasClass("hide")) { + $(this.eId).removeClass("hide"); + } +} + +ServerVal.prototype.start = function() +{ + if (null === this.interval) { + this.interval = setInterval($.proxy(this.process, this), 1000); + } +} + +ServerVal.prototype.process = function() +{ + if (0 >= this.vnext) { + $.getJSON("/randval/", $.proxy(this.loadJSON, this)) + .error($.proxy(function(xhr) { + this.stop(); + $("#msg").append("AJAX error (" + xhr.status + "): "); + switch(xhr.status) { + case 403: + $("#msg").append( + "Please log in to access this function.
"); + break; + + default: + $("#msg").append( + "Unhandled - " + xhr.responseText + "
"); + break; + } + }, this)); + } + + else { + this.vnext--; + $(this.eVnext).empty().append(this.vnext); + } +} + +ServerVal.prototype.stop = function() +{ + $(this.eId).addClass("hide"); + + clearInterval(this.interval); + this.interval = null; + this.vnext = 0; +} + +// vim: set ts=4 sw=4: diff --git a/assets/js/session.js b/assets/js/session.js new file mode 100644 index 0000000..0c4350b --- /dev/null +++ b/assets/js/session.js @@ -0,0 +1,78 @@ +function Session(sId) +{ + this.eSid = $(sId + " span"); + this.canvas = $(sId + " canvas").get(0); + this.context = this.canvas.getContext("2d"); + + this.id = "none" + this.timeout = 0; + this.timeleft = 0; + this.username = ""; + this.interval = null; + + this.draw(); +} + +Session.prototype.loadJSON = function(data) +{ + this.stop(); + + this.id = ("0" == data.id)? "none" : data.id; + this.timeout = data.timeout * 10; + this.timeleft = data.timeleft * 10; + this.username = data.username; + + this.eSid.empty().append(this.id); + $("#main span:eq(0)").empty().append(" " + this.username); + + this.draw(); + if (0 < this.timeleft) + this.start(); +} + +Session.prototype.draw = function() +{ + this.context.fillStyle = "rgb(255, 0, 0)"; + this.context.fillRect(0, 0, this.canvas.width, this.canvas.height); + + this.context.fillStyle = "rgb(0, 255, 0)"; + this.context.fillRect(0, 0, + this.canvas.width / this.timeout * this.timeleft, + this.canvas.height); +} + +Session.prototype.start = function() +{ + if (null === this.interval) { + this.interval = setInterval($.proxy(this.process, this), 100); + } +} + +Session.prototype.process = function() +{ + if (0 >= this.timeleft) { + this.stop(); + } + + else { + this.timeleft--; + this.draw(); + } +} + +Session.prototype.stop = function() +{ + clearInterval(this.interval); + this.interval = null; + this.id = "none"; + this.timeout = 0; + this.timeleft = 0; + this.username = ""; + + this.eSid.empty().append(this.id); + $("#main span:eq(0)").empty().append(" " + this.username); + + this.draw(); +} + +// vim: set ts=4 sw=4: diff --git a/assets/style/common.css b/assets/style/common.css new file mode 100644 index 0000000..bd3bab4 --- /dev/null +++ b/assets/style/common.css @@ -0,0 +1,58 @@ +div#randval { + left: 200px; + top: 100px; + padding: 10px; + position: fixed; + background-color: white; + border: 1px solid black; + border-radius: 10px; +} + +div#login { + padding: 5px; + position: fixed; + background-color: white; + border: 1px solid black; + border-radius: 10px; +} + +div.hide { + top: -500px !important; +} + +.small { + font-size: small; +} + +.x-small { + font-size: x-small; +} + +ul#menu { + list-style: none inside; + margin: 0px; + padding: 1px 0px 0px; + border-bottom: 1px solid #7b0b2b; + display: inline-block; + width: 100%; +} + +ul#menu li { + padding: 2px; + border-top-left-radius: 10px; + border-top-right-radius: 10px; + border-top: 1px solid #7b0b2b; + border-left: 1px solid #7b0b2b; + border-right: 1px solid #7b0b2b; + text-align: center; + cursor: pointer; + + float: left; + margin-right: 1px; +} + +div#sessinfo canvas { + border: 1px solid black; +} + +/* vim: set st=4 sw=4: */ diff --git a/include/auth.h b/include/auth.h new file mode 100644 index 0000000..a83eb51 --- /dev/null +++ b/include/auth.h @@ -0,0 +1,45 @@ +/** + * \file + * Authenticatio module factory + * + * A factory to get a specific authentication module. + * An authentication module is a class that implement the Auth interface. + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __AUTH_H__ +#define __AUTH_H__ + +#include "class.h" +#include "auth/ldap.h" + +typedef enum e_AuthModule { + AUTH_LDAP = 0 +} AuthModule; + +CLASS(Auth) { +}; + +void * authCreateById(Auth, int); +AuthLdap authCreateLdap(Auth); + +#endif // __AUTH_H__ + +// vim: set ts=4 sw=4: diff --git a/include/auth/ldap.h b/include/auth/ldap.h new file mode 100644 index 0000000..4c6e98c --- /dev/null +++ b/include/auth/ldap.h @@ -0,0 +1,41 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __AUTH_LDAP_H__ +#define __AUTH_LDAP_H__ + +#include +#include + +#include "class.h" + +CLASS(AuthLdap) { + LDAP * ldap; + char * url; + char * base_dn; + int version; + size_t nbase_dn; +}; + +#endif // __AUTH_LDAP_H__ + +// vim: set ts=4 sw=4: diff --git a/include/cbuf.h b/include/cbuf.h index 053b836..dd2de94 100644 --- a/include/cbuf.h +++ b/include/cbuf.h @@ -11,7 +11,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/class.h b/include/class.h index efecb79..6f34fe9 100644 --- a/include/class.h +++ b/include/class.h @@ -8,7 +8,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/commons.h b/include/commons.h index 876df6a..7f354f7 100644 --- a/include/commons.h +++ b/include/commons.h @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef __COMMONS_H__ #define __COMMONS_H__ @@ -5,6 +27,22 @@ #define TRUE 1 #define FALSE 0 +#ifndef MAX +# define MAX(a,b) ((a)>(b)? (a) : (b)) +#endif + +#ifndef MIN +# define MIN(a,b) ((a)<(b)? (a) : (b)) +#endif + +#define SWAP_FUN(a, b) ((a)^=(b),(b)^=(a),(a)^=(b)) + +#define SWAP(type, a, b) do { \ + type tmp = (a); \ + (a) = (b); \ + (b) = tmp; \ +} while(0); + #endif // __COMMONS_H__ // vim: set ts=4 sw=4: diff --git a/include/credential.h b/include/credential.h new file mode 100644 index 0000000..945f780 --- /dev/null +++ b/include/credential.h @@ -0,0 +1,54 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __CREDENTIAL_H__ +#define __CREDENTIAL_H__ + +#include + +#include "class.h" + +#define CRED_PWD(c) (((c)->cred).pwd) + +typedef enum e_CredentialType { + CRED_PASSWORD = 0 +} CredentialType; + + +CLASS(Credential) { + CredentialType type; + + union { + + struct { + char * user; + size_t nuser; + char * pass; + size_t npass; + } pwd; + + } cred; +}; + +#endif // __CREDENTIAL_H__ + +// vim: set ts=4 sw=4: diff --git a/include/hash.h b/include/hash.h new file mode 100644 index 0000000..4c6eb92 --- /dev/null +++ b/include/hash.h @@ -0,0 +1,42 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __HASH_H__ +#define __HASH_H__ + +#include + +#include "class.h" + + +CLASS(Hash) { + void * root; +}; + +void * hashAdd(Hash, void *); +void * hashDelete(Hash, const char *, size_t); +void * hashGet(Hash, const char *, size_t); +void hashEach(Hash, void (*)(const void*)); + +#endif // __HASH_H__ + +// vim: set ts=4 sw=4: diff --git a/include/hash_value.h b/include/hash_value.h new file mode 100644 index 0000000..17a4f6c --- /dev/null +++ b/include/hash_value.h @@ -0,0 +1,42 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __HASH_VALUE_H__ +#define __HASH_VALUE_H__ + +#include + +#include "class.h" + +CLASS(HashValue) { + unsigned long hash; + + char * key; + void * value; + + size_t nkey; + size_t nvalue; +}; + +#endif // __HASH_VALUE_H__ + +// vim: set ts=4 sw=4: diff --git a/include/http/cookie.h b/include/http/cookie.h new file mode 100644 index 0000000..358be49 --- /dev/null +++ b/include/http/cookie.h @@ -0,0 +1,51 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * - Copyright © 2012 Georg Hopp + * - + * - This program is free software: you can redistribute it and/or modify + * - it under the terms of the GNU General Public License as published by + * - the Free Software Foundation, either version 3 of the License, or + * - (at your option) any later version. + * - + * - This program is distributed in the hope that it will be useful, + * - but WITHOUT ANY WARRANTY; without even the implied warranty of + * - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * - GNU General Public License for more details. + * - + * - You should have received a copy of the GNU General Public License + * - along with this program. If not, see . + */ + +#ifndef __HTTP_COOKIE_H__ +#define __HTTP_COOKIE_H__ + +#include +#include + +#include "class.h" + +CLASS(HttpCookie) { + unsigned long hash; + + char * key; + char * value; + char * domain; + char * path; + + time_t expires; + time_t max_age; + + size_t nkey; + size_t nvalue; +}; + +char * httpCookieToString(HttpCookie); +HttpCookie httpStringToCookie(const char *); + +#endif // __HTTP_COOKIE_H__ + +// vim: set ts=4 sw=4: diff --git a/include/http/header.h b/include/http/header.h index eac9dd8..865ffd7 100644 --- a/include/http/header.h +++ b/include/http/header.h @@ -6,7 +6,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -41,8 +41,6 @@ CLASS(HttpHeader) { size_t size; //!< full size of this header }; -HttpHeader httpHeaderAdd(const HttpHeader *, HttpHeader); -HttpHeader httpHeaderGet(const HttpHeader *, const char *, size_t); size_t httpHeaderToString(HttpHeader, char *); #endif // __HTTP_HEADER_H__ diff --git a/include/http/message.h b/include/http/message.h index 8a51e16..b85ec93 100644 --- a/include/http/message.h +++ b/include/http/message.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -25,7 +25,7 @@ #define __HTTP_MESSAGE__ #include "class.h" -#include "http/header.h" +#include "hash.h" #include "stream.h" typedef enum e_HttpMessageType { @@ -37,7 +37,8 @@ typedef enum e_HttpMessageType { CLASS(HttpMessage) { char * version; - HttpHeader header; + Hash header; + Hash cookies; HttpMessageType type; Stream handle; diff --git a/include/http/message/queue.h b/include/http/message/queue.h index b4d6052..7b024e0 100644 --- a/include/http/message/queue.h +++ b/include/http/message/queue.h @@ -7,7 +7,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/http/parser.h b/include/http/parser.h index 81a16c0..7ca76e2 100644 --- a/include/http/parser.h +++ b/include/http/parser.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -58,9 +58,12 @@ CLASS(HttpParser) { }; ssize_t httpParserParse(void *, Stream); +void httpParserRequestVars(HttpParser); void httpParserHeader(HttpParser, const char *, const char *); void httpParserNewMessage(HttpParser, const char *, const char * lend); size_t httpParserBody(HttpParser, const char *, size_t); +void httpParserRequestVars(HttpParser); +void httpParserPostVars(HttpParser); #endif // __HTTP_PARSER_H__ diff --git a/include/http/request.h b/include/http/request.h index ba1f979..45eac76 100644 --- a/include/http/request.h +++ b/include/http/request.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -26,6 +26,7 @@ #include "class.h" #include "http/message.h" +#include "hash.h" #define N_HTTP_METHOD 8 @@ -36,6 +37,11 @@ CLASS(HttpRequest) { char * method; char * uri; + char * path; + + Hash get; + Hash post; + Hash cookies; }; int httpRequestHasValidMethod(HttpRequest); diff --git a/include/http/response.h b/include/http/response.h index 67b206e..98818ff 100644 --- a/include/http/response.h +++ b/include/http/response.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,6 +29,7 @@ #include "class.h" #include "http/message.h" +#include "session.h" CLASS(HttpResponse) { @@ -47,6 +48,7 @@ HttpResponse httpResponse403(); HttpResponse httpResponseMe(); HttpResponse httpResponseLoginForm(); HttpResponse httpResponseRandval(time_t, int); +HttpResponse httpResponseSession(Session); HttpResponse httpResponseAsset( const char *, const char *, size_t, diff --git a/include/http/worker.h b/include/http/worker.h index 3ffc348..cfc7255 100644 --- a/include/http/worker.h +++ b/include/http/worker.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -52,6 +52,8 @@ CLASS(HttpWorker) { HttpWriter writer; Session session; Session * sroot; + + void * auth; }; #endif // __HTTP_WORKER_H__ diff --git a/include/http/writer.h b/include/http/writer.h index 9c1d143..3fb91bb 100644 --- a/include/http/writer.h +++ b/include/http/writer.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * - Copyright (C) 2012 Georg Hopp + * - Copyright © 2012 Georg Hopp * - * - This program is free software: you can redistribute it and/or modify * - it under the terms of the GNU General Public License as published by diff --git a/include/interface.h b/include/interface.h index f3e3c56..bebe14c 100644 --- a/include/interface.h +++ b/include/interface.h @@ -8,7 +8,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/interface/auth.h b/include/interface/auth.h new file mode 100644 index 0000000..ed552e7 --- /dev/null +++ b/include/interface/auth.h @@ -0,0 +1,49 @@ +/** + * \file + * The authentication interface. + * + * This is the authentication interface. It's only pupose is to + * authenticate someone or somewhat. It is called AUTH. + * The concrete access rights are managed within a class called ACL. + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __INTERFACE_AUTH_H__ +#define __INTERFACE_AUTH_H__ + +#include + +#include "interface.h" +#include "credential.h" + +typedef int (* fptr_authenticate)(void *, Credential); + +extern const struct interface i_Auth; + +struct i_Auth { + const struct interface * const _; + fptr_authenticate authenticate; +}; + +extern int authenticate(void *, Credential); + +#endif // __INTERFACE_AUTH_H__ + +// vim: set ts=4 sw=4: diff --git a/include/interface/class.h b/include/interface/class.h index 748b16b..b0fd2ad 100644 --- a/include/interface/class.h +++ b/include/interface/class.h @@ -7,7 +7,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/interface/hashable.h b/include/interface/hashable.h new file mode 100644 index 0000000..18b9ae3 --- /dev/null +++ b/include/interface/hashable.h @@ -0,0 +1,45 @@ +/** + * \file + * The logger interface. + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __INTERFACE_HASHABLE_H__ +#define __INTERFACE_HASHABLE_H__ + +#include "interface.h" + +typedef unsigned long (* fptr_hashableGetHash)(void *); +typedef void (* fptr_hashableHandleDouble)(void *, void *); + +extern const struct interface i_Hashable; + +struct i_Hashable { + const struct interface * const _; + fptr_hashableGetHash getHash; + fptr_hashableHandleDouble handleDouble; +}; + +extern unsigned long hashableGetHash(void *); +extern void hashableHandleDouble(void *, void *); + +#endif // __INTERFACE_HASHABLE_H__ + +// vim: set ts=4 sw=4: diff --git a/include/interface/http_intro.h b/include/interface/http_intro.h index 81b6afe..60edf93 100644 --- a/include/interface/http_intro.h +++ b/include/interface/http_intro.h @@ -7,7 +7,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/interface/logger.h b/include/interface/logger.h index 769ecb4..c55876c 100644 --- a/include/interface/logger.h +++ b/include/interface/logger.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/interface/observer.h b/include/interface/observer.h index ffb1840..077823c 100644 --- a/include/interface/observer.h +++ b/include/interface/observer.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/interface/stream_reader.h b/include/interface/stream_reader.h index 1478e5d..e353a12 100644 --- a/include/interface/stream_reader.h +++ b/include/interface/stream_reader.h @@ -6,7 +6,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/interface/stream_writer.h b/include/interface/stream_writer.h index 3229705..bbca388 100644 --- a/include/interface/stream_writer.h +++ b/include/interface/stream_writer.h @@ -6,7 +6,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/interface/subject.h b/include/interface/subject.h index 62c3b3a..16ef044 100644 --- a/include/interface/subject.h +++ b/include/interface/subject.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/logger.h b/include/logger.h index 26ee2bf..a9577db 100644 --- a/include/logger.h +++ b/include/logger.h @@ -6,7 +6,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/server.h b/include/server.h index 198aac1..0468e39 100644 --- a/include/server.h +++ b/include/server.h @@ -7,7 +7,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/session.h b/include/session.h index 67571f3..02f7aec 100644 --- a/include/session.h +++ b/include/session.h @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/socket.h b/include/socket.h index af68ac9..7e1442f 100644 --- a/include/socket.h +++ b/include/socket.h @@ -6,7 +6,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/stream.h b/include/stream.h index 0bae954..d7cffed 100644 --- a/include/stream.h +++ b/include/stream.h @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef __STREAM_H__ #define __STREAM_H__ diff --git a/include/utils/hash.h b/include/utils/hash.h index a247590..27c36c5 100644 --- a/include/utils/hash.h +++ b/include/utils/hash.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/utils/http.h b/include/utils/http.h index 38d4511..5e877bb 100644 --- a/include/utils/http.h +++ b/include/utils/http.h @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef __UTILS_HTTP_H__ #define __UTILS_HTTP_H__ diff --git a/include/utils/memory.h b/include/utils/memory.h index 4755cac..2e9b65a 100644 --- a/include/utils/memory.h +++ b/include/utils/memory.h @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/include/utils/signalHandling.h b/include/utils/signalHandling.h index 269d1fe..cd1c973 100644 --- a/include/utils/signalHandling.h +++ b/include/utils/signalHandling.h @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Makefile.am b/src/Makefile.am index 7830b46..3abd3d2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,6 +6,8 @@ IFACE = interface/class.c interface/stream_reader.c interface/logger.c \ interface/subject.c interface/observer.c interface.c SOCKET = socket.c socket/accept.c socket/connect.c socket/listen.c STREAM = stream.c stream/read.c stream/write.c +HASH = hash.c hash/add.c hash/get.c hash/delete.c \ + hash/each.c interface/hashable.c hash_value.c SERVER = server.c server/run.c server/close_conn.c server/poll.c \ server/handle_accept.c server/read.c server/write.c LOGGER = logger.c logger/stderr.c logger/syslog.c @@ -30,13 +32,15 @@ RESP = http/response.c \ http/response/403.c \ http/response/login_form.c \ http/response/asset.c \ - http/response/me.c \ - http/response/randval.c + http/response/randval.c \ + http/response/session.c PARSER = http/parser.c \ http/parser/parse.c \ http/parser/new_message.c \ http/parser/header.c \ - http/parser/body.c + http/parser/body.c \ + http/parser/request_vars.c \ + http/parser/post_vars.c WRITER = http/writer.c \ http/writer/write.c WORKER = http/worker.c \ @@ -44,7 +48,7 @@ WORKER = http/worker.c \ http/worker/write.c \ http/worker/get_asset.c \ http/worker/add_common_header.c -HEADER = http/header.c http/header/get.c http/header/add.c \ +HEADER = http/header.c \ http/header/to_string.c SESSION = session.c session/add.c session/get.c session/delete.c UTILS = utils/hash.c \ @@ -52,15 +56,16 @@ UTILS = utils/hash.c \ utils/http.c \ utils/daemonize.c \ utils/signalHandling.c +AUTH = interface/auth.c auth/ldap.c credential.c AM_CFLAGS = -Wall -I ../include/ -bin_PROGRAMS = taskrambler +bin_PROGRAMS = webgameserver -taskrambler_SOURCES = taskrambler.c \ +webgameserver_SOURCES = webgameserver.c \ $(IFACE) $(SOCKET) $(SERVER) $(LOGGER) $(MSG) $(REQ) \ $(WRITER) $(RESP) $(HEADER) $(PARSER) $(WORKER) $(CB) \ - $(UTILS) $(MSGQ) $(SESSION) $(STREAM) -taskrambler_CFLAGS = -Wall -I ../include/ -taskrambler_LDFLAGS = -lrt -lssl + $(UTILS) $(MSGQ) $(SESSION) $(STREAM) $(HASH) $(AUTH) +webgameserver_CFLAGS = -Wall -I ../include/ +webgameserver_LDFLAGS = -lrt -lssl -lldap diff --git a/src/auth/ldap.c b/src/auth/ldap.c new file mode 100644 index 0000000..fb7bf0e --- /dev/null +++ b/src/auth/ldap.c @@ -0,0 +1,110 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include +#include + +#include "auth/ldap.h" +#include "class.h" +#include "credential.h" +#include "interface/class.h" +#include "interface/auth.h" + +#include "utils/memory.h" +#include "commons.h" + +static +int +authLdapCtor(void * _this, va_list * params) +{ + AuthLdap this = _this; + char * url = va_arg(*params, char*); + char * base_dn; + + this->url = malloc(strlen(url) + 1); + strcpy(this->url, url); + + this->version = 3; + + base_dn = va_arg(* params, char *); + this->nbase_dn = va_arg(* params, size_t); + + this->base_dn = malloc(this->nbase_dn + 1); + this->base_dn[this->nbase_dn] = 0; + memcpy(this->base_dn, base_dn, this->nbase_dn); + + return 0; +} + +static +void +authLdapDtor(void * _this) +{ + AuthLdap this = _this; + + FREE(this->base_dn); + FREE(this->url); +} + +static +int +authLdapAuthenticate(void * _this, Credential cred) +{ + AuthLdap this = _this; + char who[256]; + char * who_ptr = who; + int ldap_err; + + if (CRED_PASSWORD != cred->type) { + return FALSE; + } + + ldap_initialize(&(this->ldap), this->url); + ldap_set_option(this->ldap, LDAP_OPT_PROTOCOL_VERSION, &(this->version)); + + memcpy(who_ptr, "cn=", sizeof("cn=") - 1); + who_ptr += sizeof("cn=") - 1; + memcpy(who_ptr, CRED_PWD(cred).user, CRED_PWD(cred).nuser); + who_ptr += CRED_PWD(cred).nuser; + *who_ptr++ = ','; + memcpy(who_ptr, this->base_dn, this->nbase_dn); + who_ptr[this->nbase_dn] = 0; + + ldap_err = ldap_simple_bind_s(this->ldap, who, CRED_PWD(cred).pass); + if (0 == ldap_err) { + ldap_unbind_s(this->ldap); + //! \todo here we need to get and return the user id + return TRUE; + } + + fprintf(stderr, "%s\n", ldap_err2string(ldap_err)); + return FALSE; +} + +INIT_IFACE(Class, authLdapCtor, authLdapDtor, NULL); +INIT_IFACE(Auth, authLdapAuthenticate); +CREATE_CLASS(AuthLdap, NULL, IFACE(Class), IFACE(Auth)); + +// vim: set ts=4 sw=4: diff --git a/src/cbuf.c b/src/cbuf.c index 4d05fa5..fdf77db 100644 --- a/src/cbuf.c +++ b/src/cbuf.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/addr_index.c b/src/cbuf/addr_index.c index f66df81..69eb5e6 100644 --- a/src/cbuf/addr_index.c +++ b/src/cbuf/addr_index.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/empty.c b/src/cbuf/empty.c index 02196de..b41a6a3 100644 --- a/src/cbuf/empty.c +++ b/src/cbuf/empty.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/get_data.c b/src/cbuf/get_data.c index c5191f3..b41f5b8 100644 --- a/src/cbuf/get_data.c +++ b/src/cbuf/get_data.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/get_free.c b/src/cbuf/get_free.c index eb747fd..1117081 100644 --- a/src/cbuf/get_free.c +++ b/src/cbuf/get_free.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/get_line.c b/src/cbuf/get_line.c index 526c22a..647722f 100644 --- a/src/cbuf/get_line.c +++ b/src/cbuf/get_line.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/get_read.c b/src/cbuf/get_read.c index 6464b08..cbbbdc3 100644 --- a/src/cbuf/get_read.c +++ b/src/cbuf/get_read.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/get_write.c b/src/cbuf/get_write.c index dbd2dc3..02f1a55 100644 --- a/src/cbuf/get_write.c +++ b/src/cbuf/get_write.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/inc_read.c b/src/cbuf/inc_read.c index 869a780..bfd6dab 100644 --- a/src/cbuf/inc_read.c +++ b/src/cbuf/inc_read.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/inc_write.c b/src/cbuf/inc_write.c index 1221493..f329813 100644 --- a/src/cbuf/inc_write.c +++ b/src/cbuf/inc_write.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/is_empty.c b/src/cbuf/is_empty.c index 799ced6..849c032 100644 --- a/src/cbuf/is_empty.c +++ b/src/cbuf/is_empty.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/is_locked.c b/src/cbuf/is_locked.c index fa5a2c3..097bd69 100644 --- a/src/cbuf/is_locked.c +++ b/src/cbuf/is_locked.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/lock.c b/src/cbuf/lock.c index e1579e4..df5256f 100644 --- a/src/cbuf/lock.c +++ b/src/cbuf/lock.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/memchr.c b/src/cbuf/memchr.c index 58894fa..0183351 100644 --- a/src/cbuf/memchr.c +++ b/src/cbuf/memchr.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/read.c b/src/cbuf/read.c index a68eb07..1e49fa0 100644 --- a/src/cbuf/read.c +++ b/src/cbuf/read.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/release.c b/src/cbuf/release.c index 8a3edac..eb32a73 100644 --- a/src/cbuf/release.c +++ b/src/cbuf/release.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/set_data.c b/src/cbuf/set_data.c index 0e3055e..514d052 100644 --- a/src/cbuf/set_data.c +++ b/src/cbuf/set_data.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/skip_non_alpha.c b/src/cbuf/skip_non_alpha.c index 72ef3aa..395c296 100644 --- a/src/cbuf/skip_non_alpha.c +++ b/src/cbuf/skip_non_alpha.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/cbuf/write.c b/src/cbuf/write.c index 01c26b1..03820aa 100644 --- a/src/cbuf/write.c +++ b/src/cbuf/write.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/credential.c b/src/credential.c new file mode 100644 index 0000000..873877b --- /dev/null +++ b/src/credential.c @@ -0,0 +1,86 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include + +#include "credential.h" +#include "class.h" +#include "interface/class.h" + +#include "utils/memory.h" + +static +int +credentialCtor(void * _this, va_list * params) +{ + Credential this = _this; + + this->type = va_arg(* params, CredentialType); + + switch(this->type) { + case CRED_PASSWORD: + { + char * user, *pass; + + user = va_arg(* params, char*); + CRED_PWD(this).nuser = va_arg(* params, size_t); + pass = va_arg(* params, char*); + CRED_PWD(this).npass = va_arg(* params, size_t); + + CRED_PWD(this).user = malloc(CRED_PWD(this).nuser + 1); + CRED_PWD(this).user[CRED_PWD(this).nuser] = 0; + memcpy(CRED_PWD(this).user, user, CRED_PWD(this).nuser); + + CRED_PWD(this).pass = malloc(CRED_PWD(this).npass + 1); + CRED_PWD(this).pass[CRED_PWD(this).npass] = 0; + memcpy(CRED_PWD(this).pass, pass, CRED_PWD(this).npass); + } + break; + + default: + return -1; + } + + return 0; +} + +static +void +credentialDtor(void * _this) +{ + Credential this = _this; + + switch(this->type) { + case CRED_PASSWORD: + FREE(CRED_PWD(this).user); + FREE(CRED_PWD(this).pass); + break; + } +} + +INIT_IFACE(Class, credentialCtor, credentialDtor, NULL); +CREATE_CLASS(Credential, NULL, IFACE(Class)); + +// vim: set ts=4 sw=4: diff --git a/src/hash.c b/src/hash.c new file mode 100644 index 0000000..8956144 --- /dev/null +++ b/src/hash.c @@ -0,0 +1,64 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#define _GNU_SOURCE + +#include +#include + +#include "hash.h" +#include "class.h" +#include "interface/class.h" + +static +int +hashCtor(void * _this, va_list * params) +{ + return 0; +} + +static +inline +void +tDelete(void * node) +{ + delete(node); +} + +static +void +hashDtor(void * _this) +{ + Hash this = _this; + + /** + * this is a GNU extension...anyway on most non + * GNUish systems i would not use tsearch anyway + * as the trees will be unbalanced. + */ + tdestroy(this->root, tDelete); +} + +INIT_IFACE(Class, hashCtor, hashDtor, NULL); +CREATE_CLASS(Hash, NULL, IFACE(Class)); + +// vim: set ts=4 sw=4: diff --git a/src/http/header/add.c b/src/hash/add.c similarity index 50% rename from src/http/header/add.c rename to src/hash/add.c index b8eda6a..5226862 100644 --- a/src/http/header/add.c +++ b/src/hash/add.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -21,49 +21,34 @@ */ #include -#include -#include -#include -#include "class.h" +#include "hash.h" +#include "interface/hashable.h" #include "interface/class.h" -#include "http/header.h" -#include "utils/hash.h" static inline int -comp(const void * _a, const void * _b) +hashAddComp(const void * a, const void * b) { - HttpHeader a = (HttpHeader)_a; - HttpHeader b = (HttpHeader)_b; - return (a->hash < b->hash)? -1 : (a->hash > b->hash)? 1 : 0; + return hashableGetHash((void*)b) - hashableGetHash((void*)a); } -HttpHeader -httpHeaderAdd(const HttpHeader * root, HttpHeader header) +void * +hashAdd(Hash this, void * operand) { - HttpHeader * _found = tsearch(header, (void **)root, comp); - HttpHeader found; + void * found = tsearch(operand, &(this->root), hashAddComp); - if (NULL == _found) { + if (NULL == found) { return NULL; } - found = *_found; - - if (found != header) { - if (found->cvalue >= N_VALUES) { - return NULL; - } - (found->nvalue)[found->cvalue] = (header->nvalue)[0]; - (found->value)[(found->cvalue)++] = (header->value)[0]; - found->size += header->size; - (header->value)[0] = NULL; - delete(header); + if (operand != *(void**)found) { + hashableHandleDouble(*(void**)found, operand); + delete(operand); } - return found; + return *(void**)found; } // vim: set ts=4 sw=4: diff --git a/src/hash/delete.c b/src/hash/delete.c new file mode 100644 index 0000000..76dd374 --- /dev/null +++ b/src/hash/delete.c @@ -0,0 +1,47 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include "hash.h" +#include "interface/hashable.h" +#include "utils/hash.h" + +static +inline +int +hashDeleteComp(const void * a, const void * b) +{ + return hashableGetHash((void*)b) - *(const unsigned long*)a; +} + +void * +hashDelete(Hash this, const char * search, size_t nsearch) +{ + unsigned long hash = sdbm((const unsigned char *)search, nsearch); + void * found = tfind(&hash, &(this->root), hashDeleteComp); + + return (NULL != found)? *(void**)found : NULL; +} + +// vim: set ts=4 sw=4: diff --git a/src/hash/each.c b/src/hash/each.c new file mode 100644 index 0000000..4df28d1 --- /dev/null +++ b/src/hash/each.c @@ -0,0 +1,47 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +#include "hash.h" + +static void (*cb)(void*); + +static +inline +void +walk(const void * node, const VISIT which, const int depth) +{ + if (endorder == which || leaf == which) { + cb(*(void**)node); + } +} + +void +hashEach(Hash this, void (*callback)(const void*)) +{ + cb = callback; + + twalk(this->root, walk); +} + +// vim: set ts=4 sw=4: diff --git a/src/http/header/get.c b/src/hash/get.c similarity index 56% rename from src/http/header/get.c rename to src/hash/get.c index 81c24ba..44240cb 100644 --- a/src/http/header/get.c +++ b/src/hash/get.c @@ -1,12 +1,10 @@ /** * \file - * Get a header from a tree containing headers by its name. - * The key for the tree is the hased lowercase header identifier. * * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,29 +21,27 @@ */ #include -#include +#include -#include "http/header.h" +#include "hash.h" +#include "interface/hashable.h" #include "utils/hash.h" static inline int -comp(const void * _a, const void * _b) +hashGetComp(const void * a, const void * b) { - const unsigned long * a = _a; - HttpHeader b = (HttpHeader)_b; - return (*a < b->hash)? -1 : (*a > b->hash)? 1 : 0; + return hashableGetHash((void*)b) - *(const unsigned long*)a; } -HttpHeader -httpHeaderGet(const HttpHeader * root, const char * name, size_t nname) +void * +hashGet(Hash this, const char * search, size_t nsearch) { - unsigned long hash = sdbm((const unsigned char*)name, nname); + unsigned long hash = sdbm((const unsigned char *)search, nsearch); + void * found = tfind(&hash, &(this->root), hashGetComp); - HttpHeader * found = tfind(&hash, (void**)root, comp); - - return (NULL != found)? *found : NULL; + return (NULL != found)? *(void**)found : NULL; } // vim: set ts=4 sw=4: diff --git a/src/hash_value.c b/src/hash_value.c new file mode 100644 index 0000000..c69a169 --- /dev/null +++ b/src/hash_value.c @@ -0,0 +1,109 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include + +#include "hash_value.h" +#include "utils/hash.h" +#include "utils/memory.h" +#include "commons.h" +#include "interface/class.h" +#include "interface/hashable.h" + +static +int +hashValueCtor(void * _this, va_list * params) +{ + HashValue this = _this; + char * key = va_arg(* params, char*); + void * value; + + this->nkey = va_arg(* params, size_t); + value = va_arg(* params, void*); + this->nvalue = va_arg(* params, size_t); + + this->key = malloc(this->nkey + 1); + this->key[this->nkey] = 0; + memcpy(this->key, key, this->nkey); + + this->hash = sdbm((unsigned char *)this->key, this->nkey); + + if (NULL != value) { + this->value = malloc(this->nvalue + 1); + ((char*)this->value)[this->nvalue] = 0; + memcpy(this->value, value, this->nvalue); + } + + return 0; +} + +static +void +hashValueDtor(void * _this) +{ + HashValue this = _this; + + FREE(this->key); + FREE(this->value); +} + +static +unsigned long +hashValueGetHash(void * _this) +{ + HashValue this = _this; + + return this->hash; +} + +static +void +hashValueHandleDouble(void * _this, void * _double) +{ + HashValue this = _this; + HashValue doub = _double; + void * tmp_value; + size_t tmp_nvalue; + + /** + * here we swap the internal data of both objects, + * effectively overwriting the old entry. We need not + * to free anything here as _double will be deleted + * afterwards anyway (\see hash/add.c). + */ + tmp_value = this->value; + this->value = doub->value; + doub->value = tmp_value; + + tmp_nvalue = this->nvalue; + this->nvalue = doub->nvalue; + doub->nvalue = tmp_nvalue; +} + +INIT_IFACE(Class, hashValueCtor, hashValueDtor, NULL); +INIT_IFACE(Hashable, hashValueGetHash, hashValueHandleDouble); +CREATE_CLASS(HashValue, NULL, IFACE(Class), IFACE(Hashable)); + +// vim: set ts=4 sw=4: diff --git a/src/http/cookie.c b/src/http/cookie.c new file mode 100644 index 0000000..412f463 --- /dev/null +++ b/src/http/cookie.c @@ -0,0 +1,104 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include + +#include "cookie.h" +#include "interface/class.h" +#include "interface/hashable" + +#include "utils/hash.h" +#include "utils/memory.h" +#include "commons.h" + + +static +int +httpCookieCtor(void * _this, va_list * params) +{ + HttpCookie this = _this; + char * key = va_arg(* params, char*); + char * value; + + this->nkey = va_arg(* params, size_t); + value = va_arg(* params, char*); + this->nvalue = va_arg(* params, size_t); + + this->key = malloc(this->nkey + 1); + this->key[this->nkey] = 0; + memcpy(this->key, key, this->nkey); + + this->value = malloc(this->nvalue + 1); + this->value[this->nvalue] = 0; + memcpy(this->value, value, this->nvalue); + + this->hash = sdbm((unsigned char *)key, nkey); + + return 0; +} + +static +void +httpCookieDtor(void * _this, va_list * params) +{ + HttpCookie this = _this; + + FREE(this->key); + FREE(this->value); + FREE(this->domain); + FREE(this->path); +} + +static +unsigned long +httpCookieGetHash(void * _this) +{ + HttpCookie this = _this; + + return this->hash; +} + +static +void +httpCookieHandleDouble(void * _this, void * _double) +{ + HttpCookie this = _this; + HttpCookie doub = _double; + + SWAP(char*, this->key, doub->key); + SWAP(char*, this->value, doub->value); + SWAP(char*, this->domain, doub->domain); + SWAP(char*, this->path, doub->path); + + SWAP(char*, this->nkey, doub->nkey); + SWAP(char*, this->nvalue, doub->nvalue); +} + + +INIT_IFACE(Class, httpCookieCtor, httpCookieDtor, NULL); +INIT_IFACE(Hashable, httpCookieGetHash, httpCookieHandleDouble); +CREATE_CLASS(HttpCookie, NULL, IFACE(Class), IFACE(Hashable)); + +// vim: set ts=4 sw=4: diff --git a/src/http/header.c b/src/http/header.c index 344ee87..999b878 100644 --- a/src/http/header.c +++ b/src/http/header.c @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -27,6 +27,7 @@ #include "class.h" #include "interface/class.h" #include "http/header.h" +#include "interface/hashable.h" #include "utils/hash.h" #include "utils/memory.h" @@ -72,7 +73,35 @@ httpHeaderDtor(void * _this) } } +static +unsigned long +httpHeaderGetHash(void * _this) +{ + HttpHeader this = _this; + + return this->hash; +} + +static +void +httpHeaderHandleDouble(void * _this, void * _double) +{ + HttpHeader this = _this; + HttpHeader doub = _double; + + if (this->cvalue >= N_VALUES) { + //! \todo do dome error logging...or change to HEAP + return; + } + + (this->nvalue)[this->cvalue] = (doub->nvalue)[0]; + (this->value)[(this->cvalue)++] = (doub->value)[0]; + this->size += doub->size; + (doub->value)[0] = NULL; +} + INIT_IFACE(Class, httpHeaderCtor, httpHeaderDtor, NULL); -CREATE_CLASS(HttpHeader, NULL, IFACE(Class)); +INIT_IFACE(Hashable, httpHeaderGetHash, httpHeaderHandleDouble); +CREATE_CLASS(HttpHeader, NULL, IFACE(Class), IFACE(Hashable)); // vim: set ts=4 sw=4: diff --git a/src/http/header/to_string.c b/src/http/header/to_string.c index 124e804..089ee51 100644 --- a/src/http/header/to_string.c +++ b/src/http/header/to_string.c @@ -5,7 +5,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/message.c b/src/http/message.c index 3b3c063..611f9de 100644 --- a/src/http/message.c +++ b/src/http/message.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -32,19 +32,11 @@ #include "class.h" #include "interface/class.h" - +#include "hash.h" #include "http/message.h" #include "utils/memory.h" -static -inline -void -tDelete(void * node) -{ - delete(node); -} - static int httpMessageCtor(void * _this, va_list * params) @@ -55,6 +47,9 @@ httpMessageCtor(void * _this, va_list * params) this->version = calloc(1, strlen(version)+1); strcpy(this->version, version); + this->header = new(Hash); + this->cookies = new(Hash); + return 0; } @@ -64,14 +59,10 @@ httpMessageDtor(void * _this) { HttpMessage this = _this; - FREE(this->version); + delete(this->header); + delete(this->cookies); - /** - * this is a GNU extension...anyway on most non - * GNUish systems i would not use tsearch anyway - * as the trees will be unbalanced. - */ - tdestroy(this->header, tDelete); + FREE(this->version); switch (this->type) { case HTTP_MESSAGE_BUFFERED: diff --git a/src/http/message/get_version.c b/src/http/message/get_version.c index be83528..0db7d99 100644 --- a/src/http/message/get_version.c +++ b/src/http/message/get_version.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/message/has_keep_alive.c b/src/http/message/has_keep_alive.c index 24623e4..136b673 100644 --- a/src/http/message/has_keep_alive.c +++ b/src/http/message/has_keep_alive.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -31,6 +31,7 @@ #include "utils/memory.h" #include "commons.h" +#include "hash.h" char httpMessageHasKeepAlive(HttpMessage message) @@ -39,7 +40,7 @@ httpMessageHasKeepAlive(HttpMessage message) size_t size; char * value; - header = httpHeaderGet(&(message->header), CSTRA("connection")); + header = hashGet(message->header, CSTRA("connection")); if (NULL == header) { return 0; diff --git a/src/http/message/has_valid_version.c b/src/http/message/has_valid_version.c index 1195995..c72e7b1 100644 --- a/src/http/message/has_valid_version.c +++ b/src/http/message/has_valid_version.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/message/header_size_get.c b/src/http/message/header_size_get.c index e46ab25..5388db5 100644 --- a/src/http/message/header_size_get.c +++ b/src/http/message/header_size_get.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,17 +28,16 @@ #include "http/response.h" #include "http/header.h" #include "interface/http_intro.h" +#include "hash.h" static size_t size; static inline void -addHeaderSize(const void * node, const VISIT which, const int depth) +addHeaderSize(const void * node) { - if (endorder == which || leaf == which) { - size += (*(HttpHeader *)node)->size; - } + size += ((HttpHeader)node)->size; } size_t @@ -46,7 +45,7 @@ httpMessageHeaderSizeGet(HttpMessage message) { size = httpIntroSizeGet(message); - twalk(message->header, addHeaderSize); + hashEach(message->header, addHeaderSize); size += 2; return size; diff --git a/src/http/message/header_to_string.c b/src/http/message/header_to_string.c index ba223ab..1b615cb 100644 --- a/src/http/message/header_to_string.c +++ b/src/http/message/header_to_string.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -27,15 +27,16 @@ #include "http/response.h" #include "http/header.h" #include "interface/http_intro.h" +#include "hash.h" static char * string; +static +inline void -addHeaderString(const void * node, const VISIT which, const int depth) +addHeaderString(const void * node) { - if (endorder == which || leaf == which) { - string += httpHeaderToString(*(HttpHeader *)node, string); - } + string += httpHeaderToString((HttpHeader)node, string); } char * @@ -45,7 +46,7 @@ httpMessageHeaderToString(HttpMessage response, char * _string) string = httpIntroToString(response, _string); - twalk(message->header, addHeaderString); + hashEach(message->header, addHeaderString); *string++ = '\r'; *string++ = '\n'; diff --git a/src/http/message/queue.c b/src/http/message/queue.c index f6c3ff5..ceb4496 100644 --- a/src/http/message/queue.c +++ b/src/http/message/queue.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/parser.c b/src/http/parser.c index d294a67..be34cce 100644 --- a/src/http/parser.c +++ b/src/http/parser.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/parser/body.c b/src/http/parser/body.c index 6901c8d..07b3162 100644 --- a/src/http/parser/body.c +++ b/src/http/parser/body.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ #include "http/parser.h" #include "cbuf.h" -#define MIN(a,b) (((a) < (b))? (a) : (b)) +#include "commons.h" size_t httpParserBody(HttpParser this, const char * buf, size_t nbuf) diff --git a/src/http/parser/header.c b/src/http/parser/header.c index 320f1cc..0944305 100644 --- a/src/http/parser/header.c +++ b/src/http/parser/header.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,6 +29,9 @@ #include "http/header.h" #include "http/parser.h" #include "http/message.h" +#include "http/request.h" +#include "hash.h" +#include "hash_value.h" void httpParserHeader( @@ -59,8 +62,43 @@ httpParserHeader( current->dbody = 0; } - httpHeaderAdd( - &(current->header), + if (0 == strncasecmp("cookie", name, nname-1)) { + HttpRequest request = (HttpRequest)this->current; + char * pair = value; + ssize_t togo = lend - value; + + while(NULL != pair && 0 < togo) { + char * key = pair; + char * eqsign; + char * val; + size_t nval; + + for (; *key == ' ' && key < lend; key++, togo--); + eqsign = memchr(key, '=', togo); + + if (NULL == eqsign) { + break; + } + + togo -= (eqsign - key); + pair = memchr(eqsign, ';', togo); + + if (NULL == pair) { + pair = (char *)lend; + } + + nval = pair-eqsign-1; + val = (0 != nval)? eqsign+1 : NULL; + + hashAdd(request->cookies, + new(HashValue, key, eqsign-key, val, nval)); + + pair++; + togo -= (pair - eqsign); + } + } + + hashAdd(current->header, new(HttpHeader, name, nname, value, lend - value)); } diff --git a/src/http/parser/new_message.c b/src/http/parser/new_message.c index 5c392fc..e265a9c 100644 --- a/src/http/parser/new_message.c +++ b/src/http/parser/new_message.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include "http/parser.h" #include "utils/http.h" diff --git a/src/http/parser/parse.c b/src/http/parser/parse.c index 9bef455..397c352 100644 --- a/src/http/parser/parse.c +++ b/src/http/parser/parse.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,11 +23,18 @@ #include #include "http/parser.h" +#include "http/header.h" #include "interface/class.h" #include "interface/http_intro.h" #include "cbuf.h" #include "stream.h" +#include "utils/memory.h" +#include "commons.h" + +#define MIN(a,b) ((a)<(b)? (a) : (b)) + + ssize_t httpParserParse(void * _this, Stream st) { @@ -92,6 +99,7 @@ httpParserParse(void * _this, Stream st) this->ourLock = FALSE; return -1; } + httpParserRequestVars(this); this->state = HTTP_MESSAGE_INTRO_DONE; break; @@ -141,6 +149,23 @@ httpParserParse(void * _this, Stream st) break; case HTTP_MESSAGE_DONE: + { + HttpHeader enc = hashGet( + this->current->header, + CSTRA("content-type")); + + /** + * do we have form data?? + */ + if (NULL != enc && 0 == strncasecmp( + "application/x-www-form-urlencoded", + enc->value[0], + MIN(sizeof("application/x-www-form-urlencoded")-1, + enc->nvalue[0]))) { + //!> then parse them... + httpParserPostVars(this); + } + /** * enqueue current request */ @@ -151,7 +176,7 @@ httpParserParse(void * _this, Stream st) * prepare for next request */ this->state = HTTP_MESSAGE_GARBAGE; - + } break; default: diff --git a/src/http/parser/post_vars.c b/src/http/parser/post_vars.c new file mode 100644 index 0000000..517133f --- /dev/null +++ b/src/http/parser/post_vars.c @@ -0,0 +1,72 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include "http/parser.h" +#include "http/request.h" +#include "hash_value.h" +#include "hash.h" +#include "interface/class.h" + +/** + * \todo this is very similar to other pair parsing + * things... key1=val1key2=val2...keyn=valn + * Generalize this!!!! + */ +void +httpParserPostVars(HttpParser this) +{ + HttpRequest request = (HttpRequest)this->current; + char * pair = this->current->body; + ssize_t togo = this->current->nbody; + + while(NULL != pair && 0 < togo) { + char * key = pair; + char * eqsign = memchr(key, '=', togo); + char * value; + size_t nvalue; + + if (NULL == eqsign) { + return; + } + + togo -= (eqsign - key); + pair = memchr(eqsign, '&', togo); + + if (NULL == pair) { + pair = &(this->current->body[this->current->nbody]); + } + + nvalue = pair-eqsign-1; + value = (0 != nvalue)? eqsign+1 : NULL; + + hashAdd(request->post, + new(HashValue, key, eqsign-key, value, nvalue)); + + pair++; + togo -= (pair - eqsign); + } +} + +// vim: set ts=4 sw=4: diff --git a/src/http/parser/request_vars.c b/src/http/parser/request_vars.c new file mode 100644 index 0000000..d0b47a1 --- /dev/null +++ b/src/http/parser/request_vars.c @@ -0,0 +1,71 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include "http/parser.h" +#include "http/request.h" +#include "hash_value.h" +#include "hash.h" +#include "interface/class.h" + +void +httpParserRequestVars(HttpParser this) +{ + HttpRequest request = (HttpRequest)this->current; + char * delim = strchr(request->uri, '?'); + + if (NULL == delim) { + delim = request->uri + strlen(request->uri); + } + + request->path = malloc(delim - request->uri + 1); + request->path[delim - request->uri] = 0; + memcpy(request->path, request->uri, delim - request->uri); + + while(NULL != delim && 0 != *delim) { + char * key = delim + 1; + char * eqsign = strchr(key, '='); + char * value; + size_t nvalue; + + if (NULL == eqsign) { + return; + } + + delim = strchr(eqsign, '&'); + + if (NULL == delim) { + delim = key + strlen(key); + } + + nvalue = delim-eqsign-1; + value = (0 != nvalue)? eqsign+1 : NULL; + + hashAdd(request->get, + new(HashValue, key, eqsign-key, value, nvalue)); + } +} + +// vim: set ts=4 sw=4: diff --git a/src/http/request.c b/src/http/request.c index 4299a27..4cd4c14 100644 --- a/src/http/request.c +++ b/src/http/request.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -56,6 +56,10 @@ httpRequestCtor(void * _this, va_list * params) this->uri[ulen] = 0; memcpy(this->uri, uri, ulen); + this->get = new(Hash); + this->post = new(Hash); + this->cookies = new(Hash); + return 0; } @@ -65,8 +69,13 @@ httpRequestDtor(void * _this) { HttpRequest this = _this; + delete(this->get); + delete(this->post); + delete(this->cookies); + FREE(this->uri); FREE(this->method); + FREE(this->path); PARENTCALL(_this, Class, dtor); } diff --git a/src/http/request/has_valid_method.c b/src/http/request/has_valid_method.c index 08a02be..c44dcc3 100644 --- a/src/http/request/has_valid_method.c +++ b/src/http/request/has_valid_method.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/response.c b/src/http/response.c index b35e7b9..a53cd0d 100644 --- a/src/http/response.c +++ b/src/http/response.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/response/304.c b/src/http/response/304.c index 28fa1aa..a5ea639 100644 --- a/src/http/response/304.c +++ b/src/http/response/304.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,6 +30,7 @@ #include "http/header.h" #include "utils/memory.h" +#include "hash.h" HttpResponse httpResponse304( @@ -47,11 +48,11 @@ httpResponse304( message->nbody = 0; message->body = NULL; - httpHeaderAdd(&(message->header), + hashAdd(message->header, new(HttpHeader, CSTRA("Content-Type"), mime, nmime)); - httpHeaderAdd(&(message->header), + hashAdd(message->header, new(HttpHeader, CSTRA("ETag"), etag, netag)); - httpHeaderAdd(&(message->header), + hashAdd(message->header, new(HttpHeader, CSTRA("Last-Modified"), mtime, nmtime)); return response; diff --git a/src/http/response/403.c b/src/http/response/403.c index ded0e4d..7256a3e 100644 --- a/src/http/response/403.c +++ b/src/http/response/403.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/response/404.c b/src/http/response/404.c index eb76df7..fd3fae3 100644 --- a/src/http/response/404.c +++ b/src/http/response/404.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -33,6 +33,7 @@ #include "http/header.h" #include "utils/memory.h" +#include "hash.h" #define RESP_DATA "\n" \ "header), + hashAdd(message->header, new(HttpHeader, CSTRA("Content-Type"), CSTRA("text/html"))); message->type = HTTP_MESSAGE_BUFFERED; diff --git a/src/http/response/asset.c b/src/http/response/asset.c index 3ee1a01..1ab4937 100644 --- a/src/http/response/asset.c +++ b/src/http/response/asset.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -36,7 +36,7 @@ #include "http/header.h" #include "utils/memory.h" - +#include "hash.h" HttpResponse httpResponseAsset( @@ -74,11 +74,11 @@ httpResponseAsset( message->handle = new(Stream, STREAM_FD, handle); message->nbody = st.st_size; - httpHeaderAdd(&(message->header), + hashAdd(message->header, new(HttpHeader, CSTRA("Content-Type"), mime, nmime)); - httpHeaderAdd(&(message->header), + hashAdd(message->header, new(HttpHeader, CSTRA("ETag"), etag, netag)); - httpHeaderAdd(&(message->header), + hashAdd(message->header, new(HttpHeader, CSTRA("Last-Modified"), mtime, nmtime)); return response; diff --git a/src/http/response/login_form.c b/src/http/response/login_form.c index c2f790b..e0e6374 100644 --- a/src/http/response/login_form.c +++ b/src/http/response/login_form.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -34,6 +34,7 @@ #include "http/header.h" #include "utils/memory.h" +#include "hash.h" #define RESP_DATA "
" \ "" \ @@ -49,7 +50,7 @@ httpResponseLoginForm() response = new(HttpResponse, "HTTP/1.1", 200, "OK"); message = (HttpMessage)response; - httpHeaderAdd(&(message->header), + hashAdd(message->header, new(HttpHeader, CSTRA("Content-Type"), CSTRA("text/html"))); message->type = HTTP_MESSAGE_BUFFERED; diff --git a/src/http/response/me.c b/src/http/response/me.c deleted file mode 100644 index 47bff72..0000000 --- a/src/http/response/me.c +++ /dev/null @@ -1,151 +0,0 @@ -/** - * \file - * - * \author Georg Hopp - * - * \copyright - * Copyright (C) 2012 Georg Hopp - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#include -#include -#include -#include -#include - -#include "class.h" -#include "interface/class.h" - -#include "http/response.h" -#include "http/message.h" -#include "http/header.h" - -#include "utils/memory.h" - - -#define RESP_DATA "\n" \ - "\n" \ - "" \ - "" \ - "My own little Web-App" \ - "" \ - "" \ - "" \ - "" \ - "" \ - "
" \ - "" \ - "Value created at:

" \ - "Next value in:
" \ - "
" \ - "Value: " \ - "
" \ - "
" \ - "

Testpage

" \ - "Welcome %s
" \ - "" \ - "
Link" \ - "
" \ - "
" \ - "" \ - "" - -HttpResponse -httpResponseMe(char * uname) -{ - HttpResponse response; - HttpMessage message; - - response = new(HttpResponse, "HTTP/1.1", 200, "OK"); - message = (HttpMessage)response; - - httpHeaderAdd(&(message->header), - new(HttpHeader, CSTRA("Content-Type"), CSTRA("text/html"))); - httpHeaderAdd(&(message->header), - new(HttpHeader, CSTRA("Set-Cookie"), CSTRA("name=Georg+Hopp"))); - httpHeaderAdd(&(message->header), - new(HttpHeader, CSTRA("Set-Cookie"), CSTRA("profession=coder"))); - - message->type = HTTP_MESSAGE_BUFFERED; - message->nbody = sizeof(RESP_DATA)-1-2+strlen(uname); //!< the two are the %s - message->body = malloc(message->nbody+1); - sprintf(message->body, RESP_DATA, uname); - //memcpy(message->body, RESP_DATA, sizeof(RESP_DATA)-1); - - return response; -} - -// vim: set ts=4 sw=4: diff --git a/src/http/response/randval.c b/src/http/response/randval.c index 059effa..d9eb0b7 100644 --- a/src/http/response/randval.c +++ b/src/http/response/randval.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -34,6 +34,7 @@ #include "http/header.h" #include "utils/memory.h" +#include "hash.h" #define RESP_DATA "{\"ctime\":%ld,\"vnext\":%ld,\"value\":\"%02d\"}" @@ -49,7 +50,7 @@ httpResponseRandval(time_t ctime, int value) response = new(HttpResponse, "HTTP/1.1", 200, "OK"); message = (HttpMessage)response; - httpHeaderAdd(&(message->header), + hashAdd(message->header, new(HttpHeader, CSTRA("Content-Type"), CSTRA("application/json"))); message->type = HTTP_MESSAGE_BUFFERED; diff --git a/src/http/response/session.c b/src/http/response/session.c new file mode 100644 index 0000000..924fa87 --- /dev/null +++ b/src/http/response/session.c @@ -0,0 +1,71 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include +#include + +#include "class.h" +#include "interface/class.h" + +#include "http/response.h" +#include "http/message.h" +#include "http/header.h" +#include "session.h" + +#include "utils/memory.h" +#include "hash.h" + +#define RESP_DATA "{\"id\":\"%lu\",\"timeout\":%d,\"timeleft\":%ld,\"username\":\"%s\"}" + +HttpResponse +httpResponseSession(Session session) +{ + char buffer[200]; + HttpResponse response; + HttpMessage message; + size_t nbuf; + + response = new(HttpResponse, "HTTP/1.1", 200, "OK"); + message = (HttpMessage)response; + + hashAdd(message->header, + new(HttpHeader, CSTRA("Content-Type"), CSTRA("application/json"))); + + message->type = HTTP_MESSAGE_BUFFERED; + + nbuf = sprintf(buffer, RESP_DATA, + (NULL != session)? session->id : 0, + (NULL != session)? SESSION_LIVETIME : 0, + (NULL != session)? session->livetime - time(NULL) : 0, + (NULL != session)? session->username : ""); + + message->nbody = nbuf; + message->body = malloc(nbuf); + memcpy(message->body, buffer, nbuf); + + return response; +} + +// vim: set ts=4 sw=4: diff --git a/src/http/worker.c b/src/http/worker.c index b4dfc1a..5b8c36d 100644 --- a/src/http/worker.c +++ b/src/http/worker.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -64,6 +64,8 @@ httpWorkerCtor(void * _this, va_list * params) this->sroot = &(this->session); + this->auth = va_arg(* params, void *); + return 0; } @@ -106,6 +108,7 @@ httpWorkerClone(void * _this, void * _base) this->writer = new(HttpWriter, base->wbuf); this->sroot = &(base->session); + this->auth = base->auth; } ssize_t httpWorkerProcess(void *, Stream); diff --git a/src/http/worker/add_common_header.c b/src/http/worker/add_common_header.c index 36fbf6d..99472cf 100644 --- a/src/http/worker/add_common_header.c +++ b/src/http/worker/add_common_header.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include @@ -5,9 +27,11 @@ #include "interface/class.h" #include "http/message.h" +#include "http/header.h" #include "http/response.h" #include "utils/memory.h" +#include "hash.h" void httpWorkerAddCommonHeader(HttpMessage request, HttpMessage response) @@ -18,17 +42,15 @@ httpWorkerAddCommonHeader(HttpMessage request, HttpMessage response) size_t nbuf; if (httpMessageHasKeepAlive(request)) { - httpHeaderAdd( - &(response->header), + hashAdd(response->header, new(HttpHeader, CSTRA("Connection"), CSTRA("Keep-Alive"))); } else { - httpHeaderAdd( - &(response->header), + hashAdd(response->header, new(HttpHeader, CSTRA("Connection"), CSTRA("Close"))); } - httpHeaderAdd(&(response->header), + hashAdd(response->header, new(HttpHeader, CSTRA("Server"), CSTRA("testserver"))); switch(((HttpResponse)response)->status) { @@ -37,14 +59,14 @@ httpWorkerAddCommonHeader(HttpMessage request, HttpMessage response) default: nbuf = sprintf(buffer, "%d", response->nbody); - httpHeaderAdd(&(response->header), + hashAdd(response->header, new(HttpHeader, CSTRA("Content-Length"), buffer, nbuf)); } t = time(NULL); tmp = localtime(&t); nbuf = strftime(buffer, sizeof(buffer), "%a, %d %b %Y %T %Z", tmp); - httpHeaderAdd(&(response->header), + hashAdd(response->header, new(HttpHeader, CSTRA("Date"), buffer, nbuf)); } diff --git a/src/http/worker/get_asset.c b/src/http/worker/get_asset.c index 180729b..36f69ce 100644 --- a/src/http/worker/get_asset.c +++ b/src/http/worker/get_asset.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include "http/header.h" @@ -6,6 +28,7 @@ #include "http/response.h" #include "utils/memory.h" +#include "hash.h" HttpMessage httpWorkerGetAsset( @@ -18,8 +41,8 @@ httpWorkerGetAsset( size_t nmatch; HttpHeader header; - header = httpHeaderGet( - &(((HttpMessage)request)->header), + header = hashGet( + ((HttpMessage)request)->header, CSTRA("If-None-Match")); if (NULL == header) { diff --git a/src/http/worker/process.c b/src/http/worker/process.c index f7a65e9..29ccbd7 100644 --- a/src/http/worker/process.c +++ b/src/http/worker/process.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,11 +24,15 @@ #include #include #include +#include +#include #include "class.h" #include "interface/class.h" +#include "interface/auth.h" #include "http/worker.h" +#include "http/header.h" #include "http/message.h" #include "http/request.h" #include "http/response.h" @@ -36,12 +40,19 @@ #include "http/parser.h" #include "session.h" #include "stream.h" +#include "hash_value.h" +#include "hash.h" +#include "credential.h" #include "utils/memory.h" +#include "hash.h" +#include "commons.h" + HttpMessage httpWorkerGetAsset(HttpRequest, const char *, const char *, size_t); void httpWorkerAddCommonHeader(HttpMessage, HttpMessage); + ssize_t httpWorkerProcess(HttpWorker this, Stream st) { @@ -56,25 +67,20 @@ httpWorkerProcess(HttpWorker this, Stream st) HttpMessage rmessage = reqq->msgs[i]; HttpRequest request = (HttpRequest)(reqq->msgs[i]); HttpMessage response = NULL; - HttpHeader cookie = httpHeaderGet( - &(rmessage->header), - CSTRA("cookie")); - - if (NULL == this->session && NULL != cookie) { - int i; - for (i=0; icvalue; i++) { - char * sidstr = strstr(cookie->value[i], "sid"); + /** + * \todo store the cookie count in the request to make a simple + * check possible to prevent this lookup if no cookies exists + * at all + */ + if (NULL == this->session) { + HashValue sidstr = hashGet(request->cookies, CSTRA("sid")); if (NULL != sidstr) { unsigned long sid; - sidstr = strchr(sidstr, '=')+1; - sid = strtoul(sidstr, NULL, 10); - + sid = strtoul((char*)(sidstr->value), NULL, 10); this->session = sessionGet(this->sroot, sid); - break; - } } } @@ -88,43 +94,92 @@ httpWorkerProcess(HttpWorker this, Stream st) } if (0 == strcmp("POST", request->method)) { - if (0 == strcmp("/me/", request->uri)) { - char * delim = memchr(rmessage->body, '=', rmessage->nbody); - char * val; - size_t nkey, nval; + if (0 == strcmp("/login/", request->path)) { char buffer[200]; size_t nbuf; - nkey = delim - rmessage->body - 1; - *delim = 0; - val = delim + 1; - nval = rmessage->nbody - (val - rmessage->body); + HashValue username = hashGet(request->post, CSTRA("username")); + HashValue password = hashGet(request->post, CSTRA("password")); + + /** + * \todo This is an application authorization not an HTTP + * authorization...anyway think about sending HTTP 401 + * messages if authorization is required and think about + * sending the credentials via header as described in the + * HTTP protocol. Most likely this will lead to hacky thing + * with javascript as i am not sure how far this is implemented + * within browsers. + * Anyway, for now we simply ignore a failed login within the + * response except that no session is initialized. We send + * an empty 200 OK + */ + if (NULL == password || NULL == username) { + response = new(HttpResponse, "HTTP/1.1", 403, "Forbidden"); + } + + if (NULL == response) { + Credential cred = new(Credential, + CRED_PASSWORD, + (char*)(username->value), username->nvalue, + (char*)(password->value), password->nvalue); + if (!authenticate(this->auth, cred)) { + response = new(HttpResponse, "HTTP/1.1", 403, "Forbidden"); + } else { + if (NULL == this->session) { this->session = sessionAdd( this->sroot, - new(Session, val, nval)); - nbuf = sprintf(buffer, "sid=%lu;Path=/", this->session->id); - - response = (HttpMessage)httpResponseMe(this->session->username); - - httpHeaderAdd( - &(response->header), - new(HttpHeader, CSTRA("Set-Cookie"), buffer, nbuf)); + new(Session, + username->value, + username->nvalue)); + } else { + this->session->username = malloc(username->nvalue + 1); + this->session->username[username->nvalue] = 0; + memcpy(this->session->username, + username->value, + username->nvalue); + } + + nbuf = sprintf(buffer, + "sid=%lu;Path=/", + this->session->id); + + response = (HttpMessage)httpResponseSession( + this->session); + + hashAdd(response->header, + new(HttpHeader, + CSTRA("Set-Cookie"), + buffer, nbuf)); + } + delete(cred); + } } } if (0 == strcmp("GET", request->method)) { - if (0 == strcmp("/login/", request->uri)) { - response = (HttpMessage)httpResponseLoginForm(); + if (0 == strcmp("/", request->path)) { + response = httpWorkerGetAsset( + request, + "./assets/html/main.html", + CSTRA("text/html")); + } + + if (0 == strcmp("/sessinfo/", request->path)) { + response = (HttpMessage)httpResponseSession(this->session); } - if (0 == strcmp("/me/", request->uri)) { - char * uname = (NULL != this->session)? this->session->username : ""; - response = (HttpMessage)httpResponseMe(uname); + if (0 == strcmp("/sess/", request->path)) { + if (NULL == this->session) { + this->session = sessionAdd( + this->sroot, + new(Session, NULL, 0)); + } + response = (HttpMessage)httpResponseSession(this->session); } - if (0 == strcmp("/randval/", request->uri)) { + if (0 == strcmp("/randval/", request->path)) { if (NULL != this->session) { response = (HttpMessage)httpResponseRandval( this->val->timestamp, @@ -134,19 +189,47 @@ httpWorkerProcess(HttpWorker this, Stream st) } } - if (0 == strcmp("/image/", request->uri)) { + if (0 == strcmp("/image/me", request->path)) { response = httpWorkerGetAsset( request, - "./assets/waldschrat.jpg", + "./assets/image/waldschrat.jpg", CSTRA("image/jpeg")); } - if (0 == strcmp("/jquery/", request->uri)) { + if (0 == strcmp("/assets/js/jquery", request->path)) { + response = httpWorkerGetAsset( + request, + "./assets/js/jquery-1.7.1.min.js", + CSTRA("text/javascript")); + } + + if (0 == strcmp("/assets/js/serverval", request->path)) { response = httpWorkerGetAsset( request, - "./assets/jquery-1.7.1.min.js", + "./assets/js/serverval.js", CSTRA("text/javascript")); } + + if (0 == strcmp("/assets/js/session", request->path)) { + response = httpWorkerGetAsset( + request, + "./assets/js/session.js", + CSTRA("text/javascript")); + } + + if (0 == strcmp("/assets/js/init", request->path)) { + response = httpWorkerGetAsset( + request, + "./assets/js/init.js", + CSTRA("text/javascript")); + } + + if (0 == strcmp("/assets/style/common", request->path)) { + response = httpWorkerGetAsset( + request, + "./assets/style/common.css", + CSTRA("text/css")); + } } if (NULL == response) { diff --git a/src/http/worker/write.c b/src/http/worker/write.c index ca1889c..1316414 100644 --- a/src/http/worker/write.c +++ b/src/http/worker/write.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/writer.c b/src/http/writer.c index 00104e9..a2f94ca 100644 --- a/src/http/writer.c +++ b/src/http/writer.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/http/writer/write.c b/src/http/writer/write.c index abf46d8..9639eea 100644 --- a/src/http/writer/write.c +++ b/src/http/writer/write.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,8 +30,8 @@ #include "cbuf.h" #include "stream.h" -#define MIN(x,y) ((x) < (y) ? (x) : (y)) -#define MAX(x,y) ((x) > (y) ? (x) : (y)) +#include "commons.h" + ssize_t httpWriterWrite(void * _this, Stream st) diff --git a/src/interface.c b/src/interface.c index 04ef14a..3131ab7 100644 --- a/src/interface.c +++ b/src/interface.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/interface/auth.c b/src/interface/auth.c new file mode 100644 index 0000000..bc2e1bc --- /dev/null +++ b/src/interface/auth.c @@ -0,0 +1,42 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "auth.h" +#include "credential.h" +#include "interface/auth.h" + +const struct interface i_Auth = { + "auth", + 1 +}; + +int +authenticate(void * auth, Credential cred) +{ + int ret; + + RETCALL(auth, Auth, authenticate, ret, cred); + + return ret; +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/class.c b/src/interface/class.c index 8327e89..2909a68 100644 --- a/src/interface/class.c +++ b/src/interface/class.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/interface/hashable.c b/src/interface/hashable.c new file mode 100644 index 0000000..7e4b280 --- /dev/null +++ b/src/interface/hashable.c @@ -0,0 +1,51 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include + +#include "class.h" +#include "interface/hashable.h" + +const struct interface i_Hashable = { + "hashable", + 2 +}; + +unsigned long +hashableGetHash(void * hashable) +{ + unsigned long ret; + + RETCALL(hashable, Hashable, getHash, ret); + + return ret; +} + +void +hashableHandleDouble(void * hashable, void * new_hashable) +{ + CALL(hashable, Hashable, handleDouble, new_hashable); +} + +// vim: set ts=4 sw=4: diff --git a/src/interface/http_intro.c b/src/interface/http_intro.c index 2f12eb0..bf14c4d 100644 --- a/src/interface/http_intro.c +++ b/src/interface/http_intro.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/interface/logger.c b/src/interface/logger.c index bb2a75e..84e3dd9 100644 --- a/src/interface/logger.c +++ b/src/interface/logger.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/interface/observer.c b/src/interface/observer.c index b2424e7..7775c6b 100644 --- a/src/interface/observer.c +++ b/src/interface/observer.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/interface/stream_reader.c b/src/interface/stream_reader.c index c23895e..ffaf49c 100644 --- a/src/interface/stream_reader.c +++ b/src/interface/stream_reader.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/interface/stream_writer.c b/src/interface/stream_writer.c index 8489a0d..d3153dc 100644 --- a/src/interface/stream_writer.c +++ b/src/interface/stream_writer.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/interface/subject.c b/src/interface/subject.c index 4ee3f4a..831553e 100644 --- a/src/interface/subject.c +++ b/src/interface/subject.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/logger.c b/src/logger.c index 859ceed..d7237fd 100644 --- a/src/logger.c +++ b/src/logger.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/logger/stderr.c b/src/logger/stderr.c index dd26e1b..104714b 100644 --- a/src/logger/stderr.c +++ b/src/logger/stderr.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/logger/syslog.c b/src/logger/syslog.c index 3667606..75fcd40 100644 --- a/src/logger/syslog.c +++ b/src/logger/syslog.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/server.c b/src/server.c index a8e7951..e01f044 100644 --- a/src/server.c +++ b/src/server.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,6 +35,10 @@ #include "utils/memory.h" + +void serverCloseConn(Server, unsigned int); + + static int serverCtor(void * _this, va_list * params) @@ -102,18 +106,9 @@ serverDtor(void * _this) int i; for (i=0; infds; i++) { - if (this->sock->handle != (this->fds)[i].fd) { - Stream st = (this->conns[(this->fds)[i].fd]).stream; - - delete((this->conns[(this->fds)[i].fd]).sock); - delete((this->conns[(this->fds)[i].fd]).worker); - - if (NULL != st && STREAM_SSL == st->type) { - SSL_shutdown((st->handle).ssl); - SSL_free((st->handle).ssl); - } - - delete((this->conns[(this->fds)[i].fd]).stream); + if (this->sock->handle != (this->fds)[i].fd && + this->sockSSL->handle != (this->fds)[i].fd) { + serverCloseConn(this, i); } } @@ -122,6 +117,7 @@ serverDtor(void * _this) delete(this->sock); delete(this->sockSSL); + SSL_CTX_free(this->ctx); ERR_free_strings(); } diff --git a/src/server/close_conn.c b/src/server/close_conn.c index dcab329..7347669 100644 --- a/src/server/close_conn.c +++ b/src/server/close_conn.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -31,16 +31,17 @@ void serverCloseConn(Server this, unsigned int i) { int fd = (this->fds)[i].fd; - Stream st = (this->conns[(this->fds)[i].fd]).stream; + Stream st = (this->conns[fd]).stream; delete((this->conns)[fd].sock); delete((this->conns)[fd].worker); if (NULL != st && STREAM_SSL == st->type) { SSL_shutdown((st->handle).ssl); + SSL_free((st->handle).ssl); } - delete((this->conns)[fd].stream); + delete(st); memset(&(this->fds[i]), 0, sizeof(struct pollfd)); } diff --git a/src/server/handle_accept.c b/src/server/handle_accept.c index 8235e30..bd10a93 100644 --- a/src/server/handle_accept.c +++ b/src/server/handle_accept.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -43,10 +43,12 @@ serverHandleAccept(Server this, unsigned int i) return -1; } + acc = socketAccept((0 == i)? this->sock : this->sockSSL, &remoteAddr); + + if (-1 != acc->handle) { switch(i) { case 0: // no SSL - acc = socketAccept(this->sock, &remoteAddr); st = new(Stream, STREAM_FD, acc->handle); break; @@ -54,7 +56,6 @@ serverHandleAccept(Server this, unsigned int i) // SSL { SSL * ssl = SSL_new(this->ctx); - acc = socketAccept(this->sockSSL, &remoteAddr); SSL_set_fd(ssl, acc->handle); SSL_accept(ssl); st = new(Stream, STREAM_SSL, ssl); @@ -65,7 +66,6 @@ serverHandleAccept(Server this, unsigned int i) break; } - if (-1 != acc->handle) { // save the socket handle (this->conns)[acc->handle].sock = acc; diff --git a/src/server/poll.c b/src/server/poll.c index 8c1d76c..77cfe07 100644 --- a/src/server/poll.c +++ b/src/server/poll.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,7 +29,6 @@ #include "utils/signalHandling.h" #define POLLFD(ptr) ((struct pollfd *)(ptr)) -#define SWAP(a, b) ((a)^=(b),(b)^=(a),(a)^=(b)) int serverPoll(Server this) { diff --git a/src/server/read.c b/src/server/read.c index 0eda967..5eb1adc 100644 --- a/src/server/read.c +++ b/src/server/read.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/server/run.c b/src/server/run.c index 950a292..6702be6 100644 --- a/src/server/run.c +++ b/src/server/run.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/server/write.c b/src/server/write.c index aa5e69a..bacbf81 100644 --- a/src/server/write.c +++ b/src/server/write.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/session.c b/src/session.c index b3b4e37..6b205d0 100644 --- a/src/session.c +++ b/src/session.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include #include @@ -22,7 +44,7 @@ sessionCtor(void * _this, va_list * params) size_t nuname = va_arg(* params, size_t); this->livetime = time(NULL) + SESSION_LIVETIME; - this->id = sdbm((unsigned char *)uname, nuname) & this->livetime; + this->id = sdbm((unsigned char *)uname, nuname) ^ this->livetime; this->username = malloc(nuname + 1); this->username[nuname] = 0; diff --git a/src/session/add.c b/src/session/add.c index 07adfa2..ae635eb 100644 --- a/src/session/add.c +++ b/src/session/add.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include "session.h" diff --git a/src/session/delete.c b/src/session/delete.c index ef560ee..f8a8ba4 100644 --- a/src/session/delete.c +++ b/src/session/delete.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include "session.h" diff --git a/src/session/get.c b/src/session/get.c index 2b622ee..ed3734e 100644 --- a/src/session/get.c +++ b/src/session/get.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include diff --git a/src/socket.c b/src/socket.c index 3603513..f3e2a27 100644 --- a/src/socket.c +++ b/src/socket.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/socket/accept.c b/src/socket/accept.c index e1ff313..a51cae5 100644 --- a/src/socket/accept.c +++ b/src/socket/accept.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/socket/connect.c b/src/socket/connect.c index 66aa19c..7e0d19b 100644 --- a/src/socket/connect.c +++ b/src/socket/connect.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/socket/listen.c b/src/socket/listen.c index 4992058..0e54132 100644 --- a/src/socket/listen.c +++ b/src/socket/listen.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stream.c b/src/stream.c index 49cf067..3168d92 100644 --- a/src/stream.c +++ b/src/stream.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include diff --git a/src/stream/read.c b/src/stream/read.c index b7bb058..9050e65 100644 --- a/src/stream/read.c +++ b/src/stream/read.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include diff --git a/src/stream/write.c b/src/stream/write.c index 475e9e9..540fade 100644 --- a/src/stream/write.c +++ b/src/stream/write.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include diff --git a/src/taskrambler.c b/src/taskrambler.c index 5125956..faf9888 100644 --- a/src/taskrambler.c +++ b/src/taskrambler.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -38,11 +38,13 @@ #include "server.h" #include "logger.h" #include "http/worker.h" +#include "auth/ldap.h" #include "interface/class.h" #include "interface/logger.h" #include "utils/signalHandling.h" +#include "utils/memory.h" #define DEFAULT_SECS 10 //#define DEFAULT_USECS (1000000 / HZ * 2) @@ -126,6 +128,7 @@ main() default: { Logger logger; + AuthLdap auth; HttpWorker worker; Server server; @@ -135,8 +138,11 @@ main() shm_unlink("/fooshm"); close(shm); - logger = new(LoggerStderr, LOGGER_DEBUG); - worker = new(HttpWorker, "testserver", value); + logger = new(LoggerSyslog, LOGGER_DEBUG); + auth = new(AuthLdap, + "ldap://localhost/", + CSTRA("ou=user,dc=yabrog,dc=weird-web-workers,dc=org")); + worker = new(HttpWorker, "testserver", value, auth); server = new(Server, logger, worker, 11212, SOMAXCONN); //daemonize(); @@ -184,6 +190,7 @@ main() if (NULL != server) delete(server); if (NULL != worker) delete(worker); + if (NULL != auth) delete(auth); if (NULL != logger) delete(logger); } diff --git a/src/utils/daemonize.c b/src/utils/daemonize.c index bdd61f5..6dd8318 100644 --- a/src/utils/daemonize.c +++ b/src/utils/daemonize.c @@ -6,7 +6,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/utils/hash.c b/src/utils/hash.c index dc6dcea..ea46085 100644 --- a/src/utils/hash.c +++ b/src/utils/hash.c @@ -1,3 +1,26 @@ +/** + * \file + * + * \author Georg Hopp + * \author Unknown (find out) + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include diff --git a/src/utils/http.c b/src/utils/http.c index 61e833b..36ab048 100644 --- a/src/utils/http.c +++ b/src/utils/http.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include #include diff --git a/src/utils/memory.c b/src/utils/memory.c index 853b613..8784759 100644 --- a/src/utils/memory.c +++ b/src/utils/memory.c @@ -1,3 +1,25 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include #include "utils/memory.h" diff --git a/src/utils/signalHandling.c b/src/utils/signalHandling.c index 4771fa0..a0f11c0 100644 --- a/src/utils/signalHandling.c +++ b/src/utils/signalHandling.c @@ -4,7 +4,7 @@ * \author Georg Hopp * * \copyright - * Copyright (C) 2012 Georg Hopp + * Copyright © 2012 Georg Hopp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by From dd9eae7e5b941c2da62051a3c72483fdd6f97c54 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Fri, 23 Mar 2012 17:50:33 +0100 Subject: [PATCH 04/22] cleanups in class and some code cleanups --- configure.ac | 5 +- include/class.h | 99 ++++++++++++++++------------------- include/http/cookie.h | 28 +++++----- include/http/writer.h | 28 +++++----- include/interface.h | 4 +- src/Makefile.am | 119 +++++++++++++++++++++--------------------- src/interface.c | 8 +-- src/interface/class.c | 2 - tests/Makefile.am | 1 - tests/mock/class.h | 4 ++ tests/runtest.h | 4 ++ 11 files changed, 150 insertions(+), 152 deletions(-) diff --git a/configure.ac b/configure.ac index 24cfc7e..f526f52 100644 --- a/configure.ac +++ b/configure.ac @@ -3,8 +3,9 @@ AC_PREREQ([2.68]) AC_INIT([taskrambler], [0.0.1], [Georg Hopp ]) -AM_INIT_AUTOMAKE -AC_COPYRIGHT([Copyright (C) 2012 Georg Hopp]) +AM_INIT_AUTOMAKE([subdir-objects]) +AM_SILENT_RULES([yes]) +AC_COPYRIGHT([Copyright © 2012 Georg Hopp]) AC_REVISION([$Revision: 0.01 $]) AC_CONFIG_SRCDIR([src/taskrambler.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/include/class.h b/include/class.h index 6f34fe9..d08e85f 100644 --- a/include/class.h +++ b/include/class.h @@ -40,9 +40,9 @@ #define CLASS_MAGIC 0xFEFE -#define CLASS(name) \ - struct c_##name; \ - typedef struct c_##name * name; \ +#define CLASS(name) \ + struct c_##name; \ + typedef struct c_##name * name; \ extern struct class * const _##name; \ struct c_##name @@ -50,75 +50,68 @@ const char _[sizeof(struct c_##parent)] #define _NULL NULL -#define CREATE_CLASS(name,_parent,...) \ - static struct class c_##name; \ - static void _classInit_(void) { \ - c_##name.parent = _##_parent; \ - c_##name.init = NULL; \ - } \ - static struct class c_##name = { \ - CLASS_MAGIC, \ - NULL, \ - sizeof(struct c_##name), \ - _classInit_, \ - INIT_IMPL(__VA_ARGS__) \ +#define CREATE_CLASS(name,_parent,...) \ + static struct class c_##name; \ + static class_ptr _classInit_(void) { \ + c_##name.parent = _##_parent; \ + c_##name.init = NULL; \ + return &c_##name; \ + } \ + static struct class c_##name = { \ + CLASS_MAGIC, \ + NULL, \ + sizeof(struct c_##name), \ + _classInit_, \ + INIT_IFACE_IMPL(__VA_ARGS__) \ }; struct class * const _##name = &c_##name -#define GET_CLASS(object) (*(class_ptr *)((object) - sizeof(void*))) +#define INIT_CLASS(class) ((class)->init? (class)->init() : (class)) +#define GET_CLASS(object) (INIT_CLASS(*(class_ptr *)((object) - sizeof(void*)))) #define IFACE_GET(class,iface) (interfaceGet(&((class)->impl),(iface))) -#define IFACE_EXISTS(class,iface) (NULL != IFACE_GET((class),(iface))) +#define HAS_PARENT(class) (NULL != ((class)->parent) && INIT_CLASS((class)->parent)) /** * \todo actually i use gcc feature ## for variadoc... think about * a way to make this standard. */ -#define _CALL(object,_iface,method,...) \ - do { \ - class_ptr class = GET_CLASS((object)); \ - if (class->init) class->init(); \ - iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ - while ((NULL == iface || NULL == iface->method) && HAS_PARENT(class)) { \ - class = class->parent; \ - if (class->init) class->init(); \ - iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ - }; \ - assert(NULL != iface->method); \ +#define _CALL(_class,_iface,method,...) \ + do { \ + class_ptr class = _class; \ + iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ + while ((NULL == iface || NULL == iface->method) && HAS_PARENT(class)) { \ + class = class->parent; \ + iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ + } \ + assert(NULL != iface->method); \ } while(0) -#define CALL(object,_iface,method,...) \ - do { \ - struct i_##_iface * iface; \ - _CALL(object, _iface, method, ##__VA_ARGS__); \ - iface->method(object, ##__VA_ARGS__); \ +#define CALL(object,_iface,method,...) \ + do { \ + struct i_##_iface * iface; \ + _CALL(GET_CLASS(object), _iface, method, ##__VA_ARGS__); \ + iface->method(object, ##__VA_ARGS__); \ } while(0) -#define RETCALL(object,_iface,method,ret,...) \ - do { \ - struct i_##_iface * iface; \ - _CALL(object, _iface, method, ##__VA_ARGS__); \ - ret = iface->method(object, ##__VA_ARGS__); \ +#define RETCALL(object,_iface,method,ret,...) \ + do { \ + struct i_##_iface * iface; \ + _CALL(GET_CLASS(object), _iface, method, ##__VA_ARGS__); \ + ret = iface->method(object, ##__VA_ARGS__); \ } while(0) -#define PARENTCALL(object,_iface,method,...) \ - do { \ - struct i_##_iface * iface; \ - class_ptr class = GET_CLASS((object)); \ - if (class->init) class->init(); \ - assert(HAS_PARENT(class)); \ - class = class->parent; \ - if (class->init) class->init(); \ - iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ - assert(NULL != iface->method); \ - iface->method(object, ##__VA_ARGS__); \ +#define PARENTCALL(object,_iface,method,...) \ + do { \ + struct i_##_iface * iface; \ + class_ptr pc_class = GET_CLASS((object)); \ + assert(HAS_PARENT(pc_class)); \ + _CALL(pc_class->parent, _iface, method, ##__VA_ARGS__); \ + iface->method(object, ##__VA_ARGS__); \ } while(0) -#define HAS_PARENT(class) (NULL != ((class)->parent)) - -typedef void (* fptr_classInit)(void); - struct class; typedef struct class * class_ptr; +typedef class_ptr (* fptr_classInit)(void); struct class { const int magic; class_ptr parent; diff --git a/include/http/cookie.h b/include/http/cookie.h index 358be49..18e52fd 100644 --- a/include/http/cookie.h +++ b/include/http/cookie.h @@ -4,20 +4,20 @@ * \author Georg Hopp * * \copyright - * - Copyright © 2012 Georg Hopp - * - - * - This program is free software: you can redistribute it and/or modify - * - it under the terms of the GNU General Public License as published by - * - the Free Software Foundation, either version 3 of the License, or - * - (at your option) any later version. - * - - * - This program is distributed in the hope that it will be useful, - * - but WITHOUT ANY WARRANTY; without even the implied warranty of - * - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * - GNU General Public License for more details. - * - - * - You should have received a copy of the GNU General Public License - * - along with this program. If not, see . + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ #ifndef __HTTP_COOKIE_H__ diff --git a/include/http/writer.h b/include/http/writer.h index 3fb91bb..c6b1470 100644 --- a/include/http/writer.h +++ b/include/http/writer.h @@ -5,20 +5,20 @@ * \author Georg Hopp * * \copyright - * - Copyright © 2012 Georg Hopp - * - - * - This program is free software: you can redistribute it and/or modify - * - it under the terms of the GNU General Public License as published by - * - the Free Software Foundation, either version 3 of the License, or - * - (at your option) any later version. - * - - * - This program is distributed in the hope that it will be useful, - * - but WITHOUT ANY WARRANTY; without even the implied warranty of - * - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * - GNU General Public License for more details. - * - - * - You should have received a copy of the GNU General Public License - * - along with this program. If not, see . + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ #ifndef __HTTP_WRITER_H__ diff --git a/include/interface.h b/include/interface.h index bebe14c..34c3fcb 100644 --- a/include/interface.h +++ b/include/interface.h @@ -36,7 +36,7 @@ static const struct i_##name i_##name##_impl = {&i_##name,__VA_ARGS__} #define NUMARGS(...) (sizeof((const void*[]){__VA_ARGS__})/sizeof(void*)) -#define INIT_IMPL(...) {NUMARGS(__VA_ARGS__), 0, {__VA_ARGS__}} +#define INIT_IFACE_IMPL(...) {NUMARGS(__VA_ARGS__), 0, {__VA_ARGS__}} struct interface { @@ -52,7 +52,7 @@ struct iface_impl { }; typedef struct iface_impl * iface_impl_ptr; -extern struct interface * interfaceGet(iface_impl_ptr, const iface_ptr); +extern iface_ptr interfaceGet(iface_impl_ptr, const iface_ptr); #endif // __INTERFACE_H__ diff --git a/src/Makefile.am b/src/Makefile.am index 3abd3d2..de4d510 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,71 +1,70 @@ ACLOCAL_AMFLAGS = -I m4 -AUTOMAKE_OPTIONS = subdir-objects -IFACE = interface/class.c interface/stream_reader.c interface/logger.c \ - interface/stream_writer.c interface/http_intro.c \ - interface/subject.c interface/observer.c interface.c -SOCKET = socket.c socket/accept.c socket/connect.c socket/listen.c -STREAM = stream.c stream/read.c stream/write.c -HASH = hash.c hash/add.c hash/get.c hash/delete.c \ - hash/each.c interface/hashable.c hash_value.c -SERVER = server.c server/run.c server/close_conn.c server/poll.c \ - server/handle_accept.c server/read.c server/write.c -LOGGER = logger.c logger/stderr.c logger/syslog.c -CB = cbuf.c cbuf/read.c cbuf/write.c \ - cbuf/get_line.c cbuf/set_data.c cbuf/get_data.c \ - cbuf/addr_index.c cbuf/get_free.c cbuf/get_read.c cbuf/get_write.c \ - cbuf/inc_read.c cbuf/inc_write.c cbuf/is_empty.c cbuf/memchr.c \ - cbuf/skip_non_alpha.c cbuf/is_locked.c cbuf/lock.c cbuf/release.c \ - cbuf/empty.c -MSG = http/message.c \ - http/message/has_keep_alive.c \ - http/message/header_size_get.c \ - http/message/header_to_string.c \ - http/message/get_version.c \ - http/message/has_valid_version.c -MSGQ = http/message/queue.c -REQ = http/request.c \ - http/request/has_valid_method.c -RESP = http/response.c \ - http/response/304.c \ - http/response/404.c \ - http/response/403.c \ - http/response/login_form.c \ - http/response/asset.c \ - http/response/randval.c \ - http/response/session.c -PARSER = http/parser.c \ - http/parser/parse.c \ - http/parser/new_message.c \ - http/parser/header.c \ - http/parser/body.c \ - http/parser/request_vars.c \ - http/parser/post_vars.c -WRITER = http/writer.c \ - http/writer/write.c -WORKER = http/worker.c \ - http/worker/process.c \ - http/worker/write.c \ - http/worker/get_asset.c \ - http/worker/add_common_header.c -HEADER = http/header.c \ - http/header/to_string.c +IFACE = interface/class.c interface/stream_reader.c interface/logger.c \ + interface/stream_writer.c interface/http_intro.c \ + interface/subject.c interface/observer.c interface.c +SOCKET = socket.c socket/accept.c socket/connect.c socket/listen.c +STREAM = stream.c stream/read.c stream/write.c +HASH = hash.c hash/add.c hash/get.c hash/delete.c \ + hash/each.c interface/hashable.c hash_value.c +SERVER = server.c server/run.c server/close_conn.c server/poll.c \ + server/handle_accept.c server/read.c server/write.c +LOGGER = logger.c logger/stderr.c logger/syslog.c +CB = cbuf.c cbuf/read.c cbuf/write.c \ + cbuf/get_line.c cbuf/set_data.c cbuf/get_data.c \ + cbuf/addr_index.c cbuf/get_free.c cbuf/get_read.c cbuf/get_write.c \ + cbuf/inc_read.c cbuf/inc_write.c cbuf/is_empty.c cbuf/memchr.c \ + cbuf/skip_non_alpha.c cbuf/is_locked.c cbuf/lock.c cbuf/release.c \ + cbuf/empty.c +MSG = http/message.c \ + http/message/has_keep_alive.c \ + http/message/header_size_get.c \ + http/message/header_to_string.c \ + http/message/get_version.c \ + http/message/has_valid_version.c +MSGQ = http/message/queue.c +REQ = http/request.c \ + http/request/has_valid_method.c +RESP = http/response.c \ + http/response/304.c \ + http/response/404.c \ + http/response/403.c \ + http/response/login_form.c \ + http/response/asset.c \ + http/response/randval.c \ + http/response/session.c +PARSER = http/parser.c \ + http/parser/parse.c \ + http/parser/new_message.c \ + http/parser/header.c \ + http/parser/body.c \ + http/parser/request_vars.c \ + http/parser/post_vars.c +WRITER = http/writer.c \ + http/writer/write.c +WORKER = http/worker.c \ + http/worker/process.c \ + http/worker/write.c \ + http/worker/get_asset.c \ + http/worker/add_common_header.c +HEADER = http/header.c \ + http/header/to_string.c SESSION = session.c session/add.c session/get.c session/delete.c -UTILS = utils/hash.c \ - utils/memory.c \ - utils/http.c \ - utils/daemonize.c \ - utils/signalHandling.c -AUTH = interface/auth.c auth/ldap.c credential.c +UTILS = utils/hash.c \ + utils/memory.c \ + utils/http.c \ + utils/daemonize.c \ + utils/signalHandling.c +AUTH = interface/auth.c auth/ldap.c credential.c AM_CFLAGS = -Wall -I ../include/ -bin_PROGRAMS = webgameserver +bin_PROGRAMS = taskrambler -webgameserver_SOURCES = webgameserver.c \ +taskrambler_SOURCES = taskrambler.c \ $(IFACE) $(SOCKET) $(SERVER) $(LOGGER) $(MSG) $(REQ) \ $(WRITER) $(RESP) $(HEADER) $(PARSER) $(WORKER) $(CB) \ $(UTILS) $(MSGQ) $(SESSION) $(STREAM) $(HASH) $(AUTH) -webgameserver_CFLAGS = -Wall -I ../include/ -webgameserver_LDFLAGS = -lrt -lssl -lldap +taskrambler_CFLAGS = -Wall -I ../include/ +taskrambler_LDFLAGS = -lrt -lssl -lldap diff --git a/src/interface.c b/src/interface.c index 3131ab7..9d4d6b9 100644 --- a/src/interface.c +++ b/src/interface.c @@ -40,25 +40,25 @@ comp(const void * _a, const void * _b) * this one is important in selector functions to get the correct interface * implementation of a class. */ -struct interface * +iface_ptr interfaceGet(iface_impl_ptr iface_impl, const iface_ptr _iface) { const iface_ptr * iface = &_iface; - void * dummy; + iface_ptr * found; if (! iface_impl->simpl) { qsort((void**)(iface_impl->impl), iface_impl->nimpl, sizeof(iface_ptr), comp); iface_impl->simpl=TRUE; } - dummy = bsearch( + found = bsearch( &iface, iface_impl->impl, iface_impl->nimpl, sizeof(iface_ptr), comp); - return dummy? *(struct interface **)dummy : dummy; + return found? *found : (iface_ptr)NULL; } // vim: set ts=4 sw=4: diff --git a/src/interface/class.c b/src/interface/class.c index 2909a68..cfdcf83 100644 --- a/src/interface/class.c +++ b/src/interface/class.c @@ -40,8 +40,6 @@ classNew(class_ptr class, ...) va_list params; int ret; - if (class->init) class->init(); - * (class_ptr *)object = class; object += sizeof(void*); diff --git a/tests/Makefile.am b/tests/Makefile.am index d3c0391..f2906f6 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,5 +1,4 @@ ACLOCAL_AMFLAGS = -I m4 -AUTOMAKE_OPTIONS = subdir-objects TESTS_ENVIRONMENT = valgrind --error-exitcode=123 --leak-check=full --quiet TESTS = cclassTest loggerTest socketTest serverTest diff --git a/tests/mock/class.h b/tests/mock/class.h index e439bb1..83c810c 100644 --- a/tests/mock/class.h +++ b/tests/mock/class.h @@ -1,6 +1,10 @@ /** * \file * mock/class.h: definitions for my mock to test my oop stuff + * + * \author Georg Hopp + * + * \copyright * Copyright (C) 2011 Georg Hopp * * This program is free software: you can redistribute it and/or modify diff --git a/tests/runtest.h b/tests/runtest.h index 7b15945..e62e562 100644 --- a/tests/runtest.h +++ b/tests/runtest.h @@ -1,6 +1,10 @@ /** * \file * runtest.h: assertions and other definitions for all my tests + * + * \author Georg Hopp + * + * \copyright * Copyright (C) 2011 Georg Hopp * * This program is free software: you can redistribute it and/or modify From dd9d49d5a99516957618f155ce1ecfd51678c586 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Fri, 23 Mar 2012 18:43:15 +0100 Subject: [PATCH 05/22] made all class and interface basics to a small lib. This is the first one. All other parts will become libs too. Right now these are only static libs but this way its easy to split them out if needed --- configure.ac | 2 +- include/class.h | 121 +------------------------ include/class/class.h | 125 ++++++++++++++++++++++++++ include/{ => class}/interface.h | 6 +- include/{ => class}/interface/class.h | 10 +-- include/interface/auth.h | 2 +- include/interface/hashable.h | 2 +- include/interface/logger.h | 2 +- src/Makefile.am | 8 +- src/auth/ldap.c | 1 - src/cbuf.c | 1 - src/class/Makefile.am | 8 ++ src/{ => class}/interface.c | 2 +- src/{ => class}/interface/class.c | 4 +- src/class/libclass.a | Bin 0 -> 17066 bytes src/credential.c | 1 - src/hash.c | 1 - src/hash/add.c | 2 +- src/hash_value.c | 2 +- src/http/cookie.c | 2 +- src/http/header.c | 1 - src/http/message.c | 1 - src/http/message/queue.c | 1 - src/http/parser.c | 1 - src/http/parser/header.c | 1 - src/http/parser/parse.c | 2 +- src/http/parser/post_vars.c | 2 +- src/http/parser/request_vars.c | 2 +- src/http/request.c | 1 - src/http/response.c | 1 - src/http/response/304.c | 1 - src/http/response/403.c | 1 - src/http/response/404.c | 1 - src/http/response/asset.c | 1 - src/http/response/login_form.c | 1 - src/http/response/randval.c | 1 - src/http/response/session.c | 1 - src/http/worker.c | 1 - src/http/worker/add_common_header.c | 1 - src/http/worker/process.c | 1 - src/http/writer.c | 1 - src/http/writer/write.c | 1 - src/logger.c | 2 +- src/server.c | 1 - src/server/close_conn.c | 2 +- src/server/handle_accept.c | 2 +- src/session.c | 1 - src/session/add.c | 2 +- src/session/delete.c | 2 +- src/socket.c | 2 +- src/socket/accept.c | 2 +- src/socket/connect.c | 2 +- src/socket/listen.c | 2 +- src/stream.c | 1 - src/taskrambler.c | 2 +- src/utils/http.c | 2 +- 56 files changed, 173 insertions(+), 179 deletions(-) create mode 100644 include/class/class.h rename include/{ => class}/interface.h (95%) rename include/{ => class}/interface/class.h (90%) create mode 100644 src/class/Makefile.am rename src/{ => class}/interface.c (98%) rename src/{ => class}/interface/class.c (96%) create mode 100644 src/class/libclass.a diff --git a/configure.ac b/configure.ac index f526f52..1cc1e30 100644 --- a/configure.ac +++ b/configure.ac @@ -38,5 +38,5 @@ AC_TYPE_SIZE_T #AC_FUNC_MALLOC AC_CHECK_FUNCS([memset]) -AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile src/class/Makefile tests/Makefile]) AC_OUTPUT diff --git a/include/class.h b/include/class.h index d08e85f..6c07bbc 100644 --- a/include/class.h +++ b/include/class.h @@ -1,124 +1,9 @@ -/** - * \file - * My own class implementation for C. It combines a data structure - * with a set of dynamically linked methods defined by an interface. A - * dynamically linked method will be called via a selector method which in - * turn gets the implementation stored in the class. - * - * \author Georg Hopp - * - * \copyright - * Copyright © 2012 Georg Hopp - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - #ifndef __CLASS_H__ #define __CLASS_H__ -#include -#include -#include -#include - -#include "interface.h" - -#ifndef _ISOC99_SOURCE -#define _ISOC99_SOURCE -#endif - -#define CLASS_MAGIC 0xFEFE - -#define CLASS(name) \ - struct c_##name; \ - typedef struct c_##name * name; \ - extern struct class * const _##name; \ - struct c_##name - -#define EXTENDS(parent) \ - const char _[sizeof(struct c_##parent)] - -#define _NULL NULL -#define CREATE_CLASS(name,_parent,...) \ - static struct class c_##name; \ - static class_ptr _classInit_(void) { \ - c_##name.parent = _##_parent; \ - c_##name.init = NULL; \ - return &c_##name; \ - } \ - static struct class c_##name = { \ - CLASS_MAGIC, \ - NULL, \ - sizeof(struct c_##name), \ - _classInit_, \ - INIT_IFACE_IMPL(__VA_ARGS__) \ - }; struct class * const _##name = &c_##name - -#define INIT_CLASS(class) ((class)->init? (class)->init() : (class)) -#define GET_CLASS(object) (INIT_CLASS(*(class_ptr *)((object) - sizeof(void*)))) -#define IFACE_GET(class,iface) (interfaceGet(&((class)->impl),(iface))) -#define HAS_PARENT(class) (NULL != ((class)->parent) && INIT_CLASS((class)->parent)) - -/** - * \todo actually i use gcc feature ## for variadoc... think about - * a way to make this standard. - */ -#define _CALL(_class,_iface,method,...) \ - do { \ - class_ptr class = _class; \ - iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ - while ((NULL == iface || NULL == iface->method) && HAS_PARENT(class)) { \ - class = class->parent; \ - iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ - } \ - assert(NULL != iface->method); \ - } while(0) - -#define CALL(object,_iface,method,...) \ - do { \ - struct i_##_iface * iface; \ - _CALL(GET_CLASS(object), _iface, method, ##__VA_ARGS__); \ - iface->method(object, ##__VA_ARGS__); \ - } while(0) - -#define RETCALL(object,_iface,method,ret,...) \ - do { \ - struct i_##_iface * iface; \ - _CALL(GET_CLASS(object), _iface, method, ##__VA_ARGS__); \ - ret = iface->method(object, ##__VA_ARGS__); \ - } while(0) - -#define PARENTCALL(object,_iface,method,...) \ - do { \ - struct i_##_iface * iface; \ - class_ptr pc_class = GET_CLASS((object)); \ - assert(HAS_PARENT(pc_class)); \ - _CALL(pc_class->parent, _iface, method, ##__VA_ARGS__); \ - iface->method(object, ##__VA_ARGS__); \ - } while(0) - - -struct class; -typedef struct class * class_ptr; -typedef class_ptr (* fptr_classInit)(void); -struct class { - const int magic; - class_ptr parent; - size_t object_size; - fptr_classInit init; - struct iface_impl impl; -}; +#include "class/class.h" +#include "class/interface.h" +#include "class/interface/class.h" #endif // __CLASS_H__ diff --git a/include/class/class.h b/include/class/class.h new file mode 100644 index 0000000..1b6fd79 --- /dev/null +++ b/include/class/class.h @@ -0,0 +1,125 @@ +/** + * \file + * My own class implementation for C. It combines a data structure + * with a set of dynamically linked methods defined by an interface. A + * dynamically linked method will be called via a selector method which in + * turn gets the implementation stored in the class. + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __CLASS_CLASS_H__ +#define __CLASS_CLASS_H__ + +#include +#include +#include +#include + +#include "class/interface.h" + +#ifndef _ISOC99_SOURCE +#define _ISOC99_SOURCE +#endif + +#define CLASS_MAGIC 0xFEFE + +#define CLASS(name) \ + struct c_##name; \ + typedef struct c_##name * name; \ + extern struct class * const _##name; \ + struct c_##name + +#define EXTENDS(parent) \ + const char _[sizeof(struct c_##parent)] + +#define _NULL NULL +#define CREATE_CLASS(name,_parent,...) \ + static struct class c_##name; \ + static class_ptr _classInit_(void) { \ + c_##name.parent = _##_parent; \ + c_##name.init = NULL; \ + return &c_##name; \ + } \ + static struct class c_##name = { \ + CLASS_MAGIC, \ + NULL, \ + sizeof(struct c_##name), \ + _classInit_, \ + INIT_IFACE_IMPL(__VA_ARGS__) \ + }; struct class * const _##name = &c_##name + +#define INIT_CLASS(class) ((class)->init? (class)->init() : (class)) +#define GET_CLASS(object) (INIT_CLASS(*(class_ptr *)((object) - sizeof(void*)))) +#define IFACE_GET(class,iface) (interfaceGet(&((class)->impl),(iface))) +#define HAS_PARENT(class) (NULL != ((class)->parent) && INIT_CLASS((class)->parent)) + +/** + * \todo actually i use gcc feature ## for variadoc... think about + * a way to make this standard. + */ +#define _CALL(_class,_iface,method,...) \ + do { \ + class_ptr class = _class; \ + iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ + while ((NULL == iface || NULL == iface->method) && HAS_PARENT(class)) { \ + class = class->parent; \ + iface = (struct i_##_iface *)IFACE_GET(class, &i_##_iface); \ + } \ + assert(NULL != iface->method); \ + } while(0) + +#define CALL(object,_iface,method,...) \ + do { \ + struct i_##_iface * iface; \ + _CALL(GET_CLASS(object), _iface, method, ##__VA_ARGS__); \ + iface->method(object, ##__VA_ARGS__); \ + } while(0) + +#define RETCALL(object,_iface,method,ret,...) \ + do { \ + struct i_##_iface * iface; \ + _CALL(GET_CLASS(object), _iface, method, ##__VA_ARGS__); \ + ret = iface->method(object, ##__VA_ARGS__); \ + } while(0) + +#define PARENTCALL(object,_iface,method,...) \ + do { \ + struct i_##_iface * iface; \ + class_ptr pc_class = GET_CLASS((object)); \ + assert(HAS_PARENT(pc_class)); \ + _CALL(pc_class->parent, _iface, method, ##__VA_ARGS__); \ + iface->method(object, ##__VA_ARGS__); \ + } while(0) + + +struct class; +typedef struct class * class_ptr; +typedef class_ptr (* fptr_classInit)(void); +struct class { + const int magic; + class_ptr parent; + size_t object_size; + fptr_classInit init; + struct iface_impl impl; +}; + +#endif // __CLASS_CLASS_H__ + +// vim: set ts=4 sw=4: diff --git a/include/interface.h b/include/class/interface.h similarity index 95% rename from include/interface.h rename to include/class/interface.h index 34c3fcb..941f43c 100644 --- a/include/interface.h +++ b/include/class/interface.h @@ -24,8 +24,8 @@ * along with this program. If not, see . */ -#ifndef __INTERFACE_H__ -#define __INTERFACE_H__ +#ifndef __CLASS_INTERFACE_H__ +#define __CLASS_INTERFACE_H__ #include @@ -54,6 +54,6 @@ typedef struct iface_impl * iface_impl_ptr; extern iface_ptr interfaceGet(iface_impl_ptr, const iface_ptr); -#endif // __INTERFACE_H__ +#endif // __CLASS_INTERFACE_H__ // vim: set ts=4 sw=4: diff --git a/include/interface/class.h b/include/class/interface/class.h similarity index 90% rename from include/interface/class.h rename to include/class/interface/class.h index b0fd2ad..98cbdbd 100644 --- a/include/interface/class.h +++ b/include/class/interface/class.h @@ -23,13 +23,13 @@ * along with this program. If not, see . */ -#ifndef __INTERFACE_CLASS_H__ -#define __INTERFACE_CLASS_H__ +#ifndef __CLASS_INTERFACE_CLASS_H__ +#define __CLASS_INTERFACE_CLASS_H__ #include -#include "class.h" -#include "interface.h" +#include "class/class.h" +#include "class/interface.h" typedef int (* fptr_ctor)(void *, va_list *); typedef void (* fptr_dtor)(void *); @@ -52,6 +52,6 @@ extern void * classClone(void *); #define delete(object) classDelete((void **)&(object)) #define clone(object) classClone((void *)(object)) -#endif // __INTERFACE_CLASS_H__ +#endif // __CLASS_INTERFACE_CLASS_H__ // vim: set ts=4 sw=4: diff --git a/include/interface/auth.h b/include/interface/auth.h index ed552e7..ec55000 100644 --- a/include/interface/auth.h +++ b/include/interface/auth.h @@ -30,7 +30,7 @@ #include -#include "interface.h" +#include "class.h" #include "credential.h" typedef int (* fptr_authenticate)(void *, Credential); diff --git a/include/interface/hashable.h b/include/interface/hashable.h index 18b9ae3..a4dbc49 100644 --- a/include/interface/hashable.h +++ b/include/interface/hashable.h @@ -24,7 +24,7 @@ #ifndef __INTERFACE_HASHABLE_H__ #define __INTERFACE_HASHABLE_H__ -#include "interface.h" +#include "class.h" typedef unsigned long (* fptr_hashableGetHash)(void *); typedef void (* fptr_hashableHandleDouble)(void *, void *); diff --git a/include/interface/logger.h b/include/interface/logger.h index c55876c..9f02f02 100644 --- a/include/interface/logger.h +++ b/include/interface/logger.h @@ -26,7 +26,7 @@ #include -#include "interface.h" +#include "class.h" #include "logger.h" typedef void (* fptr_log)(void *, logger_level, const char * const); diff --git a/src/Makefile.am b/src/Makefile.am index de4d510..3386774 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,8 +1,8 @@ ACLOCAL_AMFLAGS = -I m4 -IFACE = interface/class.c interface/stream_reader.c interface/logger.c \ +IFACE = interface/stream_reader.c interface/logger.c \ interface/stream_writer.c interface/http_intro.c \ - interface/subject.c interface/observer.c interface.c + interface/subject.c interface/observer.c SOCKET = socket.c socket/accept.c socket/connect.c socket/listen.c STREAM = stream.c stream/read.c stream/write.c HASH = hash.c hash/add.c hash/get.c hash/delete.c \ @@ -67,4 +67,6 @@ taskrambler_SOURCES = taskrambler.c \ $(WRITER) $(RESP) $(HEADER) $(PARSER) $(WORKER) $(CB) \ $(UTILS) $(MSGQ) $(SESSION) $(STREAM) $(HASH) $(AUTH) taskrambler_CFLAGS = -Wall -I ../include/ -taskrambler_LDFLAGS = -lrt -lssl -lldap +taskrambler_LDFLAGS = -L./class -lclass -lrt -lssl -lldap + +SUBDIRS = class diff --git a/src/auth/ldap.c b/src/auth/ldap.c index fb7bf0e..28f37d2 100644 --- a/src/auth/ldap.c +++ b/src/auth/ldap.c @@ -29,7 +29,6 @@ #include "auth/ldap.h" #include "class.h" #include "credential.h" -#include "interface/class.h" #include "interface/auth.h" #include "utils/memory.h" diff --git a/src/cbuf.c b/src/cbuf.c index fdf77db..0ee216d 100644 --- a/src/cbuf.c +++ b/src/cbuf.c @@ -34,7 +34,6 @@ #include #include "class.h" -#include "interface/class.h" #include "utils/memory.h" #include "cbuf.h" diff --git a/src/class/Makefile.am b/src/class/Makefile.am new file mode 100644 index 0000000..c457e13 --- /dev/null +++ b/src/class/Makefile.am @@ -0,0 +1,8 @@ +ACLOCAL_AMFLAGS = -I m4 + +AM_CFLAGS = -Wall -I ../include/ + +noinst_LIBRARIES = libclass.a + +libclass_a_SOURCES = interface.c interface/class.c +libclass_a_CFLAGS = -Wall -I ../../include/ diff --git a/src/interface.c b/src/class/interface.c similarity index 98% rename from src/interface.c rename to src/class/interface.c index 9d4d6b9..661561b 100644 --- a/src/interface.c +++ b/src/class/interface.c @@ -23,7 +23,7 @@ #include #include -#include "interface.h" +#include "class/interface.h" #include "commons.h" static diff --git a/src/interface/class.c b/src/class/interface/class.c similarity index 96% rename from src/interface/class.c rename to src/class/interface/class.c index cfdcf83..0113902 100644 --- a/src/interface/class.c +++ b/src/class/interface/class.c @@ -24,8 +24,8 @@ #include #include -#include "class.h" -#include "interface/class.h" +#include "class/class.h" +#include "class/interface/class.h" const struct interface i_Class = { diff --git a/src/class/libclass.a b/src/class/libclass.a new file mode 100644 index 0000000000000000000000000000000000000000..0892538f9b6bf8d214f987289b3e4672f2a91c29 GIT binary patch literal 17066 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 DkHC$E literal 0 HcmV?d00001 diff --git a/src/credential.c b/src/credential.c index 873877b..663cfe2 100644 --- a/src/credential.c +++ b/src/credential.c @@ -27,7 +27,6 @@ #include "credential.h" #include "class.h" -#include "interface/class.h" #include "utils/memory.h" diff --git a/src/hash.c b/src/hash.c index 8956144..bb2fb7a 100644 --- a/src/hash.c +++ b/src/hash.c @@ -27,7 +27,6 @@ #include "hash.h" #include "class.h" -#include "interface/class.h" static int diff --git a/src/hash/add.c b/src/hash/add.c index 5226862..32e9101 100644 --- a/src/hash/add.c +++ b/src/hash/add.c @@ -24,7 +24,7 @@ #include "hash.h" #include "interface/hashable.h" -#include "interface/class.h" +#include "class.h" static inline diff --git a/src/hash_value.c b/src/hash_value.c index c69a169..0df0ecb 100644 --- a/src/hash_value.c +++ b/src/hash_value.c @@ -29,7 +29,7 @@ #include "utils/hash.h" #include "utils/memory.h" #include "commons.h" -#include "interface/class.h" +#include "class.h" #include "interface/hashable.h" static diff --git a/src/http/cookie.c b/src/http/cookie.c index 412f463..29ca5a7 100644 --- a/src/http/cookie.c +++ b/src/http/cookie.c @@ -26,7 +26,7 @@ #include #include "cookie.h" -#include "interface/class.h" +#include "class.h" #include "interface/hashable" #include "utils/hash.h" diff --git a/src/http/header.c b/src/http/header.c index 999b878..8067569 100644 --- a/src/http/header.c +++ b/src/http/header.c @@ -25,7 +25,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/header.h" #include "interface/hashable.h" diff --git a/src/http/message.c b/src/http/message.c index 611f9de..663d710 100644 --- a/src/http/message.c +++ b/src/http/message.c @@ -31,7 +31,6 @@ #include #include "class.h" -#include "interface/class.h" #include "hash.h" #include "http/message.h" #include "utils/memory.h" diff --git a/src/http/message/queue.c b/src/http/message/queue.c index ceb4496..72dcf34 100644 --- a/src/http/message/queue.c +++ b/src/http/message/queue.c @@ -23,7 +23,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/message/queue.h" diff --git a/src/http/parser.c b/src/http/parser.c index be34cce..28e57c8 100644 --- a/src/http/parser.c +++ b/src/http/parser.c @@ -25,7 +25,6 @@ #include #include "class.h" -#include "interface/class.h" #include "interface/stream_reader.h" #include "http/parser.h" diff --git a/src/http/parser/header.c b/src/http/parser/header.c index 0944305..4f226f3 100644 --- a/src/http/parser/header.c +++ b/src/http/parser/header.c @@ -25,7 +25,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/header.h" #include "http/parser.h" #include "http/message.h" diff --git a/src/http/parser/parse.c b/src/http/parser/parse.c index 397c352..f392ede 100644 --- a/src/http/parser/parse.c +++ b/src/http/parser/parse.c @@ -24,7 +24,7 @@ #include "http/parser.h" #include "http/header.h" -#include "interface/class.h" +#include "class.h" #include "interface/http_intro.h" #include "cbuf.h" #include "stream.h" diff --git a/src/http/parser/post_vars.c b/src/http/parser/post_vars.c index 517133f..fe01658 100644 --- a/src/http/parser/post_vars.c +++ b/src/http/parser/post_vars.c @@ -27,7 +27,7 @@ #include "http/request.h" #include "hash_value.h" #include "hash.h" -#include "interface/class.h" +#include "class.h" /** * \todo this is very similar to other pair parsing diff --git a/src/http/parser/request_vars.c b/src/http/parser/request_vars.c index d0b47a1..cb82a08 100644 --- a/src/http/parser/request_vars.c +++ b/src/http/parser/request_vars.c @@ -28,7 +28,7 @@ #include "http/request.h" #include "hash_value.h" #include "hash.h" -#include "interface/class.h" +#include "class.h" void httpParserRequestVars(HttpParser this) diff --git a/src/http/request.c b/src/http/request.c index 4cd4c14..097a62e 100644 --- a/src/http/request.c +++ b/src/http/request.c @@ -26,7 +26,6 @@ #include #include "class.h" -#include "interface/class.h" #include "interface/http_intro.h" #include "http/request.h" diff --git a/src/http/response.c b/src/http/response.c index a53cd0d..d1b9d45 100644 --- a/src/http/response.c +++ b/src/http/response.c @@ -27,7 +27,6 @@ #include #include "class.h" -#include "interface/class.h" #include "interface/http_intro.h" #include "http/response.h" diff --git a/src/http/response/304.c b/src/http/response/304.c index a5ea639..81519a7 100644 --- a/src/http/response/304.c +++ b/src/http/response/304.c @@ -23,7 +23,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/response.h" #include "http/message.h" diff --git a/src/http/response/403.c b/src/http/response/403.c index 7256a3e..b1ef08f 100644 --- a/src/http/response/403.c +++ b/src/http/response/403.c @@ -26,7 +26,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/response.h" #include "http/message.h" diff --git a/src/http/response/404.c b/src/http/response/404.c index fd3fae3..1947de1 100644 --- a/src/http/response/404.c +++ b/src/http/response/404.c @@ -26,7 +26,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/response.h" #include "http/message.h" diff --git a/src/http/response/asset.c b/src/http/response/asset.c index 1ab4937..b0c58f2 100644 --- a/src/http/response/asset.c +++ b/src/http/response/asset.c @@ -28,7 +28,6 @@ #include #include "class.h" -#include "interface/class.h" #include "stream.h" #include "http/response.h" diff --git a/src/http/response/login_form.c b/src/http/response/login_form.c index e0e6374..f01063d 100644 --- a/src/http/response/login_form.c +++ b/src/http/response/login_form.c @@ -27,7 +27,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/response.h" #include "http/message.h" diff --git a/src/http/response/randval.c b/src/http/response/randval.c index d9eb0b7..b98449e 100644 --- a/src/http/response/randval.c +++ b/src/http/response/randval.c @@ -27,7 +27,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/response.h" #include "http/message.h" diff --git a/src/http/response/session.c b/src/http/response/session.c index 924fa87..396b6a6 100644 --- a/src/http/response/session.c +++ b/src/http/response/session.c @@ -27,7 +27,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/response.h" #include "http/message.h" diff --git a/src/http/worker.c b/src/http/worker.c index 5b8c36d..f64ccdb 100644 --- a/src/http/worker.c +++ b/src/http/worker.c @@ -34,7 +34,6 @@ #include "http/parser.h" #include "http/writer.h" -#include "interface/class.h" #include "interface/stream_reader.h" #include "interface/stream_writer.h" diff --git a/src/http/worker/add_common_header.c b/src/http/worker/add_common_header.c index 99472cf..981c4da 100644 --- a/src/http/worker/add_common_header.c +++ b/src/http/worker/add_common_header.c @@ -24,7 +24,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/message.h" #include "http/header.h" diff --git a/src/http/worker/process.c b/src/http/worker/process.c index 29ccbd7..60b22dd 100644 --- a/src/http/worker/process.c +++ b/src/http/worker/process.c @@ -28,7 +28,6 @@ #include #include "class.h" -#include "interface/class.h" #include "interface/auth.h" #include "http/worker.h" diff --git a/src/http/writer.c b/src/http/writer.c index a2f94ca..0c381e8 100644 --- a/src/http/writer.c +++ b/src/http/writer.c @@ -23,7 +23,6 @@ #include #include "class.h" -#include "interface/class.h" #include "interface/stream_writer.h" #include "http/message/queue.h" diff --git a/src/http/writer/write.c b/src/http/writer/write.c index 9639eea..5942242 100644 --- a/src/http/writer/write.c +++ b/src/http/writer/write.c @@ -24,7 +24,6 @@ #include #include "class.h" -#include "interface/class.h" #include "http/message.h" #include "http/writer.h" #include "cbuf.h" diff --git a/src/logger.c b/src/logger.c index d7237fd..6519f95 100644 --- a/src/logger.c +++ b/src/logger.c @@ -23,7 +23,7 @@ #include #include "logger.h" -#include "interface/class.h" +#include "class.h" #include "interface/logger.h" const diff --git a/src/server.c b/src/server.c index e01f044..5f43eb0 100644 --- a/src/server.c +++ b/src/server.c @@ -31,7 +31,6 @@ #include "server.h" #include "socket.h" #include "logger.h" -#include "interface/class.h" #include "utils/memory.h" diff --git a/src/server/close_conn.c b/src/server/close_conn.c index 7347669..33d2dd4 100644 --- a/src/server/close_conn.c +++ b/src/server/close_conn.c @@ -24,7 +24,7 @@ #include #include "server.h" -#include "interface/class.h" +#include "class.h" #include "stream.h" void diff --git a/src/server/handle_accept.c b/src/server/handle_accept.c index bd10a93..9e20aa1 100644 --- a/src/server/handle_accept.c +++ b/src/server/handle_accept.c @@ -28,7 +28,7 @@ #include "http/worker.h" #include "server.h" -#include "interface/class.h" +#include "class.h" #include "interface/logger.h" #include "stream.h" diff --git a/src/session.c b/src/session.c index 6b205d0..b768da4 100644 --- a/src/session.c +++ b/src/session.c @@ -29,7 +29,6 @@ #include "session.h" #include "class.h" -#include "interface/class.h" #include "utils/hash.h" #include "utils/memory.h" diff --git a/src/session/add.c b/src/session/add.c index ae635eb..f6a9d2c 100644 --- a/src/session/add.c +++ b/src/session/add.c @@ -23,7 +23,7 @@ #include #include "session.h" -#include "interface/class.h" +#include "class.h" static diff --git a/src/session/delete.c b/src/session/delete.c index f8a8ba4..33d203d 100644 --- a/src/session/delete.c +++ b/src/session/delete.c @@ -23,7 +23,7 @@ #include #include "session.h" -#include "interface/class.h" +#include "class.h" static diff --git a/src/socket.c b/src/socket.c index f3e2a27..8f761d0 100644 --- a/src/socket.c +++ b/src/socket.c @@ -26,7 +26,7 @@ #include "socket.h" #include "logger.h" -#include "interface/class.h" +#include "class.h" #include "interface/logger.h" static diff --git a/src/socket/accept.c b/src/socket/accept.c index a51cae5..f8b5a4e 100644 --- a/src/socket/accept.c +++ b/src/socket/accept.c @@ -24,7 +24,7 @@ #include #include "socket.h" -#include "interface/class.h" +#include "class.h" #include "interface/logger.h" Sock diff --git a/src/socket/connect.c b/src/socket/connect.c index 7e0d19b..04bab48 100644 --- a/src/socket/connect.c +++ b/src/socket/connect.c @@ -24,7 +24,7 @@ #include // for errno #include "socket.h" -#include "interface/class.h" +#include "class.h" #include "interface/logger.h" diff --git a/src/socket/listen.c b/src/socket/listen.c index 0e54132..418a1d0 100644 --- a/src/socket/listen.c +++ b/src/socket/listen.c @@ -24,7 +24,7 @@ #include // for errno #include "socket.h" -#include "interface/class.h" +#include "class.h" #include "interface/logger.h" diff --git a/src/stream.c b/src/stream.c index 3168d92..827a0c8 100644 --- a/src/stream.c +++ b/src/stream.c @@ -24,7 +24,6 @@ #include #include "class.h" -#include "interface/class.h" #include "stream.h" diff --git a/src/taskrambler.c b/src/taskrambler.c index faf9888..9b731d5 100644 --- a/src/taskrambler.c +++ b/src/taskrambler.c @@ -40,7 +40,7 @@ #include "http/worker.h" #include "auth/ldap.h" -#include "interface/class.h" +#include "class.h" #include "interface/logger.h" #include "utils/signalHandling.h" diff --git a/src/utils/http.c b/src/utils/http.c index 36ab048..e24ce9d 100644 --- a/src/utils/http.c +++ b/src/utils/http.c @@ -28,7 +28,7 @@ #include "http/request.h" #include "http/response.h" -#include "interface/class.h" +#include "class.h" #include "commons.h" From f0d05e1413d3274502a83179ab4962621f597743 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Mon, 26 Mar 2012 08:17:18 +0200 Subject: [PATCH 06/22] huge changes in build system. Moved a lot of stuff to separate archives, not finished right now. Additionally add some support for coverage reports. Next step after build restructuring is to write tests. --- .gitignore | 5 ++ Makefile.am | 2 + Makefile.am.coverage | 27 +++++++++ configure.ac | 18 +++++- include/auth.h | 40 +----------- include/auth/auth.h | 45 ++++++++++++++ include/{ => auth}/credential.h | 6 +- include/{ => auth}/interface/auth.h | 8 +-- include/hash.h | 38 +----------- include/hash/hash.h | 42 +++++++++++++ include/{ => hash}/interface/hashable.h | 6 +- include/{hash_value.h => hash/value.h} | 0 include/http.h | 16 +++++ include/http/message.h | 1 - m4/gcov.m4 | 77 ++++++++++++++++++++++++ src/Makefile.am | 59 ++++-------------- src/auth/Makefile.am | 6 ++ src/{ => auth}/credential.c | 4 +- src/{ => auth}/interface/auth.c | 6 +- src/auth/ldap.c | 8 +-- src/auth/libauth.a | Bin 0 -> 32670 bytes src/cbuf/Makefile.am | 13 ++++ src/{ => cbuf}/cbuf.c | 0 src/cbuf/libcbuf.a | Bin 0 -> 215682 bytes src/class/Makefile.am | 2 - src/class/libclass.a | Bin 17066 -> 17066 bytes src/hash/Makefile.am | 9 +++ src/hash/add.c | 1 - src/hash/delete.c | 1 - src/hash/get.c | 1 - src/{ => hash}/hash.c | 2 +- src/{ => hash}/interface/hashable.c | 2 +- src/hash/libhash.a | Bin 0 -> 50148 bytes src/{hash_value.c => hash/value.c} | 7 ++- src/http/Makefile.am | 41 +++++++++++++ src/http/cookie.c | 4 +- src/http/header.c | 2 +- src/http/libhttp.a | Bin 0 -> 1942268 bytes src/http/message.c | 4 +- src/http/parser/header.c | 1 - src/http/parser/post_vars.c | 1 - src/http/parser/request_vars.c | 1 - src/http/request.c | 1 + src/http/worker.c | 1 - src/http/worker/process.c | 4 +- src/taskrambler.c | 2 +- tests/Makefile.am | 48 +++++++-------- 47 files changed, 372 insertions(+), 190 deletions(-) create mode 100644 Makefile.am.coverage create mode 100644 include/auth/auth.h rename include/{ => auth}/credential.h (92%) rename include/{ => auth}/interface/auth.h (90%) create mode 100644 include/hash/hash.h rename include/{ => hash}/interface/hashable.h (91%) rename include/{hash_value.h => hash/value.h} (100%) create mode 100644 include/http.h create mode 100644 m4/gcov.m4 create mode 100644 src/auth/Makefile.am rename src/{ => auth}/credential.c (98%) rename src/{ => auth}/interface/auth.c (91%) create mode 100644 src/auth/libauth.a create mode 100644 src/cbuf/Makefile.am rename src/{ => cbuf}/cbuf.c (100%) create mode 100644 src/cbuf/libcbuf.a create mode 100644 src/hash/Makefile.am rename src/{ => hash}/hash.c (98%) rename src/{ => hash}/interface/hashable.c (96%) create mode 100644 src/hash/libhash.a rename src/{hash_value.c => hash/value.c} (97%) create mode 100644 src/http/Makefile.am create mode 100644 src/http/libhttp.a diff --git a/.gitignore b/.gitignore index 6b8107e..fdcb6d0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ .*.swp *.o +*.gcda +*.gcno .dirstamp .deps/ Makefile @@ -8,6 +10,8 @@ Makefile.in m4/ /docs/ /INSTALL +coverage.info +coveragereport/ *.m4 /autom4te.cache/ /compile @@ -19,3 +23,4 @@ m4/ /missing stamp-h1 src/taskrambler + diff --git a/Makefile.am b/Makefile.am index 392bb5a..c413a9b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,3 +8,5 @@ ACLOCAL_AMFLAGS = -I m4 EXTRA_DIST = include assets certs SUBDIRS = src tests + +include $(top_srcdir)/Makefile.am.coverage diff --git a/Makefile.am.coverage b/Makefile.am.coverage new file mode 100644 index 0000000..af82e7d --- /dev/null +++ b/Makefile.am.coverage @@ -0,0 +1,27 @@ + +# Coverage targets + +if HAVE_GCOV + + .PHONY: clean-gcda + clean-gcda: + @echo Removing old coverage results + -find -name '*.gcda' -print | xargs -r rm + + .PHONY: coverage-html generate-coverage-html clean-coverage-html + coverage-html: clean-gcda + -$(MAKE) $(AM_MAKEFLAGS) -k check + $(MAKE) $(AM_MAKEFLAGS) generate-coverage-html + + generate-coverage-html: + @echo Collecting coverage data + $(LCOV) --directory $(top_builddir) --capture --output-file coverage.info --no-checksum --compat-libtool + LANG=C $(GENHTML) --prefix $(top_builddir) --output-directory coveragereport --title "Code Coverage" --legend --show-details coverage.info + + clean-coverage-html: clean-gcda + -$(LCOV) --directory $(top_builddir) -z + -rm -rf coverage.info coveragereport + + clean-local: clean-coverage-html + +endif # HAVE_GCOV diff --git a/configure.ac b/configure.ac index 1cc1e30..4c6f6cc 100644 --- a/configure.ac +++ b/configure.ac @@ -3,14 +3,21 @@ AC_PREREQ([2.68]) AC_INIT([taskrambler], [0.0.1], [Georg Hopp ]) +LT_INIT AM_INIT_AUTOMAKE([subdir-objects]) -AM_SILENT_RULES([yes]) +#AM_SILENT_RULES([yes]) AC_COPYRIGHT([Copyright © 2012 Georg Hopp]) AC_REVISION([$Revision: 0.01 $]) AC_CONFIG_SRCDIR([src/taskrambler.c]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) +m4_include([m4/gcov.m4]) +AC_TDD_GCOV +AC_SUBST(COVERAGE_CFLAGS) +AC_SUBST(COVERAGE_CXXFLAGS) +AC_SUBST(COVERAGE_LDFLAGS) + # Checks for programs. AC_PROG_CXX AC_PROG_CC @@ -38,5 +45,12 @@ AC_TYPE_SIZE_T #AC_FUNC_MALLOC AC_CHECK_FUNCS([memset]) -AC_CONFIG_FILES([Makefile src/Makefile src/class/Makefile tests/Makefile]) +AC_CONFIG_FILES([Makefile + src/Makefile + src/auth/Makefile + src/cbuf/Makefile + src/class/Makefile + src/hash/Makefile + src/http/Makefile + tests/Makefile]) AC_OUTPUT diff --git a/include/auth.h b/include/auth.h index a83eb51..db49b3c 100644 --- a/include/auth.h +++ b/include/auth.h @@ -1,44 +1,10 @@ -/** - * \file - * Authenticatio module factory - * - * A factory to get a specific authentication module. - * An authentication module is a class that implement the Auth interface. - * - * \author Georg Hopp - * - * \copyright - * Copyright © 2012 Georg Hopp - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - #ifndef __AUTH_H__ #define __AUTH_H__ -#include "class.h" +#include "auth/auth.h" #include "auth/ldap.h" - -typedef enum e_AuthModule { - AUTH_LDAP = 0 -} AuthModule; - -CLASS(Auth) { -}; - -void * authCreateById(Auth, int); -AuthLdap authCreateLdap(Auth); +#include "auth/credential.h" +#include "auth/interface/auth.h" #endif // __AUTH_H__ diff --git a/include/auth/auth.h b/include/auth/auth.h new file mode 100644 index 0000000..2518918 --- /dev/null +++ b/include/auth/auth.h @@ -0,0 +1,45 @@ +/** + * \file + * Authenticatio module factory + * + * A factory to get a specific authentication module. + * An authentication module is a class that implement the Auth interface. + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __AUTH_AUTH_H__ +#define __AUTH_AUTH_H__ + +#include "class.h" +#include "auth/ldap.h" + +typedef enum e_AuthModule { + AUTH_LDAP = 0 +} AuthModule; + +CLASS(Auth) { +}; + +void * authCreateById(Auth, int); +AuthLdap authCreateLdap(Auth); + +#endif // __AUTH_AUTH_H__ + +// vim: set ts=4 sw=4: diff --git a/include/credential.h b/include/auth/credential.h similarity index 92% rename from include/credential.h rename to include/auth/credential.h index 945f780..01394e8 100644 --- a/include/credential.h +++ b/include/auth/credential.h @@ -20,8 +20,8 @@ * along with this program. If not, see . */ -#ifndef __CREDENTIAL_H__ -#define __CREDENTIAL_H__ +#ifndef __AUTH_CREDENTIAL_H__ +#define __AUTH_CREDENTIAL_H__ #include @@ -49,6 +49,6 @@ CLASS(Credential) { } cred; }; -#endif // __CREDENTIAL_H__ +#endif // __AUTH_CREDENTIAL_H__ // vim: set ts=4 sw=4: diff --git a/include/interface/auth.h b/include/auth/interface/auth.h similarity index 90% rename from include/interface/auth.h rename to include/auth/interface/auth.h index ec55000..8dccfa2 100644 --- a/include/interface/auth.h +++ b/include/auth/interface/auth.h @@ -25,13 +25,13 @@ * along with this program. If not, see . */ -#ifndef __INTERFACE_AUTH_H__ -#define __INTERFACE_AUTH_H__ +#ifndef __AUTH_INTERFACE_AUTH_H__ +#define __AUTH_INTERFACE_AUTH_H__ #include #include "class.h" -#include "credential.h" +#include "auth/credential.h" typedef int (* fptr_authenticate)(void *, Credential); @@ -44,6 +44,6 @@ struct i_Auth { extern int authenticate(void *, Credential); -#endif // __INTERFACE_AUTH_H__ +#endif // __AUTH_INTERFACE_AUTH_H__ // vim: set ts=4 sw=4: diff --git a/include/hash.h b/include/hash.h index 4c6eb92..54868d7 100644 --- a/include/hash.h +++ b/include/hash.h @@ -1,41 +1,9 @@ -/** - * \file - * - * \author Georg Hopp - * - * \copyright - * Copyright © 2012 Georg Hopp - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - #ifndef __HASH_H__ #define __HASH_H__ -#include - -#include "class.h" - - -CLASS(Hash) { - void * root; -}; - -void * hashAdd(Hash, void *); -void * hashDelete(Hash, const char *, size_t); -void * hashGet(Hash, const char *, size_t); -void hashEach(Hash, void (*)(const void*)); +#include "hash/hash.h" +#include "hash/value.h" +#include "hash/interface/hashable.h" #endif // __HASH_H__ diff --git a/include/hash/hash.h b/include/hash/hash.h new file mode 100644 index 0000000..1ddcf2e --- /dev/null +++ b/include/hash/hash.h @@ -0,0 +1,42 @@ +/** + * \file + * + * \author Georg Hopp + * + * \copyright + * Copyright © 2012 Georg Hopp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef __HASH_HASH_H__ +#define __HASH_HASH_H__ + +#include + +#include "class.h" + + +CLASS(Hash) { + void * root; +}; + +void * hashAdd(Hash, void *); +void * hashDelete(Hash, const char *, size_t); +void * hashGet(Hash, const char *, size_t); +void hashEach(Hash, void (*)(const void*)); + +#endif // __HASH_HASH_H__ + +// vim: set ts=4 sw=4: diff --git a/include/interface/hashable.h b/include/hash/interface/hashable.h similarity index 91% rename from include/interface/hashable.h rename to include/hash/interface/hashable.h index a4dbc49..1a33d58 100644 --- a/include/interface/hashable.h +++ b/include/hash/interface/hashable.h @@ -21,8 +21,8 @@ * along with this program. If not, see . */ -#ifndef __INTERFACE_HASHABLE_H__ -#define __INTERFACE_HASHABLE_H__ +#ifndef __HASH_INTERFACE_HASHABLE_H__ +#define __HASH_INTERFACE_HASHABLE_H__ #include "class.h" @@ -40,6 +40,6 @@ struct i_Hashable { extern unsigned long hashableGetHash(void *); extern void hashableHandleDouble(void *, void *); -#endif // __INTERFACE_HASHABLE_H__ +#endif // __HASH_INTERFACE_HASHABLE_H__ // vim: set ts=4 sw=4: diff --git a/include/hash_value.h b/include/hash/value.h similarity index 100% rename from include/hash_value.h rename to include/hash/value.h diff --git a/include/http.h b/include/http.h new file mode 100644 index 0000000..fde505b --- /dev/null +++ b/include/http.h @@ -0,0 +1,16 @@ +#ifndef __HTTP_H__ +#define __HTTP_H__ + +#include "http/cookie.h" +#include "http/header.h" +#include "http/message.h" +#include "http/message/queue.h" +#include "http/request.h" +#include "http/response.h" +#include "http/parser.h" +#include "http/writer.h" +#include "http/worker.h" + +#endif // __HTTP_H__ + +// vim: set ts=4 sw=4: diff --git a/include/http/message.h b/include/http/message.h index b85ec93..2161793 100644 --- a/include/http/message.h +++ b/include/http/message.h @@ -38,7 +38,6 @@ CLASS(HttpMessage) { char * version; Hash header; - Hash cookies; HttpMessageType type; Stream handle; diff --git a/m4/gcov.m4 b/m4/gcov.m4 new file mode 100644 index 0000000..d34f1e9 --- /dev/null +++ b/m4/gcov.m4 @@ -0,0 +1,77 @@ +# Checks for existence of coverage tools: +# * gcov +# * lcov +# * genhtml +# * gcovr +# +# Sets ac_cv_check_gcov to yes if tooling is present +# and reports the executables to the variables LCOV, GCOVR and GENHTML. +AC_DEFUN([AC_TDD_GCOV], +[ + AC_ARG_ENABLE(gcov, + AS_HELP_STRING([--enable-gcov], + [enable coverage testing with gcov]), + [use_gcov=$enableval], [use_gcov=no]) + AM_CONDITIONAL(HAVE_GCOV, test "x$use_gcov" = "xyes") + + if test "x$use_gcov" = "xyes"; then + # we need gcc: + if test "$GCC" != "yes"; then + AC_MSG_ERROR([GCC is required for --enable-gcov]) + fi + + # Check if ccache is being used + AC_CHECK_PROG(SHTOOL, shtool, shtool) + case `$SHTOOL path $CC` in + *ccache*[)] gcc_ccache=yes;; + *[)] gcc_ccache=no;; + esac + + if test "$gcc_ccache" = "yes" && (test -z "$CCACHE_DISABLE" || test "$CCACHE_DISABLE" != "1"); then + AC_MSG_ERROR([ccache must be disabled when --enable-gcov option is used. You can disable ccache by setting environment variable CCACHE_DISABLE=1.]) + fi + + lcov_version_list="1.6 1.7 1.8 1.9" + AC_CHECK_PROG(LCOV, lcov, lcov) + AC_CHECK_PROG(GENHTML, genhtml, genhtml) + + if test "$LCOV"; then + AC_CACHE_CHECK([for lcov version], glib_cv_lcov_version, [ + glib_cv_lcov_version=invalid + lcov_version=`$LCOV -v 2>/dev/null | $SED -e 's/^.* //'` + for lcov_check_version in $lcov_version_list; do + if test "$lcov_version" = "$lcov_check_version"; then + glib_cv_lcov_version="$lcov_check_version (ok)" + fi + done + ]) + else + lcov_msg="To enable code coverage reporting you must have one of the following lcov versions installed: $lcov_version_list" + AC_MSG_ERROR([$lcov_msg]) + fi + + case $glib_cv_lcov_version in + ""|invalid[)] + lcov_msg="You must have one of the following versions of lcov: $lcov_version_list (found: $lcov_version)." + AC_MSG_ERROR([$lcov_msg]) + LCOV="exit 0;" + ;; + esac + + if test -z "$GENHTML"; then + AC_MSG_ERROR([Could not find genhtml from the lcov package]) + fi + + # Remove all optimization flags from CFLAGS + changequote({,}) + CFLAGS=`echo "$CFLAGS" | $SED -e 's/-O[0-9]*//g'` + changequote([,]) + + # Add the special gcc flags + COVERAGE_CFLAGS="-O0 -fprofile-arcs -ftest-coverage" + COVERAGE_CXXFLAGS="-O0 -fprofile-arcs -ftest-coverage" + COVERAGE_LDFLAGS="-lgcov" + +fi +]) # AC_TDD_GCOV + diff --git a/src/Makefile.am b/src/Makefile.am index 3386774..076900a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,68 +5,31 @@ IFACE = interface/stream_reader.c interface/logger.c \ interface/subject.c interface/observer.c SOCKET = socket.c socket/accept.c socket/connect.c socket/listen.c STREAM = stream.c stream/read.c stream/write.c -HASH = hash.c hash/add.c hash/get.c hash/delete.c \ - hash/each.c interface/hashable.c hash_value.c SERVER = server.c server/run.c server/close_conn.c server/poll.c \ server/handle_accept.c server/read.c server/write.c LOGGER = logger.c logger/stderr.c logger/syslog.c -CB = cbuf.c cbuf/read.c cbuf/write.c \ - cbuf/get_line.c cbuf/set_data.c cbuf/get_data.c \ - cbuf/addr_index.c cbuf/get_free.c cbuf/get_read.c cbuf/get_write.c \ - cbuf/inc_read.c cbuf/inc_write.c cbuf/is_empty.c cbuf/memchr.c \ - cbuf/skip_non_alpha.c cbuf/is_locked.c cbuf/lock.c cbuf/release.c \ - cbuf/empty.c -MSG = http/message.c \ - http/message/has_keep_alive.c \ - http/message/header_size_get.c \ - http/message/header_to_string.c \ - http/message/get_version.c \ - http/message/has_valid_version.c -MSGQ = http/message/queue.c -REQ = http/request.c \ - http/request/has_valid_method.c -RESP = http/response.c \ - http/response/304.c \ - http/response/404.c \ - http/response/403.c \ - http/response/login_form.c \ - http/response/asset.c \ - http/response/randval.c \ - http/response/session.c -PARSER = http/parser.c \ - http/parser/parse.c \ - http/parser/new_message.c \ - http/parser/header.c \ - http/parser/body.c \ - http/parser/request_vars.c \ - http/parser/post_vars.c -WRITER = http/writer.c \ - http/writer/write.c -WORKER = http/worker.c \ - http/worker/process.c \ - http/worker/write.c \ - http/worker/get_asset.c \ - http/worker/add_common_header.c -HEADER = http/header.c \ - http/header/to_string.c SESSION = session.c session/add.c session/get.c session/delete.c UTILS = utils/hash.c \ utils/memory.c \ utils/http.c \ utils/daemonize.c \ utils/signalHandling.c -AUTH = interface/auth.c auth/ldap.c credential.c +LIBS = ./http/libhttp.a \ + ./auth/libauth.a \ + ./cbuf/libcbuf.a \ + ./class/libclass.a \ + ./hash/libhash.a AM_CFLAGS = -Wall -I ../include/ bin_PROGRAMS = taskrambler taskrambler_SOURCES = taskrambler.c \ - $(IFACE) $(SOCKET) $(SERVER) $(LOGGER) $(MSG) $(REQ) \ - $(WRITER) $(RESP) $(HEADER) $(PARSER) $(WORKER) $(CB) \ - $(UTILS) $(MSGQ) $(SESSION) $(STREAM) $(HASH) $(AUTH) -taskrambler_CFLAGS = -Wall -I ../include/ -taskrambler_LDFLAGS = -L./class -lclass -lrt -lssl -lldap + $(IFACE) $(SOCKET) $(SERVER) $(LOGGER) \ + $(UTILS) $(SESSION) $(STREAM) +taskrambler_CFLAGS = -Wall -I ../include/ $(COVERAGE_CFLAGS) +taskrambler_LDADD = $(LIBS) -lrt -lssl -lldap +taskrambler_LDFLAGS = $(COVERAGE_LDFLAGS) -SUBDIRS = class +SUBDIRS = auth cbuf class hash http diff --git a/src/auth/Makefile.am b/src/auth/Makefile.am new file mode 100644 index 0000000..f35a61c --- /dev/null +++ b/src/auth/Makefile.am @@ -0,0 +1,6 @@ +ACLOCAL_AMFLAGS = -I m4 + +noinst_LIBRARIES = libauth.a + +libauth_a_SOURCES = interface/auth.c credential.c ldap.c +libauth_a_CFLAGS = -Wall -I ../../include/ diff --git a/src/credential.c b/src/auth/credential.c similarity index 98% rename from src/credential.c rename to src/auth/credential.c index 663cfe2..f5c3ef1 100644 --- a/src/credential.c +++ b/src/auth/credential.c @@ -25,11 +25,11 @@ #include #include -#include "credential.h" #include "class.h" - #include "utils/memory.h" +#include "auth/credential.h" + static int credentialCtor(void * _this, va_list * params) diff --git a/src/interface/auth.c b/src/auth/interface/auth.c similarity index 91% rename from src/interface/auth.c rename to src/auth/interface/auth.c index bc2e1bc..fa98183 100644 --- a/src/interface/auth.c +++ b/src/auth/interface/auth.c @@ -20,9 +20,9 @@ * along with this program. If not, see . */ -#include "auth.h" -#include "credential.h" -#include "interface/auth.h" +#include "auth/auth.h" +#include "auth/credential.h" +#include "auth/interface/auth.h" const struct interface i_Auth = { "auth", diff --git a/src/auth/ldap.c b/src/auth/ldap.c index 28f37d2..3ac2cfd 100644 --- a/src/auth/ldap.c +++ b/src/auth/ldap.c @@ -26,14 +26,14 @@ #include #include -#include "auth/ldap.h" #include "class.h" -#include "credential.h" -#include "interface/auth.h" - #include "utils/memory.h" #include "commons.h" +#include "auth/ldap.h" +#include "auth/credential.h" +#include "auth/interface/auth.h" + static int authLdapCtor(void * _this, va_list * params) diff --git a/src/auth/libauth.a b/src/auth/libauth.a new file mode 100644 index 0000000000000000000000000000000000000000..7c72fa397947e8362aac52631944a09cb3d6a225 GIT binary patch literal 32670 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 CC=-_e literal 0 HcmV?d00001 diff --git a/src/cbuf/Makefile.am b/src/cbuf/Makefile.am new file mode 100644 index 0000000..c9d9f29 --- /dev/null +++ b/src/cbuf/Makefile.am @@ -0,0 +1,13 @@ +ACLOCAL_AMFLAGS = -I m4 + +CB = cbuf.c read.c write.c \ + get_line.c set_data.c get_data.c \ + addr_index.c get_free.c get_read.c get_write.c \ + inc_read.c inc_write.c is_empty.c memchr.c \ + skip_non_alpha.c is_locked.c lock.c release.c \ + empty.c + +noinst_LIBRARIES = libcbuf.a + +libcbuf_a_SOURCES = $(CB) +libcbuf_a_CFLAGS = -Wall -I ../../include/ diff --git a/src/cbuf.c b/src/cbuf/cbuf.c similarity index 100% rename from src/cbuf.c rename to src/cbuf/cbuf.c diff --git a/src/cbuf/libcbuf.a b/src/cbuf/libcbuf.a new file mode 100644 index 0000000000000000000000000000000000000000..b04e3947d1569798a13ff1823316112d01f1e425 GIT binary patch literal 215682 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 z56myGINl6 z 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
  • w+UnvcE&^TY9wLNcqq9 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 #include "hash.h" -#include "interface/hashable.h" #include "class.h" static diff --git a/src/hash/delete.c b/src/hash/delete.c index 76dd374..1731fbe 100644 --- a/src/hash/delete.c +++ b/src/hash/delete.c @@ -24,7 +24,6 @@ #include #include "hash.h" -#include "interface/hashable.h" #include "utils/hash.h" static diff --git a/src/hash/get.c b/src/hash/get.c index 44240cb..2d64514 100644 --- a/src/hash/get.c +++ b/src/hash/get.c @@ -24,7 +24,6 @@ #include #include "hash.h" -#include "interface/hashable.h" #include "utils/hash.h" static diff --git a/src/hash.c b/src/hash/hash.c similarity index 98% rename from src/hash.c rename to src/hash/hash.c index bb2fb7a..ba8cba2 100644 --- a/src/hash.c +++ b/src/hash/hash.c @@ -25,7 +25,7 @@ #include #include -#include "hash.h" +#include "hash/hash.h" #include "class.h" static diff --git a/src/interface/hashable.c b/src/hash/interface/hashable.c similarity index 96% rename from src/interface/hashable.c rename to src/hash/interface/hashable.c index 7e4b280..0113388 100644 --- a/src/interface/hashable.c +++ b/src/hash/interface/hashable.c @@ -25,7 +25,7 @@ #include #include "class.h" -#include "interface/hashable.h" +#include "hash/interface/hashable.h" const struct interface i_Hashable = { "hashable", diff --git a/src/hash/libhash.a b/src/hash/libhash.a new file mode 100644 index 0000000000000000000000000000000000000000..b9c9147fb0e1544493a288e4b7cf5a87ac27dcc6 GIT binary patch literal 50148 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 literal 0 HcmV?d00001 diff --git a/src/hash_value.c b/src/hash/value.c similarity index 97% rename from src/hash_value.c rename to src/hash/value.c index 0df0ecb..c32b760 100644 --- a/src/hash_value.c +++ b/src/hash/value.c @@ -25,12 +25,13 @@ #include #include -#include "hash_value.h" +#include "class.h" #include "utils/hash.h" #include "utils/memory.h" #include "commons.h" -#include "class.h" -#include "interface/hashable.h" + +#include "hash/value.h" +#include "hash/interface/hashable.h" static int diff --git a/src/http/Makefile.am b/src/http/Makefile.am new file mode 100644 index 0000000..0285899 --- /dev/null +++ b/src/http/Makefile.am @@ -0,0 +1,41 @@ +ACLOCAL_AMFLAGS = -I m4 + +MSG = message.c \ + message/has_keep_alive.c \ + message/header_size_get.c \ + message/header_to_string.c \ + message/get_version.c \ + message/has_valid_version.c +MSGQ = message/queue.c +REQ = request.c \ + request/has_valid_method.c +RESP = response.c \ + response/304.c \ + response/404.c \ + response/403.c \ + response/login_form.c \ + response/asset.c \ + response/randval.c \ + response/session.c +PARSER = parser.c \ + parser/parse.c \ + parser/new_message.c \ + parser/header.c \ + parser/body.c \ + parser/request_vars.c \ + parser/post_vars.c +WRITER = writer.c \ + writer/write.c +WORKER = worker.c \ + worker/process.c \ + worker/write.c \ + worker/get_asset.c \ + worker/add_common_header.c +HEADER = header.c \ + header/to_string.c + +noinst_LIBRARIES = libhttp.a + +libhttp_a_SOURCES = $(MSG) $(MSGQ) $(REQ) $(RESP) $(PARSER) $(WRITER) \ + $(WORKER) $(HEADER) +libhttp_a_CFLAGS = -Wall -I ../../include/ diff --git a/src/http/cookie.c b/src/http/cookie.c index 29ca5a7..8b0a50b 100644 --- a/src/http/cookie.c +++ b/src/http/cookie.c @@ -25,9 +25,9 @@ #include #include -#include "cookie.h" #include "class.h" -#include "interface/hashable" +#include "hash.h" +#include "http/cookie.h" #include "utils/hash.h" #include "utils/memory.h" diff --git a/src/http/header.c b/src/http/header.c index 8067569..42ecfd9 100644 --- a/src/http/header.c +++ b/src/http/header.c @@ -25,8 +25,8 @@ #include #include "class.h" +#include "hash.h" #include "http/header.h" -#include "interface/hashable.h" #include "utils/hash.h" #include "utils/memory.h" diff --git a/src/http/libhttp.a b/src/http/libhttp.a new file mode 100644 index 0000000000000000000000000000000000000000..4c6537774895e6c067e18797884e1fe248ad7864 GIT binary patch literal 1942268 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

    DWM_Tg-)Uz1WuwuPCD47zqyS5 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