On Thu, Apr 26, 2012 at 11:10 AM, Julian Foad
<julianfoad_at_btopenworld.com> wrote:
> Hi Paul. Would you be willing to factor out those 40 lines of update-the-list code? Then that part of the notification_receiver function can be as nice and readable as
Sure, done r1331003.
Paul
> Â ...
> Â if (notify->action == svn_wc_notify_update_add)
> Â Â Â {
> Â Â Â Â Â update_the_list_of_added_subtrees(...);
> Â Â Â }
> Â ...
>
> and not distract the eye from its overall flow.
>
> - Julian
>
>
>> Modified: subversion/trunk/subversion/libsvn_client/merge.c
>
>> URL:
>> http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/merge.c?rev=1330444&r1=1330443&r2=1330444&view=diff
>> ==============================================================================
>> --- subversion/trunk/subversion/libsvn_client/merge.c (original)
>> +++ subversion/trunk/subversion/libsvn_client/merge.c Wed Apr 25 17:57:30 2012
>> @@ -2941,30 +2941,47 @@ notification_receiver(void *baton, const
>>
>> Â Â Â Â if (notify->action == svn_wc_notify_update_add)
>> Â Â Â Â Â {
>> -Â Â Â Â Â svn_boolean_t is_root_of_added_subtree = FALSE;
>> -Â Â Â Â Â const char *added_path = apr_pstrdup(notify_b->pool,
>> -Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â notify_abspath);
>> -Â Â Â Â Â const char *added_path_parent = NULL;
>> +Â Â Â Â Â svn_boolean_t root_of_added_subtree = TRUE;
>>
>> Â Â Â Â Â Â /* Stash the root path of any added subtrees. */
>> Â Â Â Â Â Â if (notify_b->added_abspaths == NULL)
>> Â Â Â Â Â Â Â {
>> +Â Â Â Â Â Â Â /* The first added path is always a root. */
>> Â Â Â Â Â Â Â Â notify_b->added_abspaths = apr_hash_make(notify_b->pool);
>> -Â Â Â Â Â Â Â is_root_of_added_subtree = TRUE;
>> Â Â Â Â Â Â Â }
>> Â Â Â Â Â Â else
>> Â Â Â Â Â Â Â {
>> -Â Â Â Â Â Â Â added_path_parent = svn_dirent_dirname(added_path, pool);
>> -Â Â Â Â Â Â Â /* ### Bug. Testing whether its immediate parent is in the
>> -Â Â Â Â Â Â Â Â * hash isn't enough: this is letting every other level of
>> -Â Â Â Â Â Â Â Â * the added subtree hierarchy into the hash. */
>> -Â Â Â Â Â Â Â if (!apr_hash_get(notify_b->added_abspaths, added_path_parent,
>> -Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â APR_HASH_KEY_STRING))
>> -Â Â Â Â Â Â Â Â is_root_of_added_subtree = TRUE;
>> -Â Â Â Â Â Â }
>> -Â Â Â Â Â if (is_root_of_added_subtree)
>> -Â Â Â Â Â Â apr_hash_set(notify_b->added_abspaths, added_path,
>> -Â Â Â Â Â Â Â Â Â Â Â Â Â APR_HASH_KEY_STRING, added_path);
>> +Â Â Â Â Â Â Â const char *added_path_parent =
>> +Â Â Â Â Â Â Â Â svn_dirent_dirname(notify_abspath, pool);
>> +Â Â Â Â Â Â Â apr_pool_t *iterpool = svn_pool_create(pool);
>> +
>> +Â Â Â Â Â Â Â /* Is NOTIFY->PATH the root of an added subtree? */
>> +Â Â Â Â Â Â Â while (strcmp(notify_b->merge_b->target->abspath,
>> +Â Â Â Â Â Â Â Â Â Â Â Â Â Â added_path_parent))
>> +Â Â Â Â Â Â Â Â {
>> +Â Â Â Â Â Â Â Â Â if (apr_hash_get(notify_b->added_abspaths,
>> +Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â added_path_parent,
>> +Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â APR_HASH_KEY_STRING))
>> +Â Â Â Â Â Â Â Â Â Â {
>> +Â Â Â Â Â Â Â Â Â Â Â root_of_added_subtree = FALSE;
>> +Â Â Â Â Â Â Â Â Â Â Â break;
>> +Â Â Â Â Â Â Â Â Â Â }
>> +
>> +Â Â Â Â Â Â Â Â Â svn_pool_clear(iterpool);
>> +Â Â Â Â Â Â Â Â Â added_path_parent = svn_dirent_dirname(
>> +Â Â Â Â Â Â Â Â Â Â added_path_parent, iterpool);
>> +Â Â Â Â Â Â Â Â }
>> +
>> +Â Â Â Â Â Â Â svn_pool_destroy(iterpool);
>> +Â Â Â Â Â Â }
>> +
>> +Â Â Â Â Â if (root_of_added_subtree)
>> +Â Â Â Â Â Â {
>> +Â Â Â Â Â Â Â const char *added_root_path = apr_pstrdup(notify_b->pool,
>> +Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â notify_abspath);
>> +Â Â Â Â Â Â Â apr_hash_set(notify_b->added_abspaths, added_root_path,
>> +Â Â Â Â Â Â Â Â Â Â Â Â Â Â APR_HASH_KEY_STRING, added_root_path);
>> +Â Â Â Â Â Â }
>> Â Â Â Â Â }
>>
>> Â Â Â Â if (notify->action == svn_wc_notify_update_delete
>>
Received on 2012-04-26 20:08:19 CEST