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

Re: svn commit: rev 4685 - in trunk/subversion: include libsvn_wc libsvn_client libsvn_auth

From: Branko Čibej <brane_at_xbc.nu>
Date: 2003-02-02 20:37:06 CET

Ben Collins-Sussman wrote:

>Branko Čibej <brane@xbc.nu> writes:
>
>
>
>>Ben Collins-Sussman wrote:
>>
>>
>>
>>> * Proposed solution: place a hashtable within the auth_baton which
>>> holds "runtime parameters".
>>>
>>> * create public functions to get/set "runtime parameter" values,
>>> callable any time, by anyone.
>>>
>>> * provider implementations will look for specific runtime params
>>> in the hash that they need; if not present, they simply
>>> fail to return credentials (return NULL). (and obviously,
>>> each provider will document what runtime params it needs.)
>>>
>>>
>>>
>>Don't go inventing yet another hash table for that, you can use an
>>svn_config_t. Sure, you won't read it from a file, but it gives you all
>>the interfaces you need, including a separate namespace for each
>>provider's options.
>>
>>
>
>Ah, interesting!
>
>So instead of having to store hash keys like "svn:auth:certs:realm",
>we could instead use an svn_config_t with a "svn:auth:certs" section,
>containing a key "realm". Very nice.
>
>I worried that there's no constructor function for an svn_config_t,
>though. Looking at code, only svn_config_read seems to build one:
>
> svn_config_t *cfg = apr_palloc (pool, sizeof (*cfg));
> cfg->sections = apr_hash_make (pool);
> cfg->pool = pool;
> cfg->x_pool = svn_pool_create (pool);
> cfg->x_values = FALSE;
> cfg->tmp_key = svn_stringbuf_create ("", pool);
>
>Should I put this code in a standalone constructor? I'm not even sure
>I understand what all these fields are for.
>
>

(Those fields are documented in config_impl.h). Yes, factoring that code
into a separate constructor would be fine. In fact, I seem to recall I
_had_ such a constructor at one time, but someone (Karl?) threw it out
on the grounds that it "complicated the interface." Well, duh.

-- 
Brane Čibej   <brane_at_xbc.nu>   http://www.xbc.nu/brane/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Feb 2 20:37:54 2003

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.