-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[core] Adapted c-api of monitoring in the way to remain c-return value compliant #1862
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,23 +32,23 @@ extern "C" | |
{ | ||
ECALC_API int eCAL_Monitoring_SetExclFilter(const char* filter_) | ||
{ | ||
return(eCAL::Monitoring::SetExclFilter(std::string(filter_))); | ||
return(static_cast<int>(!eCAL::Monitoring::SetExclFilter(std::string(filter_)))); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: no header providing "std::string" is directly included [misc-include-cleaner] ecal/core/src/cimpl/ecal_monitoring_cimpl.cpp:26: + #include <string> |
||
} | ||
|
||
ECALC_API int eCAL_Monitoring_SetInclFilter(const char* filter_) | ||
{ | ||
return(eCAL::Monitoring::SetInclFilter(std::string(filter_))); | ||
return(static_cast<int>(!eCAL::Monitoring::SetInclFilter(std::string(filter_)))); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: no header providing "eCAL::Monitoring::SetInclFilter" is directly included [misc-include-cleaner] return(static_cast<int>(!eCAL::Monitoring::SetInclFilter(std::string(filter_))));
^ |
||
} | ||
|
||
ECALC_API int eCAL_Monitoring_SetFilterState(int state_) | ||
{ | ||
return(eCAL::Monitoring::SetFilterState(state_ != 0)); | ||
return(static_cast<int>(!eCAL::Monitoring::SetFilterState(state_ != 0))); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: no header providing "eCAL::Monitoring::SetFilterState" is directly included [misc-include-cleaner] return(static_cast<int>(!eCAL::Monitoring::SetFilterState(state_ != 0)));
^ |
||
} | ||
|
||
ECALC_API int eCAL_Monitoring_GetMonitoring(void* buf_, int buf_len_) | ||
{ | ||
std::string buf; | ||
if (eCAL::Monitoring::GetMonitoring(buf) != 0) | ||
if (eCAL::Monitoring::GetMonitoring(buf)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: no header providing "eCAL::Monitoring::GetMonitoring" is directly included [misc-include-cleaner] if (eCAL::Monitoring::GetMonitoring(buf))
^ |
||
{ | ||
return(CopyBuffer(buf_, buf_len_, buf)); | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1055,7 +1055,7 @@ PyObject* mon_monitoring(PyObject* /*self*/, PyObject* /*args*/) | |
PyObject* retDict = PyDict_New(); | ||
|
||
eCAL::Monitoring::SMonitoring monitoring; | ||
if (eCAL::Monitoring::GetMonitoring(monitoring) != 0) | ||
if (eCAL::Monitoring::GetMonitoring(monitoring)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: no header providing "eCAL::Monitoring::GetMonitoring" is directly included [misc-include-cleaner] if (eCAL::Monitoring::GetMonitoring(monitoring))
^ |
||
{ | ||
PyObject* val; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: no header providing "eCAL::Monitoring::SetExclFilter" is directly included [misc-include-cleaner]
ecal/core/src/cimpl/ecal_monitoring_cimpl.cpp:27: