X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fhttp%2FHeader.cpp;h=cd41c9318a75f9965dcd29166d88969d89c377bd;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=4d7c3d1ef042e6d7a1907ec6224421b247709668;hpb=3e258840b15577cb8bda3cdedd0b9b88e16404b3;p=anna.git diff --git a/source/http/Header.cpp b/source/http/Header.cpp index 4d7c3d1..cd41c93 100644 --- a/source/http/Header.cpp +++ b/source/http/Header.cpp @@ -1,37 +1,9 @@ -// ANNA - Anna is Not Nothingness Anymore -// -// (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo -// -// https://bitbucket.org/testillano/anna -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: eduardo.ramos.testillano@gmail.com -// cisco.tierra@gmail.com +// ANNA - Anna is Not Nothingness Anymore // +// // +// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo // +// // +// See project site at http://redmine.teslayout.com/projects/anna-suite // +// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE // #include @@ -58,7 +30,7 @@ const char* http::Header::st_names [http::Header::Type::End] = { }; http::Header* http::Header::initialize(const Type::_v type) -throw(RuntimeException) { +noexcept(false) { if(type == Type::None || type >= Type::Unknown) { string msg(asString()); msg += " | Type: "; @@ -86,7 +58,7 @@ throw(RuntimeException) { } http::Header* http::Header::initialize(const string& name) -throw(RuntimeException) { +noexcept(false) { if(a_extensionName == NULL) a_extensionName = new string(name); else @@ -98,12 +70,12 @@ throw(RuntimeException) { } const int http::Header::getIntegerValue() const -throw() { +{ return atoi(a_value.c_str()); } void http::Header::setValue(const http::Token* token) -throw() { +{ if(token == NULL) a_value.clear(); else @@ -111,12 +83,12 @@ throw() { } void http::Header::setValue(const int value) -throw() { +{ a_value = anna::functions::asString(value); } http::Header& http::Header::operator = (const Header & other) -throw() { +{ if(this == &other) return *this; @@ -137,7 +109,7 @@ throw() { } int http::Header::compare(const char* str, const int flags) const -throw() { +{ const char* p = a_value.c_str(); char* dup(NULL); int result; @@ -168,7 +140,7 @@ throw() { } std::string http::Header::asString() const -throw() { +{ string result("http::Header { Type: "); result += asLiteral(a_type); @@ -188,7 +160,7 @@ throw() { } string http::Header::code() const -throw() { +{ string result; if(a_category == Category::Extension) @@ -205,7 +177,7 @@ throw() { } http::Header::Type::_v http::Header::asType(const http::Token* token) -throw() { +{ for(int i = Type::Begin; token != NULL && i != Type::End; i ++) { if(token->match(st_names [i]) == true) return (Type::_v) i; @@ -215,7 +187,7 @@ throw() { } const char* http::Header::asLiteral(const http::Header::Type::_v type) -throw() { +{ return (type < Type::End) ? st_names [type] : "Extension"; }