Forum: GNU Radio File Sink open/close question

Posted by Hanz Ott (hanzzz)
on 2013-01-22 10:20
(Received via mailing list)
Hi!
Im using a message queue to count data, while the data is sinked to a 
file.
Then if the counter reaches X i want the old file to be closed and 
continue
sinking in a new file. Then again if reaches X to switch to the old 
file. So
my bottom part code looks like that:

tb = top_block()
  tb.start()
  a=0

  while 1:
    if tb.sink_queue.count()>X:
      tb.gr_file_sink_0.close()
      tb.sink_queue.flush()
      if a==0:
        tb.gr_file_sink_0.open("PLACE_TO_SAVE\two")
        a=1
      else:
        tb.gr_file_sink_0.open("PLACE_TO_SAVE\one")
        a=0

Right now, it simply closes the first file, but does not begin with the
second one. Can anyone help me with that? Thanks in advance



--
View this message in context: 
http://gnuradio.4.n7.nabble.com/File-Sink-open-clo...
Sent from the GnuRadio mailing list archive at Nabble.com.
Posted by Robert McGwier (Guest)
on 2013-01-22 12:36
(Received via mailing list)
Hans:

Where are you "resetting X"?
Posted by Hanz Ott (hanzzz)
on 2013-01-22 12:53
(Received via mailing list)
I setted X some lines before as 1000. And the tb.sink_queue.count() is
resetted by tb.sink_queue.flush() i thought.



--
View this message in context: 
http://gnuradio.4.n7.nabble.com/File-Sink-open-clo...
Sent from the GnuRadio mailing list archive at Nabble.com.
Posted by Tom Rondeau (Guest)
on 2013-01-23 16:27
(Received via mailing list)
On Tue, Jan 22, 2013 at 4:18 AM, Hanz <dominic1406@googlemail.com> 
wrote:

>
>
> Right now, it simply closes the first file, but does not begin with the
> second one. Can anyone help me with that? Thanks in advance
>

Hanz,
This shouldn't make any difference, but the file_sink's 'open' function
also closes any previously opened files. Try removing your call to 
'close'
and just rely on the open to close it, reopen the new file, and then 
when
the work is called the next time, it will run 'do_update' to set up the
handles properly.

Also, you can try throwing in some debug prints to make sure both paths 
are
actually being called properly.

Tom
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.