[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH 06/13] Dump the revprops at the start of every revision

From: Ramkumar Ramachandra <artagnon_at_gmail.com>
Date: Thu, 22 Jul 2010 00:25:13 +0530

Hi Jonathan,

I stashed this review away while working on some other important
changes. I finally got around to responding to this review- sorry that
it took so long.

Jonathan Nieder writes:
> > Fill in replay_revstart to dump the revprops at the start of every
> > revision. Add an additional write_hash_to_stringbuf helper function.
>
> A write_hash_to_stringbuf helper does the work of
> converting the property hashtable to dumpfile format.
>
> > +++ b/dumpr_util.c
> [...]
> > +void write_hash_to_stringbuf(apr_hash_t *properties,
> > + svn_boolean_t deleted,
> > + svn_stringbuf_t **strbuf,
> > + apr_pool_t *pool)
[...]

Fixed, but not exactly in the way you've suggested.

> > + /* Output name length, then name. */
> > + svn_stringbuf_appendcstr(*strbuf,
> > + apr_psprintf(pool, "K %" APR_SSIZE_T_FMT "\n",
> > + keylen));
> > +
> > + svn_stringbuf_appendbytes(*strbuf, (const char *) key, keylen);
>
> Is the cast needed? (The answer might be "yes" if this code is meant
> to be usable with C++ compilers.)

These casts are all over in the source tree, so I'm guessing the
answer is "yes".

> Style: better to say in comments what we are trying to do than what we
> actually do. So:
>
> /* First, dump revision properties. */

I've fixed all the comments in the entire source tree. Thanks :)

-- Ram
Received on 2010-07-21 20:58:33 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.