Browse Source

fix logger: sscanf was used wrong for custom topics file

using scanf with %s reads until the first whitespace, which included the
comma (as per C standard and tested on linux). Behavior on NuttX differs.

This makes it work on both Linux and Nuttx.
sbg
Beat Küng 8 years ago
parent
commit
30f80515ec
  1. 19
      src/modules/logger/logger.cpp
  2. 2
      src/modules/logger/logger.h

19
src/modules/logger/logger.cpp

@ -581,7 +581,6 @@ int Logger::add_topics_from_file(const char *fname) @@ -581,7 +581,6 @@ int Logger::add_topics_from_file(const char *fname)
}
/* call add_topic for each topic line in the file */
// format is TOPIC_NAME, [interval]
for (;;) {
/* get a line, bail on error/EOF */
@ -596,14 +595,24 @@ int Logger::add_topics_from_file(const char *fname) @@ -596,14 +595,24 @@ int Logger::add_topics_from_file(const char *fname)
continue;
}
// default interval to zero
// read line with format: <topic_name>[, <interval>]
interval = 0;
int nfields = sscanf(line, "%s, %u", topic_name, &interval);
int nfields = sscanf(line, "%s %u", topic_name, &interval);
if (nfields > 0) {
int name_len = strlen(topic_name);
if (name_len > 0 && topic_name[name_len - 1] == ',') {
topic_name[name_len - 1] = '\0';
}
/* add topic with specified interval */
add_topic(topic_name, interval);
ntopics++;
if (add_topic(topic_name, interval) >= 0) {
ntopics++;
} else {
PX4_ERR("Failed to add topic %s", topic_name);
}
}
}

2
src/modules/logger/logger.h

@ -99,7 +99,7 @@ public: @@ -99,7 +99,7 @@ public:
* (because it does not write an ADD_LOGGED_MSG message).
* @param name topic name
* @param interval limit rate if >0, otherwise log as fast as the topic is updated.
* @return 0 on success
* @return -1 on error, file descriptor otherwise
*/
int add_topic(const char *name, unsigned interval);

Loading…
Cancel
Save