[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 10/12: android: rutnime: better logging and
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 10/12: android: rutnime: better logging and cleanup |
Date: |
Fri, 19 Feb 2016 13:58:40 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch android
in repository gnuradio.
commit 2aee973e82c8679dcc68f3ad7950fedfff26b3b4
Author: Tom Rondeau <address@hidden>
Date: Tue May 5 10:10:19 2015 -0400
android: rutnime: better logging and cleanup
---
gnuradio-runtime/include/gnuradio/flowgraph.h | 1 +
.../include/gnuradio/thrift_application_base.h | 4 +-
.../controlport/thrift/rpcserver_booter_thrift.cc | 2 +-
gnuradio-runtime/lib/flowgraph.cc | 52 +++++++++++++++++-----
4 files changed, 46 insertions(+), 13 deletions(-)
diff --git a/gnuradio-runtime/include/gnuradio/flowgraph.h
b/gnuradio-runtime/include/gnuradio/flowgraph.h
index 280c01f..347d9ca 100644
--- a/gnuradio-runtime/include/gnuradio/flowgraph.h
+++ b/gnuradio-runtime/include/gnuradio/flowgraph.h
@@ -26,6 +26,7 @@
#include <gnuradio/api.h>
#include <gnuradio/basic_block.h>
#include <gnuradio/io_signature.h>
+#include <gnuradio/logger.h>
#include <iostream>
namespace gr {
diff --git a/gnuradio-runtime/include/gnuradio/thrift_application_base.h
b/gnuradio-runtime/include/gnuradio/thrift_application_base.h
index d372193..967c609 100644
--- a/gnuradio-runtime/include/gnuradio/thrift_application_base.h
+++ b/gnuradio-runtime/include/gnuradio/thrift_application_base.h
@@ -217,8 +217,8 @@ void thrift_application_base<TserverBase,
TserverClass>::start_application()
}
if(!app_started) {
- GR_WARN("thrift_application_base",
"thrift_application_base::start_application(), "
- "timeout waiting to port number might have failed?");
+ GR_LOG_WARN("thrift", "thrift_application_base::start_application(), "
+ "timeout waiting to port number might have failed?");
}
p_impl->d_application_initilized = true;
diff --git a/gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc
b/gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc
index 1d6cafe..3284fa0 100644
--- a/gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc
+++ b/gnuradio-runtime/lib/controlport/thrift/rpcserver_booter_thrift.cc
@@ -124,7 +124,7 @@ bool thrift_application_base<rpcserver_base,
rpcserver_booter_thrift>::applicati
set_endpoint(endpoint);
- GR_LOG_INFO(d_logger, "Apache Thrift: " + endpoint);
+ GR_INFO("thrift_application_base", "Apache Thrift: " + endpoint);
d_thirft_is_running = true;
result = true;
}
diff --git a/gnuradio-runtime/lib/flowgraph.cc
b/gnuradio-runtime/lib/flowgraph.cc
index b990236..1889d70 100644
--- a/gnuradio-runtime/lib/flowgraph.cc
+++ b/gnuradio-runtime/lib/flowgraph.cc
@@ -87,6 +87,7 @@ namespace gr {
std::stringstream msg;
msg << "cannot disconnect edge " << edge(src, dst) << ", not found";
+ GR_LOG_WARN(LOG, msg.str());
throw std::invalid_argument(msg.str());
}
@@ -100,7 +101,11 @@ namespace gr {
int ninputs, noutputs;
if(FLOWGRAPH_DEBUG)
- std::cout << "Validating block: " << (*p) << std::endl;
+ {
+ std::stringstream msg;
+ msg << "Validating block: " << (*p);
+ GR_LOG_DEBUG(LOG, msg.str());
+ }
used_ports = calc_used_ports(*p, true); // inputs
ninputs = used_ports.size();
@@ -115,6 +120,7 @@ namespace gr {
msg << "check topology failed on " << (*p)
<< " using ninputs=" << ninputs
<< ", noutputs=" << noutputs;
+ GR_LOG_ERROR(LOG, msg.str());
throw std::runtime_error(msg.str());
}
}
@@ -135,6 +141,7 @@ namespace gr {
if(port < 0) {
msg << "negative port number " << port << " is invalid";
+ GR_LOG_ERROR(LOG, msg.str());
throw std::invalid_argument(msg.str());
}
@@ -145,6 +152,7 @@ namespace gr {
msg << "(none)";
else
msg << max-1;
+ GR_LOG_ERROR(LOG, msg.str());
throw std::invalid_argument(msg.str());
}
}
@@ -153,15 +161,23 @@ namespace gr {
flowgraph::check_valid_port(const msg_endpoint &e)
{
if(FLOWGRAPH_DEBUG)
- std::cout << "check_valid_port( " << e.block() << ", " << e.port() <<
")\n";
+ {
+ std::stringstream msg;
+ msg << "check_valid_port( " << e.block() << ", " << e.port() << ")";
+ GR_LOG_DEBUG(LOG, msg.str());
+ }
if(!e.block()->has_msg_port(e.port())) {
+ std::stringstream msg;
const gr::basic_block::msg_queue_map_t& msg_map =
e.block()->get_msg_map();
- std::cout << "Could not find port: " << e.port() << " in:" << std::endl;
+ msg << "Could not find port: " << e.port() << " in:";
for (gr::basic_block::msg_queue_map_t::const_iterator it =
msg_map.begin(); it != msg_map.end(); ++it)
- std::cout << it->first << std::endl;
- std::cout << std::endl;
- throw std::invalid_argument("invalid msg port in connect() or
disconnect()");
+ msg << it->first << std::endl;
+ GR_LOG_WARN(LOG, msg.str());
+ msg.str(std::string());
+ msg << "invalid msg port in connect() or disconnect()";
+ GR_LOG_ERROR(LOG, msg.str());
+ throw std::invalid_argument(msg.str());
}
}
@@ -173,6 +189,7 @@ namespace gr {
if(p->dst() == dst) {
std::stringstream msg;
msg << "destination already in use by edge " << (*p);
+ GR_LOG_ERROR(LOG, msg.str());
throw std::invalid_argument(msg.str());
}
}
@@ -187,6 +204,7 @@ namespace gr {
std::stringstream msg;
msg << "itemsize mismatch: " << src << " using " << src_size
<< ", " << dst << " using " << dst_size;
+ GR_LOG_ERROR(LOG, msg.str());
throw std::invalid_argument(msg.str());
}
}
@@ -270,6 +288,7 @@ namespace gr {
msg << block << ": insufficient connected "
<< (check_inputs ? "input ports " : "output ports ")
<< "(" << min_ports << " needed, " << nports << " connected)";
+ GR_LOG_ERROR(LOG, msg.str());
throw std::runtime_error(msg.str());
}
@@ -277,6 +296,7 @@ namespace gr {
msg << block << ": too many connected "
<< (check_inputs ? "input ports " : "output ports ")
<< "(" << max_ports << " allowed, " << nports << " connected)";
+ GR_LOG_ERROR(LOG, msg.str());
throw std::runtime_error(msg.str());
}
@@ -286,6 +306,7 @@ namespace gr {
msg << block << ": missing connection "
<< (check_inputs ? "to input port " : "from output port ")
<< i;
+ GR_LOG_ERROR(LOG, msg.str());
throw std::runtime_error(msg.str());
}
}
@@ -476,19 +497,24 @@ namespace gr {
basic_block_vector_t blocks(calc_downstream_blocks(block));
for(basic_block_viter_t p = blocks.begin(); p != blocks.end(); p++) {
+ std::stringstream msg;
switch((*p)->color()) {
case basic_block::WHITE:
topological_dfs_visit(*p, output);
break;
case basic_block::GREY:
- throw std::runtime_error("flow graph has loops!");
+ msg << "flow graph has loops!";
+ GR_LOG_ERROR(LOG, msg.str());
+ throw std::runtime_error(msg.str());
case basic_block::BLACK:
continue;
default:
- throw std::runtime_error("invalid color on block!");
+ msg << "invalid color on block!";
+ GR_LOG_ERROR(LOG, msg.str());
+ throw std::runtime_error(msg.str());
}
}
@@ -503,7 +529,10 @@ namespace gr {
check_valid_port(dst);
for(msg_edge_viter_t p = d_msg_edges.begin(); p != d_msg_edges.end(); p++)
{
if(p->src() == src && p->dst() == dst){
- throw std::runtime_error("connect called on already connected edge!");
+ std::stringstream msg;
+ msg << "connect called on already connected edge!";
+ GR_LOG_ERROR(LOG, msg.str());
+ throw std::runtime_error(msg.str());
}
}
d_msg_edges.push_back(msg_edge(src,dst));
@@ -520,7 +549,10 @@ namespace gr {
return;
}
}
- throw std::runtime_error("disconnect called on non-connected edge!");
+ std::stringstream msg;
+ msg << "disconnect called on non-connected edge!";
+ GR_LOG_ERROR(LOG, msg.str());
+ throw std::runtime_error(msg.str());
}
std::string
- [Commit-gnuradio] [gnuradio] branch android updated (ff27361 -> b7870d6), git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 12/12: analog: add ControlPort interfaces to frequency_modulator block., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 05/12: android: logger: adding Android log functions for different logging levels., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 07/12: android: runtime: issues related to vmcircbuf; only mmap_tmpfile version working currently., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 03/12: android: cmake: changed to using C checks for headers instead of C++., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 08/12: android: runtime: need to use a usable, writable location for android apps, so use the tmp path that we set up to point to the app's home directory., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 04/12: android: cmake: adding Boost deps used static builds; ordering in this patch is important., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 06/12: android: runtime: Android does not support pthread_setaffinity_np; turned this into a nop call., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 09/12: android: runtime: moved global block registry to a static get function., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 10/12: android: rutnime: better logging and cleanup,
git <=
- [Commit-gnuradio] [gnuradio] 11/12: cmake: cmake should get native thrift binary when cross compiling., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 01/12: android: fft: problems with wisdom files and MEASURE version of FFTW. Using a setting for the FFTW plan options if android or not., git, 2016/02/19
- [Commit-gnuradio] [gnuradio] 02/12: android: cmake: adding toolchain file for building., git, 2016/02/19