diff --git a/components/compat/compatlogger.cpp b/components/compat/compatlogger.cpp index 34dba75bf..924a6c35a 100644 --- a/components/compat/compatlogger.cpp +++ b/components/compat/compatlogger.cpp @@ -96,7 +96,6 @@ void CompatLogger::CheckResultHandler(const Checkable::Ptr& checkable, const Che long stateType_after = vars_after->Get("state_type"); long attempt_after = vars_after->Get("attempt"); bool reachable_after = vars_after->Get("reachable"); - bool host_reachable_after = vars_after->Get("host_reachable"); Dictionary::Ptr vars_before = cr->GetVarsBefore(); diff --git a/lib/base/array.h b/lib/base/array.h index b7e39b0ef..4bd8bd7c1 100644 --- a/lib/base/array.h +++ b/lib/base/array.h @@ -42,6 +42,8 @@ public: */ typedef std::vector::iterator Iterator; + typedef std::vector::size_type SizeType; + Value Get(unsigned int index) const; void Set(unsigned int index, const Value& value); void Add(const Value& value); diff --git a/lib/base/dictionary.h b/lib/base/dictionary.h index 790713c0d..67f112112 100644 --- a/lib/base/dictionary.h +++ b/lib/base/dictionary.h @@ -43,6 +43,8 @@ public: */ typedef std::map::iterator Iterator; + typedef std::map::size_type SizeType; + typedef std::pair Pair; Value Get(const char *key) const; diff --git a/lib/base/dynamictype.h b/lib/base/dynamictype.h index e0b315b4a..fb47791ab 100644 --- a/lib/base/dynamictype.h +++ b/lib/base/dynamictype.h @@ -96,7 +96,7 @@ private: friend class boost::iterator_core_access; DynamicType::Ptr m_Type; - int m_Index; + DynamicType::ObjectVector::size_type m_Index; mutable shared_ptr m_Current; void increment(void) diff --git a/lib/base/logger.h b/lib/base/logger.h index 6c0fcfad8..4f146c37d 100644 --- a/lib/base/logger.h +++ b/lib/base/logger.h @@ -80,7 +80,7 @@ private: static std::set m_Loggers; static bool m_ConsoleLogEnabled; - friend void Log(LogSeverity severity, const String& facility, + friend I2_BASE_API void Log(LogSeverity severity, const String& facility, const String& message); }; diff --git a/lib/base/scriptutils.cpp b/lib/base/scriptutils.cpp index b14a313b8..50659bdc3 100644 --- a/lib/base/scriptutils.cpp +++ b/lib/base/scriptutils.cpp @@ -90,7 +90,7 @@ Array::Ptr ScriptUtils::Intersection(const std::vector& arguments) Array::Ptr arr1 = static_cast(arguments[0])->ShallowClone(); - for (int i = 1; i < arguments.size(); i++) { + for (std::vector::size_type i = 1; i < arguments.size(); i++) { std::sort(arr1->Begin(), arr1->End()); Array::Ptr arr2 = static_cast(arguments[i])->ShallowClone(); @@ -133,7 +133,7 @@ void ScriptUtils::Log(const std::vector& arguments) Array::Ptr ScriptUtils::Range(const std::vector& arguments) { - int start, end, increment; + double start, end, increment; switch (arguments.size()) { case 1: @@ -159,7 +159,7 @@ Array::Ptr ScriptUtils::Range(const std::vector& arguments) (start > end && increment >= 0)) return result; - for (int i = start; i < end; i += increment) { + for (double i = start; i < end; i += increment) { result->Add(i); } diff --git a/lib/base/serializer.cpp b/lib/base/serializer.cpp index cfea4069f..f868e86d6 100644 --- a/lib/base/serializer.cpp +++ b/lib/base/serializer.cpp @@ -138,7 +138,7 @@ static Dictionary::Ptr DeserializeDictionary(const Dictionary::Ptr& input, bool ObjectLock olock(input); BOOST_FOREACH(const Dictionary::Pair& kv, input) { - result->Set(kv.first, Deserialize(kv.second, attributeTypes)); + result->Set(kv.first, Deserialize(kv.second, safe_mode, attributeTypes)); } return result; diff --git a/lib/base/threadpool.h b/lib/base/threadpool.h index 4fa4d63b6..7460a5d21 100644 --- a/lib/base/threadpool.h +++ b/lib/base/threadpool.h @@ -110,7 +110,7 @@ private: int m_ID; static int m_NextID; - int m_MaxThreads; + unsigned int m_MaxThreads; boost::thread_group m_ThreadGroup; diff --git a/lib/base/tlsstream.cpp b/lib/base/tlsstream.cpp index 7a9ab3901..4897a2b2e 100644 --- a/lib/base/tlsstream.cpp +++ b/lib/base/tlsstream.cpp @@ -239,5 +239,5 @@ close_socket: bool TlsStream::IsEof(void) const { - return BIO_eof(m_BIO); + return (BIO_eof(m_BIO) == 1); } diff --git a/lib/base/type.cpp b/lib/base/type.cpp index b0dd1adc7..54a446747 100644 --- a/lib/base/type.cpp +++ b/lib/base/type.cpp @@ -54,12 +54,12 @@ Object::Ptr Type::Instantiate(void) const bool Type::IsAbstract(void) const { - return GetAttributes() & TAAbstract; + return ((GetAttributes() & TAAbstract) != 0); } bool Type::IsSafe(void) const { - return GetAttributes() & TASafe; + return ((GetAttributes() & TASafe) != 0); } bool Type::IsAssignableFrom(const Type *other) const diff --git a/lib/base/utility.cpp b/lib/base/utility.cpp index d5d5de2ce..2818151cf 100644 --- a/lib/base/utility.cpp +++ b/lib/base/utility.cpp @@ -723,7 +723,7 @@ String Utility::NaturalJoin(const std::vector& tokens) { String result; - for (int i = 0; i < tokens.size(); i++) { + for (std::vector::size_type i = 0; i < tokens.size(); i++) { result += tokens[i]; if (tokens.size() > i + 1) { @@ -960,13 +960,13 @@ int Utility::CompareVersion(const String& v1, const String& v2) boost::algorithm::split(tokensv1, v1, boost::is_any_of(".")); boost::algorithm::split(tokensv2, v2, boost::is_any_of(".")); - for (int i = 0; i < tokensv2.size() - tokensv1.size(); i++) + for (std::vector::size_type i = 0; i < tokensv2.size() - tokensv1.size(); i++) tokensv1.push_back("0"); - for (int i = 0; i < tokensv1.size() - tokensv2.size(); i++) + for (std::vector::size_type i = 0; i < tokensv1.size() - tokensv2.size(); i++) tokensv2.push_back("0"); - for (size_t i = 0; i < tokensv1.size(); i++) { + for (std::vector::size_type i = 0; i < tokensv1.size(); i++) { if (Convert::ToLong(tokensv2[i]) > Convert::ToLong(tokensv1[i])) return 1; else if (Convert::ToLong(tokensv2[i]) < Convert::ToLong(tokensv1[i])) diff --git a/lib/base/value-operators.cpp b/lib/base/value-operators.cpp index 049c74ee6..3cee31e1c 100644 --- a/lib/base/value-operators.cpp +++ b/lib/base/value-operators.cpp @@ -152,7 +152,7 @@ bool Value::operator==(const Value& rhs) const if (arr1->GetLength() != arr2->GetLength()) return false; - for (int i = 0; i < arr1->GetLength(); i++) { + for (Array::SizeType i = 0; i < arr1->GetLength(); i++) { if (arr1->Get(i) != arr2->Get(i)) return false; } @@ -471,7 +471,7 @@ Value icinga::operator>>(int lhs, const Value& rhs) return Value(lhs) >> rhs; } -Value icinga::operator<(const Value& lhs, const Value& rhs) +bool icinga::operator<(const Value& lhs, const Value& rhs) { if (lhs.IsString() && rhs.IsString()) return static_cast(lhs) < static_cast(rhs); @@ -483,27 +483,27 @@ Value icinga::operator<(const Value& lhs, const Value& rhs) BOOST_THROW_EXCEPTION(std::invalid_argument("Operator < cannot be applied to values of type '" + lhs.GetTypeName() + "' and '" + rhs.GetTypeName() + "'")); } -Value icinga::operator<(const Value& lhs, double rhs) +bool icinga::operator<(const Value& lhs, double rhs) { return lhs < Value(rhs); } -Value icinga::operator<(double lhs, const Value& rhs) +bool icinga::operator<(double lhs, const Value& rhs) { return Value(lhs) < rhs; } -Value icinga::operator<(const Value& lhs, int rhs) +bool icinga::operator<(const Value& lhs, int rhs) { return lhs < Value(rhs); } -Value icinga::operator<(int lhs, const Value& rhs) +bool icinga::operator<(int lhs, const Value& rhs) { return Value(lhs) < rhs; } -Value icinga::operator>(const Value& lhs, const Value& rhs) +bool icinga::operator>(const Value& lhs, const Value& rhs) { if (lhs.IsString() && rhs.IsString()) return static_cast(lhs) > static_cast(rhs); @@ -515,27 +515,27 @@ Value icinga::operator>(const Value& lhs, const Value& rhs) BOOST_THROW_EXCEPTION(std::invalid_argument("Operator > cannot be applied to values of type '" + lhs.GetTypeName() + "' and '" + rhs.GetTypeName() + "'")); } -Value icinga::operator>(const Value& lhs, double rhs) +bool icinga::operator>(const Value& lhs, double rhs) { return lhs > Value(rhs); } -Value icinga::operator>(double lhs, const Value& rhs) +bool icinga::operator>(double lhs, const Value& rhs) { return Value(lhs) > rhs; } -Value icinga::operator>(const Value& lhs, int rhs) +bool icinga::operator>(const Value& lhs, int rhs) { return lhs > Value(rhs); } -Value icinga::operator>(int lhs, const Value& rhs) +bool icinga::operator>(int lhs, const Value& rhs) { return Value(lhs) > rhs; } -Value icinga::operator<=(const Value& lhs, const Value& rhs) +bool icinga::operator<=(const Value& lhs, const Value& rhs) { if (lhs.IsString() && rhs.IsString()) return static_cast(lhs) <= static_cast(rhs); @@ -547,27 +547,27 @@ Value icinga::operator<=(const Value& lhs, const Value& rhs) BOOST_THROW_EXCEPTION(std::invalid_argument("Operator <= cannot be applied to values of type '" + lhs.GetTypeName() + "' and '" + rhs.GetTypeName() + "'")); } -Value icinga::operator<=(const Value& lhs, double rhs) +bool icinga::operator<=(const Value& lhs, double rhs) { return lhs <= Value(rhs); } -Value icinga::operator<=(double lhs, const Value& rhs) +bool icinga::operator<=(double lhs, const Value& rhs) { return Value(lhs) <= rhs; } -Value icinga::operator<=(const Value& lhs, int rhs) +bool icinga::operator<=(const Value& lhs, int rhs) { return lhs <= Value(rhs); } -Value icinga::operator<=(int lhs, const Value& rhs) +bool icinga::operator<=(int lhs, const Value& rhs) { return Value(lhs) <= rhs; } -Value icinga::operator>=(const Value& lhs, const Value& rhs) +bool icinga::operator>=(const Value& lhs, const Value& rhs) { if (lhs.IsString() && rhs.IsString()) return static_cast(lhs) >= static_cast(rhs); @@ -579,22 +579,22 @@ Value icinga::operator>=(const Value& lhs, const Value& rhs) BOOST_THROW_EXCEPTION(std::invalid_argument("Operator >= cannot be applied to values of type '" + lhs.GetTypeName() + "' and '" + rhs.GetTypeName() + "'")); } -Value icinga::operator>=(const Value& lhs, double rhs) +bool icinga::operator>=(const Value& lhs, double rhs) { return lhs >= Value(rhs); } -Value icinga::operator>=(double lhs, const Value& rhs) +bool icinga::operator>=(double lhs, const Value& rhs) { return Value(lhs) >= rhs; } -Value icinga::operator>=(const Value& lhs, int rhs) +bool icinga::operator>=(const Value& lhs, int rhs) { return lhs >= Value(rhs); } -Value icinga::operator>=(int lhs, const Value& rhs) +bool icinga::operator>=(int lhs, const Value& rhs) { return Value(lhs) >= rhs; } diff --git a/lib/base/value.cpp b/lib/base/value.cpp index 9b466269b..fd804caeb 100644 --- a/lib/base/value.cpp +++ b/lib/base/value.cpp @@ -17,10 +17,10 @@ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ******************************************************************************/ -#include "base/application.h" +#include "base/value.h" #include "base/array.h" -#include "base/logger_fwd.h" -#include "base/utility.h" +#include "base/dictionary.h" +#include "base/type.h" #include #include diff --git a/lib/base/value.h b/lib/base/value.h index cec38ab10..27698c20e 100644 --- a/lib/base/value.h +++ b/lib/base/value.h @@ -192,29 +192,29 @@ I2_BASE_API Value operator>>(double lhs, const Value& rhs); I2_BASE_API Value operator>>(const Value& lhs, int rhs); I2_BASE_API Value operator>>(int lhs, const Value& rhs); -I2_BASE_API Value operator<(const Value& lhs, const Value& rhs); -I2_BASE_API Value operator<(const Value& lhs, double rhs); -I2_BASE_API Value operator<(double lhs, const Value& rhs); -I2_BASE_API Value operator<(const Value& lhs, int rhs); -I2_BASE_API Value operator<(int lhs, const Value& rhs); +I2_BASE_API bool operator<(const Value& lhs, const Value& rhs); +I2_BASE_API bool operator<(const Value& lhs, double rhs); +I2_BASE_API bool operator<(double lhs, const Value& rhs); +I2_BASE_API bool operator<(const Value& lhs, int rhs); +I2_BASE_API bool operator<(int lhs, const Value& rhs); -I2_BASE_API Value operator>(const Value& lhs, const Value& rhs); -I2_BASE_API Value operator>(const Value& lhs, double rhs); -I2_BASE_API Value operator>(double lhs, const Value& rhs); -I2_BASE_API Value operator>(const Value& lhs, int rhs); -I2_BASE_API Value operator>(int lhs, const Value& rhs); +I2_BASE_API bool operator>(const Value& lhs, const Value& rhs); +I2_BASE_API bool operator>(const Value& lhs, double rhs); +I2_BASE_API bool operator>(double lhs, const Value& rhs); +I2_BASE_API bool operator>(const Value& lhs, int rhs); +I2_BASE_API bool operator>(int lhs, const Value& rhs); -I2_BASE_API Value operator<=(const Value& lhs, const Value& rhs); -I2_BASE_API Value operator<=(const Value& lhs, double rhs); -I2_BASE_API Value operator<=(double lhs, const Value& rhs); -I2_BASE_API Value operator<=(const Value& lhs, int rhs); -I2_BASE_API Value operator<=(int lhs, const Value& rhs); +I2_BASE_API bool operator<=(const Value& lhs, const Value& rhs); +I2_BASE_API bool operator<=(const Value& lhs, double rhs); +I2_BASE_API bool operator<=(double lhs, const Value& rhs); +I2_BASE_API bool operator<=(const Value& lhs, int rhs); +I2_BASE_API bool operator<=(int lhs, const Value& rhs); -I2_BASE_API Value operator>=(const Value& lhs, const Value& rhs); -I2_BASE_API Value operator>=(const Value& lhs, double rhs); -I2_BASE_API Value operator>=(double lhs, const Value& rhs); -I2_BASE_API Value operator>=(const Value& lhs, int rhs); -I2_BASE_API Value operator>=(int lhs, const Value& rhs); +I2_BASE_API bool operator>=(const Value& lhs, const Value& rhs); +I2_BASE_API bool operator>=(const Value& lhs, double rhs); +I2_BASE_API bool operator>=(double lhs, const Value& rhs); +I2_BASE_API bool operator>=(const Value& lhs, int rhs); +I2_BASE_API bool operator>=(int lhs, const Value& rhs); I2_BASE_API std::ostream& operator<<(std::ostream& stream, const Value& value); I2_BASE_API std::istream& operator>>(std::istream& stream, Value& value); diff --git a/lib/config/aexpression.cpp b/lib/config/aexpression.cpp index 77aeefe4d..42ece3a71 100644 --- a/lib/config/aexpression.cpp +++ b/lib/config/aexpression.cpp @@ -264,7 +264,7 @@ Value AExpression::OpFunctionCall(const AExpression *expr, const Dictionary::Ptr Array::Ptr arr = expr->EvaluateOperand2(locals); std::vector arguments; int index = 0; - for (int index = 0; index < arr->GetLength(); index++) { + for (Array::SizeType index = 0; index < arr->GetLength(); index++) { const AExpression::Ptr& aexpr = arr->Get(index); arguments.push_back(aexpr->Evaluate(locals)); } @@ -279,7 +279,7 @@ Value AExpression::OpArray(const AExpression *expr, const Dictionary::Ptr& local if (arr) { int index = 0; - for (int index = 0; index < arr->GetLength(); index++) { + for (Array::SizeType index = 0; index < arr->GetLength(); index++) { const AExpression::Ptr& aexpr = arr->Get(index); result->Add(aexpr->Evaluate(locals)); } @@ -298,7 +298,7 @@ Value AExpression::OpDict(const AExpression *expr, const Dictionary::Ptr& locals if (arr) { int index = 0; - for (int index = 0; index < arr->GetLength(); index++) { + for (Array::SizeType index = 0; index < arr->GetLength(); index++) { const AExpression::Ptr& aexpr = arr->Get(index); Dictionary::Ptr alocals = in_place ? locals : result; aexpr->Evaluate(alocals); @@ -483,7 +483,7 @@ Value AExpression::FunctionWrapper(const std::vector& arguments, const Ar Dictionary::Ptr locals = make_shared(); locals->Set("__parent", scope); - for (int i = 0; i < std::min(arguments.size(), funcargs->GetLength()); i++) + for (std::vector::size_type i = 0; i < std::min(arguments.size(), funcargs->GetLength()); i++) locals->Set(funcargs->Get(i), arguments[i]); expr->Evaluate(locals); diff --git a/lib/config/config_lexer.ll b/lib/config/config_lexer.ll index 8970edd24..d5d5eed85 100644 --- a/lib/config/config_lexer.ll +++ b/lib/config/config_lexer.ll @@ -58,10 +58,10 @@ static void lb_init(lex_buf *lb) lb->size = 0; } -static void lb_cleanup(lex_buf *lb) +/*static void lb_cleanup(lex_buf *lb) { free(lb->buf); -} +}*/ static void lb_append_char(lex_buf *lb, char new_char) { diff --git a/lib/config/config_parser.yy b/lib/config/config_parser.yy index 0425a47c9..2a8f603a7 100644 --- a/lib/config/config_parser.yy +++ b/lib/config/config_parser.yy @@ -932,7 +932,7 @@ apply: std::vector types = ApplyRule::GetTargetTypes(type); String typeNames; - for (int i = 0; i < types.size(); i++) { + for (std::vector::size_type i = 0; i < types.size(); i++) { if (typeNames != "") { if (i == types.size() - 1) typeNames += " or "; diff --git a/lib/icinga/externalcommandprocessor.cpp b/lib/icinga/externalcommandprocessor.cpp index 09761437c..5eae0ca53 100644 --- a/lib/icinga/externalcommandprocessor.cpp +++ b/lib/icinga/externalcommandprocessor.cpp @@ -154,7 +154,7 @@ void ExternalCommandProcessor::Execute(double time, const String& command, const std::copy(arguments.begin(), arguments.begin() + argnum - 1, realArguments.begin()); String last_argument; - for (int i = argnum - 1; i < arguments.size(); i++) { + for (std::vector::size_type i = argnum - 1; i < arguments.size(); i++) { if (!last_argument.IsEmpty()) last_argument += ";"; diff --git a/lib/remote/apiclient.h b/lib/remote/apiclient.h index 945313a95..41f014252 100644 --- a/lib/remote/apiclient.h +++ b/lib/remote/apiclient.h @@ -67,7 +67,6 @@ private: Stream::Ptr m_Stream; ConnectionRole m_Role; double m_Seen; - bool m_Syncing; bool ProcessMessage(void); void MessageThreadProc(void);