003 File Manager
Current Path:
/usr/src/contrib/subversion/subversion/libsvn_ra_serf
usr
/
src
/
contrib
/
subversion
/
subversion
/
libsvn_ra_serf
/
📁
..
📄
blame.c
(12.16 KB)
📄
blncache.c
(5.44 KB)
📄
blncache.h
(3.44 KB)
📄
commit.c
(81.79 KB)
📄
eagain_bucket.c
(3.5 KB)
📄
get_deleted_rev.c
(5.66 KB)
📄
get_file.c
(12.05 KB)
📄
get_lock.c
(9.66 KB)
📄
getdate.c
(4.93 KB)
📄
getlocations.c
(5.98 KB)
📄
getlocationsegments.c
(6.46 KB)
📄
getlocks.c
(8.91 KB)
📄
inherited_props.c
(14.64 KB)
📄
libsvn_ra_serf.pc.in
(414 B)
📄
list.c
(9.19 KB)
📄
lock.c
(20.92 KB)
📄
log.c
(18.43 KB)
📄
merge.c
(14.29 KB)
📄
mergeinfo.c
(7.67 KB)
📄
multistatus.c
(23.68 KB)
📄
options.c
(28 KB)
📄
property.c
(29.11 KB)
📄
ra_serf.h
(60.75 KB)
📄
replay.c
(28.62 KB)
📄
request_body.c
(6.79 KB)
📄
sb_bucket.c
(5.08 KB)
📄
serf.c
(38.92 KB)
📄
stat.c
(17.59 KB)
📄
stream_bucket.c
(3.43 KB)
📄
update.c
(92.6 KB)
📄
util.c
(68.61 KB)
📄
util_error.c
(2.87 KB)
📄
xml.c
(29.94 KB)
Editing: stream_bucket.c
/* * stream_bucket.c : a serf bucket that wraps a readable svn_stream_t * * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ==================================================================== */ #include <serf.h> #include <serf_bucket_util.h> #include "ra_serf.h" typedef struct stream_bucket_ctx_t { svn_stream_t *stream; svn_ra_serf__stream_bucket_errfunc_t errfunc; void *errfunc_baton; serf_databuf_t databuf; } stream_bucket_ctx_t; static apr_status_t stream_reader(void *baton, apr_size_t bufsize, char *buf, apr_size_t *len) { stream_bucket_ctx_t *ctx = baton; svn_error_t *err; *len = bufsize; err = svn_stream_read_full(ctx->stream, buf, len); if (err) { if (ctx->errfunc) ctx->errfunc(ctx->errfunc_baton, err); svn_error_clear(err); return SVN_ERR_RA_SERF_STREAM_BUCKET_READ_ERROR; } if (*len == bufsize) { return APR_SUCCESS; } else { svn_error_clear(svn_stream_close(ctx->stream)); return APR_EOF; } } static apr_status_t stream_bucket_read(serf_bucket_t *bucket, apr_size_t requested, const char **data, apr_size_t *len) { stream_bucket_ctx_t *ctx = bucket->data; return serf_databuf_read(&ctx->databuf, requested, data, len); } static apr_status_t stream_bucket_readline(serf_bucket_t *bucket, int acceptable, int *found, const char **data, apr_size_t *len) { stream_bucket_ctx_t *ctx = bucket->data; return serf_databuf_readline(&ctx->databuf, acceptable, found, data, len); } static apr_status_t stream_bucket_peek(serf_bucket_t *bucket, const char **data, apr_size_t *len) { stream_bucket_ctx_t *ctx = bucket->data; return serf_databuf_peek(&ctx->databuf, data, len); } static const serf_bucket_type_t stream_bucket_vtable = { "SVNSTREAM", stream_bucket_read, stream_bucket_readline, serf_default_read_iovec, serf_default_read_for_sendfile, serf_default_read_bucket, stream_bucket_peek, serf_default_destroy_and_data }; serf_bucket_t * svn_ra_serf__create_stream_bucket(svn_stream_t *stream, serf_bucket_alloc_t *allocator, svn_ra_serf__stream_bucket_errfunc_t errfunc, void *errfunc_baton) { stream_bucket_ctx_t *ctx; ctx = serf_bucket_mem_calloc(allocator, sizeof(*ctx)); ctx->stream = stream; ctx->errfunc = errfunc; ctx->errfunc_baton = errfunc_baton; serf_databuf_init(&ctx->databuf); ctx->databuf.read = stream_reader; ctx->databuf.read_baton = ctx; return serf_bucket_create(&stream_bucket_vtable, allocator, ctx); }
Upload File
Create Folder