commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] branch master updated (5cb307e -> 1581681)


From: git
Subject: [Commit-gnuradio] [gnuradio] branch master updated (5cb307e -> 1581681)
Date: Tue, 13 Jan 2015 01:04:25 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a change to branch master
in repository gnuradio.

      from  5cb307e   Merge branch 'maint'
       new  721a043   zmq: encoding tags into zmq stream
       new  ffad094   zmq: tags should now be serializing and deserializing 
correctly for pub_sink/sub_source
       new  6a3efa6   zmq: default to not pass tags (compatible wire format)
       new  bd90b25   zmq: adding pass tags option to zmq pub/sub block grc xml 
defs
       new  e8cfb99   zmq: hoisting header encoding to helper function
       new  169a6c7   zmq: hoisting tag parsing into helper function, should 
now be easy to use in other zmq blocks
       new  b161a35   zmq: all source blocks should now support tag headers
       new  cb4e885   zmq: sync blocks now all support tag headers
       new  5aa1e1c   zmq: include pass_tags option default to false in all 
blocks' grc definitions
       new  57c8dd1   zeromq: fixups and stylistic changes before merge
       new  c1f42c1   zeromq: fix segfault in tag_headers
       new  585cc65   zmq: stream tag passing now works
       new  232a9bc   zmq: adding header information
       new  cd7e604   zmq: Adding zmq pub/sub blocks for message passing
       new  1ee9443   zmq: building working versions of additional zmq message 
blocks in place (push/pull + rep/req)
       new  dbf589a   zmq: naming cleanup
       new  29bd7ae   zmq: pull_msg_source should be working
       new  18944a9   zmq: rep/req msg blocks now working
       new  c13049f   Merge remote-tracking branch 'osh/zmqtags' into zmq_tags
       new  3827ff3   zeromq: cleanup and convert pub_msg_sink to derive from 
gr::block
       new  9bf7123   zeromq: cleanup and convert sub_msg_source to derive from 
gr::block
       new  7b77431   zeromq: cleanup and converted push_msg_sink to derive 
from gr::block
       new  3a443cf   zeromq: cleanup and made pull_msg_source derive from 
gr::block
       new  7bf8b05   zeromq: cleanup and converted rep_msg_sink to derive from 
gr::block
       new  5de5b1a   zeromq: cleanup and made req_msg_source derive from 
gr::block
       new  92dfbb6   zeromq: added msg passing example
       new  0b65c1a   zeromq: minor cleanup
       new  3183a25   zeromq: added stream tag passing example
       new  65dbd67   filter: fixing having the delay of the resampler as a 
negative number, which I think I backed into from making the other computations 
work.
       new  1581681   Merge branch 'maint'

The 30 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gr-filter/lib/pfb_arb_resampler.cc                 |  18 +-
 gr-filter/python/filter/qa_pfb_arb_resampler.py    |  10 +-
 gr-zeromq/examples/CMakeLists.txt                  |   2 +
 .../examples/zmq_msg.grc                           | 372 +++++------
 .../examples/zmq_stream.grc                        | 743 +++++++++++----------
 gr-zeromq/grc/CMakeLists.txt                       |   6 +
 gr-zeromq/grc/zeromq_pub_msg_sink.xml              |  28 +
 gr-zeromq/grc/zeromq_pub_sink.xml                  |   9 +-
 gr-zeromq/grc/zeromq_pull_msg_source.xml           |  28 +
 gr-zeromq/grc/zeromq_pull_source.xml               |   9 +-
 gr-zeromq/grc/zeromq_push_msg_sink.xml             |  28 +
 gr-zeromq/grc/zeromq_push_sink.xml                 |   9 +-
 gr-zeromq/grc/zeromq_rep_msg_sink.xml              |  28 +
 gr-zeromq/grc/zeromq_rep_sink.xml                  |   9 +-
 gr-zeromq/grc/zeromq_req_msg_source.xml            |  28 +
 gr-zeromq/grc/zeromq_req_source.xml                |   9 +-
 gr-zeromq/grc/zeromq_sub_msg_source.xml            |  28 +
 gr-zeromq/grc/zeromq_sub_source.xml                |   9 +-
 gr-zeromq/include/gnuradio/zeromq/CMakeLists.txt   |   6 +
 .../gnuradio/zeromq/{pub_sink.h => pub_msg_sink.h} |  26 +-
 gr-zeromq/include/gnuradio/zeromq/pub_sink.h       |   2 +-
 .../zeromq/{sub_source.h => pull_msg_source.h}     |  24 +-
 gr-zeromq/include/gnuradio/zeromq/pull_source.h    |   2 +-
 .../zeromq/{sub_source.h => push_msg_sink.h}       |  26 +-
 gr-zeromq/include/gnuradio/zeromq/push_sink.h      |   2 +-
 .../zeromq/{req_source.h => rep_msg_sink.h}        |  29 +-
 gr-zeromq/include/gnuradio/zeromq/rep_sink.h       |   2 +-
 .../zeromq/{req_source.h => req_msg_source.h}      |  25 +-
 gr-zeromq/include/gnuradio/zeromq/req_source.h     |   2 +-
 .../zeromq/{sub_source.h => sub_msg_source.h}      |  24 +-
 gr-zeromq/include/gnuradio/zeromq/sub_source.h     |   2 +-
 gr-zeromq/lib/CMakeLists.txt                       |   7 +
 .../lib/{pub_sink_impl.cc => pub_msg_sink_impl.cc} |  44 +-
 .../lib/{push_sink_impl.h => pub_msg_sink_impl.h}  |  20 +-
 gr-zeromq/lib/pub_sink_impl.cc                     |  25 +-
 gr-zeromq/lib/pub_sink_impl.h                      |   5 +-
 gr-zeromq/lib/pull_msg_source_impl.cc              | 111 +++
 .../{pull_source_impl.h => pull_msg_source_impl.h} |  26 +-
 gr-zeromq/lib/pull_source_impl.cc                  |  35 +-
 gr-zeromq/lib/pull_source_impl.h                   |   3 +-
 .../{pub_sink_impl.cc => push_msg_sink_impl.cc}    |  48 +-
 .../lib/{push_sink_impl.h => push_msg_sink_impl.h} |  20 +-
 gr-zeromq/lib/push_sink_impl.cc                    |  36 +-
 gr-zeromq/lib/push_sink_impl.h                     |   3 +-
 gr-zeromq/lib/rep_msg_sink_impl.cc                 | 122 ++++
 .../lib/{push_sink_impl.h => rep_msg_sink_impl.h}  |  27 +-
 gr-zeromq/lib/rep_sink_impl.cc                     |  43 +-
 gr-zeromq/lib/rep_sink_impl.h                      |   5 +-
 gr-zeromq/lib/req_msg_source_impl.cc               | 123 ++++
 .../{push_sink_impl.h => req_msg_source_impl.h}    |  28 +-
 gr-zeromq/lib/req_source_impl.cc                   |  34 +-
 gr-zeromq/lib/req_source_impl.h                    |   5 +-
 gr-zeromq/lib/sub_msg_source_impl.cc               | 110 +++
 .../{sub_source_impl.h => sub_msg_source_impl.h}   |  27 +-
 gr-zeromq/lib/sub_source_impl.cc                   |  39 +-
 gr-zeromq/lib/sub_source_impl.h                    |   3 +-
 gr-zeromq/lib/tag_headers.cc                       | 101 +++
 gr-zeromq/lib/{pub_sink_impl.h => tag_headers.h}   |  39 +-
 gr-zeromq/swig/zeromq_swig.i                       |  18 +
 59 files changed, 1772 insertions(+), 880 deletions(-)
 copy gr-dtv/examples/file_atsc_rx.grc => gr-zeromq/examples/zmq_msg.grc (58%)
 copy gr-digital/examples/demod/digital_freq_lock.grc => 
gr-zeromq/examples/zmq_stream.grc (82%)
 create mode 100644 gr-zeromq/grc/zeromq_pub_msg_sink.xml
 create mode 100644 gr-zeromq/grc/zeromq_pull_msg_source.xml
 create mode 100644 gr-zeromq/grc/zeromq_push_msg_sink.xml
 create mode 100644 gr-zeromq/grc/zeromq_rep_msg_sink.xml
 create mode 100644 gr-zeromq/grc/zeromq_req_msg_source.xml
 create mode 100644 gr-zeromq/grc/zeromq_sub_msg_source.xml
 copy gr-zeromq/include/gnuradio/zeromq/{pub_sink.h => pub_msg_sink.h} (64%)
 copy gr-zeromq/include/gnuradio/zeromq/{sub_source.h => pull_msg_source.h} 
(64%)
 copy gr-zeromq/include/gnuradio/zeromq/{sub_source.h => push_msg_sink.h} (64%)
 copy gr-zeromq/include/gnuradio/zeromq/{req_source.h => rep_msg_sink.h} (61%)
 copy gr-zeromq/include/gnuradio/zeromq/{req_source.h => req_msg_source.h} (64%)
 copy gr-zeromq/include/gnuradio/zeromq/{sub_source.h => sub_msg_source.h} (64%)
 copy gr-zeromq/lib/{pub_sink_impl.cc => pub_msg_sink_impl.cc} (60%)
 copy gr-zeromq/lib/{push_sink_impl.h => pub_msg_sink_impl.h} (67%)
 create mode 100644 gr-zeromq/lib/pull_msg_source_impl.cc
 copy gr-zeromq/lib/{pull_source_impl.h => pull_msg_source_impl.h} (67%)
 copy gr-zeromq/lib/{pub_sink_impl.cc => push_msg_sink_impl.cc} (58%)
 copy gr-zeromq/lib/{push_sink_impl.h => push_msg_sink_impl.h} (67%)
 create mode 100644 gr-zeromq/lib/rep_msg_sink_impl.cc
 copy gr-zeromq/lib/{push_sink_impl.h => rep_msg_sink_impl.h} (65%)
 create mode 100644 gr-zeromq/lib/req_msg_source_impl.cc
 copy gr-zeromq/lib/{push_sink_impl.h => req_msg_source_impl.h} (65%)
 create mode 100644 gr-zeromq/lib/sub_msg_source_impl.cc
 copy gr-zeromq/lib/{sub_source_impl.h => sub_msg_source_impl.h} (67%)
 create mode 100644 gr-zeromq/lib/tag_headers.cc
 copy gr-zeromq/lib/{pub_sink_impl.h => tag_headers.h} (52%)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]