/[Apache-SVN]
ViewVC logotype

Revision 1561688


Jump to revision: Previous Next
Author: rhuijben
Date: Mon Jan 27 14:16:08 2014 UTC (10 years, 6 months ago)
Changed paths: 3
Log Message:
Following up on r1561387, which was (temporarily) reverted in r1561424 extend
the existing stream api with an optional incomplete read function to allow
using the stream api as was intended by r1561387.

After discussion on irc we came with the idea of revving svn_stream_read()
to two separate functions: one with full read semantics (like before) and one
with the new possibly incomplete read support.

This patch currently provides a default implementation of the incomplete read
with a forced complete read. Brane suggests that it might be better to just
return an error for requested incomplete reads. I commit this version under
the assumption that it is very easy to change this later in a separate patch.

* subversion/include/svn_io.h
  (svn_stream_t): Tweak documentation.
  (svn_stream_set_read2): New function.
  (svn_stream_set_read): Deprecate function.
  (svn_stream_read_full): New function.
  (svn_stream_read2): New function.
  (svn_stream_read): Deprecate function.

* subversion/libsvn_subr/deprecated.c
  (svn_stream_set_read): New function.
  (svn_stream_read): New function.
  (md5_stream_baton,
   read_handler_md5): Move here from stream.c. Update caller.
  (read_full_handler_md5): New function.
  (skip_handler_md5,
   write_handler_md5,
   close_handler_md5): Move here from stream.c.
  (svn_stream_checksummed): Move here. Update caller.


* subversion/libsvn_subr/stream.c
  (svn_stream_t): Add callback.
  (skip_default_handler): Update prototype.
  (svn_stream_set_read): Rename to...
  (svn_stream_set_read2): ... this and set both callbacks.

  (svn_stream_read2): New function.
  (svn_stream_read): Rename to...
  (svn_stream_read_full): ... this. Update used callback.

  (svn_stream_skip): Pass full read callback.

  (stream_readline_bytewise,
   stream_readline_chunky,
   svn_stream_copy3,
   svn_stream_contents_same2): Update caller.

  (skip_default_handler): Rename argument to auto-document behavior.
  (svn_stream_empty): Pass same read handler for both apis.

  (read_handler_disown): Update caller.
  (read_full_handler_disown): New function.
  (svn_stream_disown): Update caller.

  (read_handler_apr): New function. Rename the old function
     with this name to ...
  (read_full_handler_apr): ... this.
  (svn_stream_from_aprfile2): Update caller.

  (read_handler_checksum): New function. Rename the old function
     with this name to ...
  (read_full_handler_checksum): ... this.
  (close_handler_checksum): Update caller.
  (svn_stream_checksummed2): Update caller.

  (md5_stream_baton,
   read_handler_md5,
   skip_handler_md5,
   write_handler_md5,
   close_handler_md5,
   svn_stream_checksummed): Move to deprecated.c

  (svn_stringbuf_from_stream,
   svn_stream_from_stringbuf,
   svn_stream_from_string,
   svn_string_from_stream): Update caller.

  (read_handler_lazyopen): Update caller.
  (read_full_handler_lazyopen): New function.
  (svn_stream_lazyopen_create): Update caller.


Changed paths

Path Details
Directorysubversion/trunk/subversion/include/svn_io.h modified , text changed
Directorysubversion/trunk/subversion/libsvn_subr/deprecated.c modified , text changed
Directorysubversion/trunk/subversion/libsvn_subr/stream.c modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26