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

Re: svn commit: r28024 - branches/issue-2897/subversion/libsvn_fs_util

From: Daniel Rall <dlr_at_collab.net>
Date: 2007-11-26 19:01:17 CET

On Mon, 26 Nov 2007, kameshj@tigris.org wrote:
...
> --- branches/issue-2897/subversion/libsvn_fs_util/mergeinfo-sqlite-index.c (original)
> +++ branches/issue-2897/subversion/libsvn_fs_util/mergeinfo-sqlite-index.c Mon Nov 26 04:59:33 2007
> @@ -836,6 +836,10 @@
> SVN_FS__SQLITE_ERR(sqlite3_bind_int64(stmt, 2, min_commit_rev+1), db);
> SVN_FS__SQLITE_ERR(sqlite3_bind_int64(stmt, 3, max_commit_rev), db);
> sqlite_result = sqlite3_step(stmt);
> +
> + if (!(sqlite_result == SQLITE_ROW || sqlite_result == SQLITE_DONE))
> + return svn_fs__sqlite_stmt_error(stmt);
> +

We perform this same check 3 times. How about a macro, something
like:

#define SQLITE_CURSOR_STEP_OK(sqlite_result) \
        (sqlite_result == SQLITE_ROW || sqlite_result == SQLITE_DONE)

That'd be a lot more comprehensible, too.

> SVN_FS__SQLITE_ERR(sqlite3_reset(stmt), db);
> if (sqlite_result == SQLITE_ROW)
> {
> @@ -844,22 +848,31 @@
> }
> else
> {
> - const char *parent_path = svn_path_dirname(merge_target, pool);
> + apr_pool_t *subpool = svn_pool_create(pool);
> + const char *parent_path = svn_path_dirname(merge_target, subpool);
> while (strcmp(parent_path, "/"))
                                        ^
I'd like to see a "!= 0" in this conditional.

> {
> SVN_FS__SQLITE_ERR(sqlite3_bind_text(stmt, 1, parent_path, -1,
> SQLITE_TRANSIENT), db);
> sqlite_result = sqlite3_step(stmt);
> +
> + if (!(sqlite_result == SQLITE_ROW || sqlite_result == SQLITE_DONE))
> + {
> + svn_pool_destroy(subpool);
> + return svn_fs__sqlite_stmt_error(stmt);
> + }
> +
> SVN_FS__SQLITE_ERR(sqlite3_reset(stmt), db);
> if (sqlite_result == SQLITE_ROW)
> {
> - *parent_with_mergeinfo = parent_path;
> + *parent_with_mergeinfo = apr_pstrdup(pool, parent_path);
> has_mergeinfo = TRUE;
> break;
> }
> else
> - parent_path = svn_path_dirname(parent_path, pool);
> + parent_path = svn_path_dirname(parent_path, subpool);
> }
> + svn_pool_destroy(subpool);
> }
>
> SVN_FS__SQLITE_ERR(sqlite3_finalize(stmt), db);
> @@ -868,8 +881,9 @@
> return SVN_NO_ERROR;
> else
> return svn_error_createf(SVN_ERR_FS_SQLITE_ERROR, NULL,
> - _("No mergeinfo for %s between revisions %ld:%ld"),
> - merge_target, min_commit_rev, max_commit_rev);
> + _("No mergeinfo for '%s' between revisions \
> + %ld:%ld"),

What is the trailing \ for, line continuation? We typically use ",
followed by another " at the beginning of the text on the next line
(as shown later in this diff).

Also, how about the description "in revision range", rather than
"between revisions"?

> + merge_target, min_commit_rev, max_commit_rev);
> }
>
> /* Helper function for 'svn_fs_mergeinfo__get_commit_revs_for_merge_ranges'.
> @@ -938,7 +952,11 @@
> SVN_FS__SQLITE_ERR(sqlite3_bind_int64(stmt, 4, range->end), db);
> SVN_FS__SQLITE_ERR(sqlite3_bind_int64(stmt, 5, range->inheritable), db);
> sqlite_result = sqlite3_step(stmt);
> - if (sqlite_result != SQLITE_ROW)
> +
> + if (!(sqlite_result == SQLITE_ROW || sqlite_result == SQLITE_DONE))
> + return svn_fs__sqlite_stmt_error(stmt);
> +
> + if (sqlite_result == SQLITE_DONE)
> return svn_error_createf(SVN_ERR_FS_SQLITE_ERROR, NULL,
> _("No commit rev for merge %ld:%ld from %s"
> " on %s within %ld"), range->start,

  • application/pgp-signature attachment: stored
Received on Mon Nov 26 19:01:33 2007

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.