Skip to content

Commit

Permalink
vcs-svn: Delay read of per-path properties
Browse files Browse the repository at this point in the history
The mode for each file in an svn-format dump is kept in the properties
section.  The properties section is read as soon as possible to allow
the correct mode to be filled in when registering the file with the
repo_tree lib.

To support nodes with a missing properties section, svn-fe determines
the mode in three stages:

 - The kind (directory or file) of the node is read from the dump and
   used to make an initial estimate (040000 or 100644).
 - Properties are read in and allowed to override this for symlinks
   and executables.
 - If there is no properties section, the mode from the previous
   content of the path is left alone, overriding the above
   considerations.

This is a bit of a mess, and worse, it would get even more complicated
once we start to support property deltas.  If we could only register
the file with a provisional value for mode and then change it later
when properties say so, the procedure would be much simpler.

... oh, right, we can.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Jonathan Nieder authored and Junio C Hamano committed Nov 24, 2010
1 parent 08c39b5 commit 1c7bb31
Showing 1 changed file with 18 additions and 22 deletions.
40 changes: 18 additions & 22 deletions vcs-svn/svndump.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ static void read_props(void)

static void handle_node(void)
{
uint32_t old_mode = 0, mark = 0;
uint32_t mark = 0;
const uint32_t type = node_ctx.type;
const int have_props = node_ctx.propLength != LENGTH_UNKNOWN;

if (node_ctx.text_delta || node_ctx.prop_delta)
Expand All @@ -171,33 +172,28 @@ static void handle_node(void)
node_ctx.action = NODEACT_ADD;
}

if (have_props && node_ctx.propLength)
read_props();

if (node_ctx.srcRev)
old_mode = repo_copy(node_ctx.srcRev, node_ctx.src, node_ctx.dst);
if (node_ctx.srcRev) {
repo_copy(node_ctx.srcRev, node_ctx.src, node_ctx.dst);
node_ctx.action = NODEACT_CHANGE;
}

if (mark && node_ctx.type == REPO_MODE_DIR)
if (mark && type == REPO_MODE_DIR)
die("invalid dump: directories cannot have text attached");

if (node_ctx.action == NODEACT_CHANGE) {
if (have_props)
if (node_ctx.action == NODEACT_CHANGE)
node_ctx.type = repo_modify_path(node_ctx.dst, 0, mark);
else /* Node-action: add */
repo_add(node_ctx.dst, type, mark);

if (have_props) {
const uint32_t old_mode = node_ctx.type;
node_ctx.type = type;
if (node_ctx.propLength)
read_props();
if (node_ctx.type != old_mode)
repo_modify_path(node_ctx.dst, node_ctx.type, mark);
else if (mark)
old_mode = repo_modify_path(node_ctx.dst, 0, mark);
} else if (node_ctx.action == NODEACT_ADD) {
if (node_ctx.srcRev && have_props)
repo_modify_path(node_ctx.dst, node_ctx.type, mark);
else if (node_ctx.srcRev && mark)
old_mode = repo_modify_path(node_ctx.dst, 0, mark);
else if ((node_ctx.type == REPO_MODE_DIR && !node_ctx.srcRev) ||
mark)
repo_add(node_ctx.dst, node_ctx.type, mark);
}

if (!have_props && old_mode)
node_ctx.type = old_mode;

if (mark)
fast_export_blob(node_ctx.type, mark, node_ctx.textLength);
}
Expand Down

0 comments on commit 1c7bb31

Please sign in to comment.