X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=source%2Fcore%2Ffunctions.cpp;fp=source%2Fcore%2Ffunctions.cpp;h=379c5a69bbb6b91fa7e5086dd7b9b820ec38cd6b;hp=8752a2e5d3bbbe75b51c24538b6de406d6fbfbe6;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/source/core/functions.cpp b/source/core/functions.cpp index 8752a2e..379c5a6 100644 --- a/source/core/functions.cpp +++ b/source/core/functions.cpp @@ -45,7 +45,7 @@ static const std::string base64_chars = "0123456789+/"; -string functions::getVersion() throw() { +string functions::getVersion() { static const int version = ANNA_VERSION; string result; int mainVersion = (version & 0xff00) >> 8; @@ -59,7 +59,7 @@ string functions::getVersion() throw() { /* (1) Solo coge los dos primeros digitos del numero de release */ -string functions::getArchitecture() throw() { +string functions::getArchitecture() { string result; WHEN_MULTITHREAD(result = "/MT"); WHEN_SINGLETHREAD(result = "/ST"); @@ -90,14 +90,14 @@ string functions::getArchitecture() throw() { } string functions::asString(const int number) -throw() { +{ char aux [16]; sprintf(aux, "%d", number); return string(aux); } string functions::asString(const S64 number) -throw() { +{ char aux [24]; //sprintf(aux, "%lld", number); #ifdef __anna64__ @@ -109,14 +109,14 @@ throw() { } string functions::asString(const unsigned int number) -throw() { +{ char aux [16]; sprintf(aux, "%u", number); return string(aux); } string functions::asString(const U64 number) -throw() { +{ char aux [16]; //sprintf(aux, "%llu", number); #ifdef __anna64__ @@ -128,27 +128,27 @@ throw() { } string functions::asString(const float number, const char* format) -throw() { +{ char aux [64]; sprintf(aux, format, number); return string(aux); } string functions::asString(const double number, const char* format) -throw() { +{ char aux [64]; sprintf(aux, format, number); return string(aux); } string functions::asDateTime(const Second &second) -throw() { +{ char aux [DateTimeSizeString]; return std::string(asDateTime(second, aux)); } const char* functions::asDateTime(const Second &second, char* result) -throw() { +{ struct tm* tt = localtime((time_t*) & second); sprintf( result, "%02u/%02u/%4u %02u:%02u:%02u", @@ -159,19 +159,19 @@ throw() { } std::string functions::asString(const DataBlock& dataBlock, const int characterByLine) -throw() { +{ return dataBlock.asString(characterByLine); } string functions::asHexString(const int number) -throw() { +{ char aux [16]; sprintf(aux, "0x%x", number); return string(aux); } string functions::asHexString(const S64 number) -throw() { +{ char aux [32]; //sprintf(aux, "0x%llx", number); #ifdef __anna64__ @@ -185,7 +185,7 @@ throw() { // from a version by Allen Holub (see Andrew Binstock, "Hashing Revisited" // Dr. Dobb's Journal, April 1996) S64 functions::hash(const char* p) -throw() { +{ static const int long_bits = sizeof(S64) << 3; static const int one_eighth = long_bits >> 3; static const int three_fourths = long_bits * 3 / 4; @@ -205,7 +205,7 @@ throw() { //static std::string functions::asHexString(const DataBlock& dataBlock) -throw() { +{ const char* buffer = dataBlock.getData(); const int size = dataBlock.getSize(); string result; @@ -230,7 +230,7 @@ throw() { */ //static DataBlock& functions::fromHexString(const std::string& hexString, DataBlock& target) -throw(RuntimeException) { +noexcept(false) { if((hexString.length() % 2) != 0) throw RuntimeException("functions::fromHexString | Invalid string length", ANNA_FILE_LOCATION); @@ -257,7 +257,7 @@ throw(RuntimeException) { } string functions::asString(const char* format, ...) -throw() { +{ va_list ap; char aux [1024]; va_start(ap, format); @@ -267,7 +267,7 @@ throw() { } void functions::sleep(const Millisecond &millisecond) -throw() { +{ timespec req; timespec rem; req.tv_sec = millisecond.getValue() / 1000; // segundos @@ -290,7 +290,7 @@ throw() { } bool functions::asBool(const char* str) -throw(RuntimeException) { +noexcept(false) { if(str == NULL) return false; @@ -307,7 +307,7 @@ throw(RuntimeException) { } S64 functions::asInteger64(const char* str) -throw() { +{ S64 number = 0; //sscanf(str, "%lld", &number); #ifdef __anna64__ @@ -319,13 +319,13 @@ throw() { } pthread_t functions::getCurrentThread() -throw() { +{ WHEN_MULTITHREAD(return pthread_self()); WHEN_SINGLETHREAD(return 0); } bool functions::isLike(const char* pattern, const std::string& _value) -throw(RuntimeException) { +noexcept(false) { const char* value = _value.c_str(); regex_t preg; int ret; @@ -355,7 +355,7 @@ throw(RuntimeException) { /*static*/ S64 functions::merge(const char* whatis, const int n1, const int n2, const int bitShift) -throw(RuntimeException) { +noexcept(false) { if(bitShift > intBitSize) { string msg(functions::asString("%s | N1: 0x%x | N2: 0x%x | bitShift: %d | bitShift must be less than %d", whatis, n1, n2, bitShift, intBitSize)); throw RuntimeException(msg, ANNA_FILE_LOCATION); @@ -391,7 +391,7 @@ throw(RuntimeException) { * Basado en el algoritmo de http://www-graphics.stanford.edu/~seander/bithacks.html#IntegerLogLookup */ int functions::log2(const unsigned int v) -throw() { +{ static const signed char LogTable256[] = { -1, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, @@ -422,7 +422,7 @@ throw() { return r; } -std::string functions::entriesAsString(int number, const char * wordForSingular, const char * wordForPlural) throw() { +std::string functions::entriesAsString(int number, const char * wordForSingular, const char * wordForPlural) { std::string result; std::string singular = (wordForSingular ? wordForSingular : "entry"); std::string plural = (wordForPlural ? wordForPlural : "entries"); @@ -437,7 +437,7 @@ std::string functions::entriesAsString(int number, const char * wordForSingular, } -std::string functions::justify(const std::string & title, TextJustifyMode::_v mode, char filler) throw() { +std::string functions::justify(const std::string & title, TextJustifyMode::_v mode, char filler) { std::string result; int d_size = title.size(); int repeat = PAGE_WIDTH_LENGTH - d_size - 1; @@ -466,7 +466,7 @@ std::string functions::justify(const std::string & title, TextJustifyMode::_v mo } -std::string functions::highlight(const std::string & title, TextHighlightMode::_v mode, char filler, bool appendCR) throw() { +std::string functions::highlight(const std::string & title, TextHighlightMode::_v mode, char filler, bool appendCR) { std::string result; int ou_repeat = title.size(); int lr_repeat = PAGE_WIDTH_LENGTH - ou_repeat - 1; @@ -509,7 +509,7 @@ std::string functions::highlight(const std::string & title, TextHighlightMode::_ } -std::string functions::tab(const std::string & text, int tabSpaces) throw() { +std::string functions::tab(const std::string & text, int tabSpaces) { std::string result; size_t pos, from = 0; std::string tab, crTab = "\n"; @@ -529,7 +529,7 @@ std::string functions::tab(const std::string & text, int tabSpaces) throw() { } -bool functions::endsWith(const std::string & pattern, const std::string & suffix, std::string & preffix) throw() { +bool functions::endsWith(const std::string & pattern, const std::string & suffix, std::string & preffix) { preffix = ""; if(pattern.size() < suffix.size()) return false; @@ -543,7 +543,7 @@ bool functions::endsWith(const std::string & pattern, const std::string & suffix } -bool functions::startsWith(const std::string & pattern, const std::string & preffix, std::string & suffix) throw() { +bool functions::startsWith(const std::string & pattern, const std::string & preffix, std::string & suffix) { suffix = ""; if(pattern.size() < preffix.size()) return false; @@ -555,7 +555,7 @@ bool functions::startsWith(const std::string & pattern, const std::string & pref } -std::string functions::replace(const std::string & text, const char *item, const char *target, bool all) throw() { +std::string functions::replace(const std::string & text, const char *item, const char *target, bool all) { std::string result = text; if(!item || !target) return result; // protection for NULL strings provided @@ -575,7 +575,7 @@ std::string functions::replace(const std::string & text, const char *item, const } -std::string functions::addQuotationMarks(const std::string & str) throw() { +std::string functions::addQuotationMarks(const std::string & str) { std::string result = "'"; result += str; result += "'"; @@ -583,7 +583,7 @@ std::string functions::addQuotationMarks(const std::string & str) throw() { } -std::string functions::addQuotationMarks(const char * str) throw() { +std::string functions::addQuotationMarks(const char * str) { std::string result = "'"; result += (str ? str : ""); result += "'"; @@ -591,7 +591,7 @@ std::string functions::addQuotationMarks(const char * str) throw() { } -std::string functions::addQuotationMarks(const int & integer) throw() { +std::string functions::addQuotationMarks(const int & integer) { std::string result = "'"; result += anna::functions::asString(integer); result += "'"; @@ -599,7 +599,7 @@ std::string functions::addQuotationMarks(const int & integer) throw() { } -std::string functions::vectorToStringRepresentation(const std::vector & v, const char separator) throw() { +std::string functions::vectorToStringRepresentation(const std::vector & v, const char separator) { std::string result = ""; if(v.size() != 0) { @@ -620,7 +620,7 @@ std::string functions::vectorToStringRepresentation(const std::vector & v, } -std::string functions::vectorToStringRepresentation(const std::vector & v, const char separator) throw() { +std::string functions::vectorToStringRepresentation(const std::vector & v, const char separator) { std::string result = ""; if(v.size() != 0) { @@ -641,7 +641,7 @@ std::string functions::vectorToStringRepresentation(const std::vector> 7) & 0x01); @@ -1430,7 +1430,7 @@ void functions::decodeIsupNumber(const char *buffer, int length, isup_number_t & } -void functions::codeIsupNumber(const isup_number_t & isupNumber, bool calledOrCalling, std::string & target) throw(anna::RuntimeException) { +void functions::codeIsupNumber(const isup_number_t & isupNumber, bool calledOrCalling, std::string & target) noexcept(false) { // Checkings: if(isupNumber.OddEven < 0 || isupNumber.OddEven > 1) throw anna::RuntimeException("functions::codeIsupNumber | Isup number 'OddEven' field out of range [0,1]", ANNA_FILE_LOCATION); @@ -1520,7 +1520,7 @@ void functions::codeIsupNumber(const isup_number_t & isupNumber, bool calledOrCa } -void functions::codeIsupNumber(const isup_number_t & isupNumber, bool calledOrCalling, char * buffer, int & length) throw(anna::RuntimeException) { +void functions::codeIsupNumber(const isup_number_t & isupNumber, bool calledOrCalling, char * buffer, int & length) noexcept(false) { std::string target; codeIsupNumber(isupNumber, calledOrCalling, target); length = target.size(); @@ -1614,7 +1614,7 @@ std::string functions::decodeBase64(const std::string & encodedString) { return ret; } -bool functions::getContentFromFile(const std::string &pathfile, std::string &content) throw(anna::RuntimeException) { +bool functions::getContentFromFile(const std::string &pathfile, std::string &content) noexcept(false) { std::ifstream inFile(pathfile.c_str(), std::ifstream::in); if(!inFile.good()) {