[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 50/50: Merge branch 'ctrlport'
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 50/50: Merge branch 'ctrlport' |
Date: |
Wed, 15 Apr 2015 21:07:58 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch master
in repository gnuradio.
commit b092142302bcf8c771ec68e61da7781eb406c86f
Merge: 676d5cb 0ab6607
Author: Johnathan Corgan <address@hidden>
Date: Wed Apr 15 13:42:42 2015 -0700
Merge branch 'ctrlport'
CMakeLists.txt | 8 +
cmake/Modules/FindThrift.cmake | 79 ++
cmake/Modules/GrTest.cmake | 3 +-
config.h.in | 6 +
docs/doxygen/other/build_guide.dox | 13 +-
docs/doxygen/other/ctrlport.dox | 425 +++++++++-
docs/doxygen/other/perf_counters.dox | 10 +
gnuradio-runtime/include/gnuradio/CMakeLists.txt | 10 +
gnuradio-runtime/include/gnuradio/prefs.h | 32 +-
gnuradio-runtime/include/gnuradio/rpcbufferedget.h | 65 ++
gnuradio-runtime/include/gnuradio/rpcmanager.h | 2 +-
.../include/gnuradio/rpcpmtconverters_thrift.h | 74 ++
.../include/gnuradio/rpcregisterhelpers.h | 22 +-
.../include/gnuradio/rpcserver_booter_thrift.h | 52 ++
.../include/gnuradio/rpcserver_selector.h | 10 +-
.../include/gnuradio/rpcserver_thrift.h | 230 ++++++
.../include/gnuradio/thrift_application_base.h | 253 ++++++
.../include/gnuradio/thrift_server_template.h | 160 ++++
gnuradio-runtime/lib/block.cc | 12 +-
gnuradio-runtime/lib/controlport/CMakeLists.txt | 70 +-
gnuradio-runtime/lib/controlport/rpcmanager.cc | 14 +-
.../lib/controlport/rpcserver_booter_aggregator.cc | 3 +-
.../lib/controlport/rpcserver_selector.cc | 15 +-
.../lib/controlport/thrift/gnuradio.thrift | 108 +++
.../controlport/thrift/rpcpmtconverters_thrift.cc | 303 ++++++++
.../controlport/thrift/rpcserver_booter_thrift.cc | 137 ++++
.../lib/controlport/thrift/rpcserver_thrift.cc | 194 +++++
.../lib/controlport/thrift/thrift.conf.example | 4 +
.../controlport/thrift/thrift_application_base.cc} | 13 +-
gnuradio-runtime/lib/prefs.cc | 28 +-
.../python/gnuradio/ctrlport/CMakeLists.txt | 43 ++
.../gnuradio/ctrlport/GNURadioControlPortClient.py | 132 ++++
.../python/gnuradio/ctrlport/GrDataPlotter.py | 6 +-
.../python/gnuradio/ctrlport/RPCConnection.py | 115 +++
.../gnuradio/ctrlport/RPCConnectionThrift.py | 208 +++++
.../python/gnuradio/ctrlport/gr-ctrlport-monitor | 771 +++++++++++++++++++
.../python/gnuradio/ctrlport/gr-perf-monitorx | 856 +++++++++++++++++++++
.../python/gnuradio/ctrlport/monitor.py | 6 +-
gnuradio-runtime/swig/prefs.i | 4 +-
gr-blocks/grc/blocks_block_tree.xml | 2 +
gr-blocks/grc/blocks_ctrlport_performance.xml | 48 ++
gr-blocks/grc/blocks_ctrlport_viewer.xml | 48 ++
gr-blocks/lib/ctrlport_probe2_b_impl.cc | 31 +-
gr-blocks/lib/ctrlport_probe2_b_impl.h | 6 +-
gr-blocks/lib/ctrlport_probe2_c_impl.cc | 31 +-
gr-blocks/lib/ctrlport_probe2_c_impl.h | 7 +-
gr-blocks/lib/ctrlport_probe2_f_impl.cc | 32 +-
gr-blocks/lib/ctrlport_probe2_f_impl.h | 7 +-
gr-blocks/lib/ctrlport_probe2_i_impl.cc | 32 +-
gr-blocks/lib/ctrlport_probe2_i_impl.h | 7 +-
gr-blocks/lib/ctrlport_probe2_s_impl.cc | 31 +-
gr-blocks/lib/ctrlport_probe2_s_impl.h | 7 +-
gr-blocks/python/blocks/CMakeLists.txt | 6 +-
gr-blocks/python/blocks/qa_cpp_py_binding.py | 173 +++++
gr-blocks/python/blocks/qa_cpp_py_binding_set.py | 151 ++++
gr-blocks/python/blocks/qa_ctrlport_probes.py | 210 ++++-
56 files changed, 5091 insertions(+), 234 deletions(-)
- [Commit-gnuradio] [gnuradio] 10/50: controlport: more cleanup of python code to help generalize the interface, (continued)
- [Commit-gnuradio] [gnuradio] 10/50: controlport: more cleanup of python code to help generalize the interface, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 38/50: controlport: cleanup, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 41/50: controlport: cmake fixes to FindThrift for when thrift is not installed., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 43/50: controlport: more documentation and linking info., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 37/50: controlport: Some documentation, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 32/50: controlport: moving the generation of the Thrift endpoint string to the application_started() function., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 42/50: controlport: QA needs to get host and port out of the endpoint., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 27/50: controlport: cleaning up; trying to handle shutdown better., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 19/50: controlport: simple style editing., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 36/50: controlport: renamed some functions for clairity, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 50/50: Merge branch 'ctrlport',
git <=
- [Commit-gnuradio] [gnuradio] 26/50: docs: adding in info on ControlPort and Thrift., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 49/50: cmake: fix case for ctrlport when no backends installed, git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 12/50: controlport: reorg abstraction layers for RPC connections., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 46/50: controlport: avoid copy of outknobs (a temporary)., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 47/50: controlport: cleaner, more robust interface for buffer gets., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 48/50: controlport: better controlport probe mutex handling., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 44/50: docs: cleaning up some doxygen warnings and formatting., git, 2015/04/16
- [Commit-gnuradio] [gnuradio] 05/50: controlport: working gr-perf-monitorx application, git, 2015/04/16