Skip to content

Commit

Permalink
Merge branch 'svn-fe' of git://repo.or.cz/git/jrn
Browse files Browse the repository at this point in the history
* 'svn-fe' of git://repo.or.cz/git/jrn:
  vcs-svn: handle log message with embedded NUL
  vcs-svn: avoid unnecessary copying of log message and author
  vcs-svn: remove buffer_read_string
  vcs-svn: make reading of properties binary-safe
  • Loading branch information
Junio C Hamano committed Mar 26, 2011
2 parents 42f9874 + 195b7ca commit a080fdd
Show file tree
Hide file tree
Showing 11 changed files with 156 additions and 83 deletions.
35 changes: 13 additions & 22 deletions t/t0081-line-buffer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ long_read_test () {
} >input &
} &&
test-line-buffer input <<-EOF >output &&
read $readsize
binary $readsize
copy $copysize
EOF
kill $! &&
Expand All @@ -71,41 +71,41 @@ test_expect_success 'setup: have pipes?' '
'

test_expect_success 'hello world' '
echo HELLO >expect &&
echo ">HELLO" >expect &&
test-line-buffer <<-\EOF >actual &&
read 6
binary 6
HELLO
EOF
test_cmp expect actual
'

test_expect_success PIPE '0-length read, no input available' '
>expect &&
printf ">" >expect &&
rm -f input &&
mkfifo input &&
{
sleep 100 >input &
} &&
test-line-buffer input <<-\EOF >actual &&
read 0
binary 0
copy 0
EOF
kill $! &&
test_cmp expect actual
'

test_expect_success '0-length read, send along greeting' '
echo HELLO >expect &&
echo ">HELLO" >expect &&
test-line-buffer <<-\EOF >actual &&
read 0
binary 0
copy 6
HELLO
EOF
test_cmp expect actual
'

test_expect_success PIPE '1-byte read, no input available' '
printf "%s" ab >expect &&
printf ">%s" ab >expect &&
rm -f input &&
mkfifo input &&
{
Expand All @@ -116,7 +116,7 @@ test_expect_success PIPE '1-byte read, no input available' '
} >input &
} &&
test-line-buffer input <<-\EOF >actual &&
read 1
binary 1
copy 1
EOF
kill $! &&
Expand All @@ -140,15 +140,6 @@ test_expect_success 'read from file descriptor' '
test_cmp expect actual
'

test_expect_success 'buffer_read_string copes with null byte' '
>expect &&
q_to_nul <<-\EOF | test-line-buffer >actual &&
read 2
Q
EOF
test_cmp expect actual
'

test_expect_success 'skip, copy null byte' '
echo Q | q_to_nul >expect &&
q_to_nul <<-\EOF | test-line-buffer >actual &&
Expand All @@ -170,18 +161,18 @@ test_expect_success 'read null byte' '
'

test_expect_success 'long reads are truncated' '
echo foo >expect &&
echo ">foo" >expect &&
test-line-buffer <<-\EOF >actual &&
read 5
binary 5
foo
EOF
test_cmp expect actual
'

test_expect_success 'long copies are truncated' '
printf "%s\n" "" foo >expect &&
printf "%s\n" ">" foo >expect &&
test-line-buffer <<-\EOF >actual &&
read 1
binary 1
copy 5
foo
Expand Down
104 changes: 104 additions & 0 deletions t/t9010-svn-fe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,110 @@ test_expect_failure 'change file mode but keep old content' '
test_cmp hello actual.target
'

test_expect_success 'NUL in property value' '
reinit_git &&
echo "commit message" >expect.message &&
{
properties \
unimportant "something with a NUL (Q)" \
svn:log "commit message"&&
echo PROPS-END
} |
q_to_nul >props &&
{
cat <<-\EOF &&
SVN-fs-dump-format-version: 3
Revision-number: 1
EOF
echo Prop-content-length: $(wc -c <props) &&
echo Content-length: $(wc -c <props) &&
echo &&
cat props
} >nulprop.dump &&
test-svn-fe nulprop.dump >stream &&
git fast-import <stream &&
git diff-tree --always -s --format=%s HEAD >actual.message &&
test_cmp expect.message actual.message
'

test_expect_success 'NUL in log message, file content, and property name' '
# Caveat: svnadmin 1.6.16 (r1073529) truncates at \0 in the
# svn:specialQnotreally example.
reinit_git &&
cat >expect <<-\EOF &&
OBJID
:100644 100644 OBJID OBJID M greeting
OBJID
:000000 100644 OBJID OBJID A greeting
EOF
printf "\n%s" "something with an ASCII NUL (Q)" >expect.message &&
printf "%s\n" "helQo" >expect.hello1 &&
printf "%s\n" "link hello" >expect.hello2 &&
{
properties svn:log "something with an ASCII NUL (Q)" &&
echo PROPS-END
} |
q_to_nul >props &&
{
q_to_nul <<-\EOF &&
SVN-fs-dump-format-version: 3
Revision-number: 1
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: greeting
Node-kind: file
Node-action: add
Prop-content-length: 10
Text-content-length: 6
Content-length: 16
PROPS-END
helQo
Revision-number: 2
EOF
echo Prop-content-length: $(wc -c <props) &&
echo Content-length: $(wc -c <props) &&
echo &&
cat props &&
q_to_nul <<-\EOF
Node-path: greeting
Node-kind: file
Node-action: change
Prop-content-length: 43
Text-content-length: 11
Content-length: 54
K 21
svn:specialQnotreally
V 1
*
PROPS-END
link hello
EOF
} >8bitclean.dump &&
test-svn-fe 8bitclean.dump >stream &&
git fast-import <stream &&
{
git rev-list HEAD |
git diff-tree --root --stdin |
sed "s/$_x40/OBJID/g"
} >actual &&
git cat-file commit HEAD | nul_to_q | sed -ne "/^\$/,\$ p" >actual.message &&
git cat-file blob HEAD^:greeting | nul_to_q >actual.hello1 &&
git cat-file blob HEAD:greeting | nul_to_q >actual.hello2 &&
test_cmp expect actual &&
test_cmp expect.message actual.message &&
test_cmp expect.hello1 actual.hello1 &&
test_cmp expect.hello2 actual.hello2
'

test_expect_success 'change file mode and reiterate content' '
reinit_git &&
cat >expect <<-\EOF &&
Expand Down
6 changes: 0 additions & 6 deletions test-line-buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ static void handle_command(const char *command, const char *arg, struct line_buf
buffer_copy_bytes(buf, strtouint32(arg));
return;
}
case 'r':
if (!prefixcmp(command, "read ")) {
const char *s = buffer_read_string(buf, strtouint32(arg));
fputs(s, stdout);
return;
}
case 's':
if (!prefixcmp(command, "skip ")) {
buffer_skip_bytes(buf, strtouint32(arg));
Expand Down
12 changes: 7 additions & 5 deletions vcs-svn/fast_export.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,14 @@ void fast_export_modify(uint32_t depth, uint32_t *path, uint32_t mode,
}

static char gitsvnline[MAX_GITSVN_LINE_LEN];
void fast_export_commit(uint32_t revision, const char *author, char *log,
void fast_export_commit(uint32_t revision, const char *author,
const struct strbuf *log,
const char *uuid, const char *url,
unsigned long timestamp)
{
static const struct strbuf empty = STRBUF_INIT;
if (!log)
log = "";
log = &empty;
if (*uuid && *url) {
snprintf(gitsvnline, MAX_GITSVN_LINE_LEN,
"\n\ngit-svn-id: %s@%"PRIu32" %s\n",
Expand All @@ -49,9 +51,9 @@ void fast_export_commit(uint32_t revision, const char *author, char *log,
*author ? author : "nobody",
*author ? author : "nobody",
*uuid ? uuid : "local", timestamp);
printf("data %"PRIu32"\n%s%s\n",
(uint32_t) (strlen(log) + strlen(gitsvnline)),
log, gitsvnline);
printf("data %"PRIuMAX"\n", log->len + strlen(gitsvnline));
fwrite(log->buf, log->len, 1, stdout);
printf("%s\n", gitsvnline);
if (!first_commit_done) {
if (revision > 1)
printf("from refs/heads/master^0\n");
Expand Down
7 changes: 4 additions & 3 deletions vcs-svn/fast_export.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
#define FAST_EXPORT_H_

#include "line_buffer.h"
struct strbuf;

void fast_export_delete(uint32_t depth, uint32_t *path);
void fast_export_modify(uint32_t depth, uint32_t *path, uint32_t mode,
uint32_t mark);
void fast_export_commit(uint32_t revision, const char *author, char *log,
const char *uuid, const char *url,
unsigned long timestamp);
void fast_export_commit(uint32_t revision, const char *author,
const struct strbuf *log, const char *uuid,
const char *url, unsigned long timestamp);
void fast_export_blob(uint32_t mode, uint32_t mark, uint32_t len,
struct line_buffer *input);

Expand Down
8 changes: 0 additions & 8 deletions vcs-svn/line_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,6 @@ char *buffer_read_line(struct line_buffer *buf)
return buf->line_buffer;
}

char *buffer_read_string(struct line_buffer *buf, uint32_t len)
{
strbuf_reset(&buf->blob_buffer);
strbuf_fread(&buf->blob_buffer, len, buf->infile);
return ferror(buf->infile) ? NULL : buf->blob_buffer.buf;
}

void buffer_read_binary(struct line_buffer *buf,
struct strbuf *sb, uint32_t size)
{
Expand Down Expand Up @@ -134,5 +127,4 @@ off_t buffer_skip_bytes(struct line_buffer *buf, off_t nbytes)

void buffer_reset(struct line_buffer *buf)
{
strbuf_release(&buf->blob_buffer);
}
4 changes: 1 addition & 3 deletions vcs-svn/line_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@

struct line_buffer {
char line_buffer[LINE_BUFFER_LEN];
struct strbuf blob_buffer;
FILE *infile;
};
#define LINE_BUFFER_INIT {"", STRBUF_INIT, NULL}
#define LINE_BUFFER_INIT { "", NULL }

int buffer_init(struct line_buffer *buf, const char *filename);
int buffer_fdinit(struct line_buffer *buf, int fd);
Expand All @@ -23,7 +22,6 @@ long buffer_tmpfile_prepare_to_read(struct line_buffer *buf);

int buffer_ferror(struct line_buffer *buf);
char *buffer_read_line(struct line_buffer *buf);
char *buffer_read_string(struct line_buffer *buf, uint32_t len);
int buffer_read_char(struct line_buffer *buf);
void buffer_read_binary(struct line_buffer *buf, struct strbuf *sb, uint32_t len);
/* Returns number of bytes read (not necessarily written). */
Expand Down
12 changes: 3 additions & 9 deletions vcs-svn/line_buffer.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ The calling program:

- initializes a `struct line_buffer` to LINE_BUFFER_INIT
- specifies a file to read with `buffer_init`
- processes input with `buffer_read_line`, `buffer_read_string`,
`buffer_skip_bytes`, and `buffer_copy_bytes`
- processes input with `buffer_read_line`, `buffer_skip_bytes`,
and `buffer_copy_bytes`
- closes the file with `buffer_deinit`, perhaps to start over and
read another file.

Expand All @@ -37,7 +37,7 @@ the calling program. A program
the temporary file
- declares writing is over with `buffer_tmpfile_prepare_to_read`
- can re-read what was written with `buffer_read_line`,
`buffer_read_string`, and so on
`buffer_copy_bytes`, and so on
- can reuse the temporary file by calling `buffer_tmpfile_rewind`
again
- removes the temporary file with `buffer_deinit`, perhaps to
Expand All @@ -64,12 +64,6 @@ Functions
Read a line and strip off the trailing newline.
On failure or end of file, returns NULL.

`buffer_read_string`::
Read `len` characters of input or up to the end of the
file, whichever comes first. Returns NULL on error.
Returns whatever characters were read (possibly "")
for end of file.

`buffer_copy_bytes`::
Read `len` bytes of input and dump them to the standard output
stream. Returns early for error or end of file.
Expand Down
5 changes: 3 additions & 2 deletions vcs-svn/repo_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,9 @@ void repo_diff(uint32_t r1, uint32_t r2)
repo_commit_root_dir(commit_pointer(r2)));
}

void repo_commit(uint32_t revision, const char *author, char *log,
const char *uuid, const char *url, unsigned long timestamp)
void repo_commit(uint32_t revision, const char *author,
const struct strbuf *log, const char *uuid, const char *url,
unsigned long timestamp)
{
fast_export_commit(revision, author, log, uuid, url, timestamp);
dent_commit();
Expand Down
4 changes: 2 additions & 2 deletions vcs-svn/repo_tree.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef REPO_TREE_H_
#define REPO_TREE_H_

#include "git-compat-util.h"
struct strbuf;

#define REPO_MODE_DIR 0040000
#define REPO_MODE_BLB 0100644
Expand All @@ -18,7 +18,7 @@ uint32_t repo_read_path(const uint32_t *path);
uint32_t repo_read_mode(const uint32_t *path);
void repo_delete(uint32_t *path);
void repo_commit(uint32_t revision, const char *author,
char *log, const char *uuid, const char *url,
const struct strbuf *log, const char *uuid, const char *url,
long unsigned timestamp);
void repo_diff(uint32_t r1, uint32_t r2);
void repo_init(void);
Expand Down
Loading

0 comments on commit a080fdd

Please sign in to comment.