2 * ====================================================================
3 * Copyright (c) 2006 CollabNet. All rights reserved.
5 * This software is licensed as described in the file COPYING, which
6 * you should have received as part of this distribution. The terms
7 * are also available at http://subversion.tigris.org/license-1.html.
8 * If newer versions of this license are posted there, you may use a
9 * newer version instead, at your option.
11 * This software consists of voluntary contributions made by many
12 * individuals. For exact contribution history, see the revision
13 * history and logs, available at http://subversion.tigris.org/.
14 * ====================================================================
17 #include <apr_thread_mutex.h>
21 #include "svn_pools.h"
22 #include "svn_private_config.h"
24 /* A mutex to protect our global pool and cache. */
26 static apr_thread_mutex_t
*dso_mutex
;
29 /* Global pool to allocate DSOs in. */
30 static apr_pool_t
*dso_pool
;
32 /* Global cache for storing DSO objects. */
33 static apr_hash_t
*dso_cache
;
35 /* Just an arbitrary location in memory... */
36 static int not_there_sentinel
;
38 /* A specific value we store in the dso_cache to indicate that the
39 library wasn't found. This keeps us from allocating extra memory
40 from dso_pool when trying to find libraries we already know aren't
42 #define NOT_THERE ((void *) ¬_there_sentinel)
50 dso_pool
= svn_pool_create(NULL
);
53 apr_thread_mutex_create(&dso_mutex
, APR_THREAD_MUTEX_DEFAULT
, dso_pool
);
56 dso_cache
= apr_hash_make(dso_pool
);
61 svn_dso_load(apr_dso_handle_t
**dso
, const char *fname
)
69 status
= apr_thread_mutex_lock(dso_mutex
);
71 return svn_error_wrap_apr(status
, _("Can't grab DSO mutex"));
74 *dso
= apr_hash_get(dso_cache
, fname
, APR_HASH_KEY_STRING
);
76 /* First check to see if we've been through this before... We do this
77 to avoid calling apr_dso_load multiple times for a given library,
78 which would result in wasting small amounts of memory each time. */
79 if (*dso
== NOT_THERE
)
83 status
= apr_thread_mutex_unlock(dso_mutex
);
85 return svn_error_wrap_apr(status
, _("Can't ungrab DSO mutex"));
90 /* If we got nothing back from the cache, try and load the library. */
93 status
= apr_dso_load(dso
, fname
, dso_pool
);
98 /* It wasn't found, so set the special "we didn't find it" value. */
99 apr_hash_set(dso_cache
,
100 apr_pstrdup(dso_pool
, fname
),
105 status
= apr_thread_mutex_unlock(dso_mutex
);
107 return svn_error_wrap_apr(status
, _("Can't ungrab DSO mutex"));
112 /* Stash the dso so we can use it next time. */
113 apr_hash_set(dso_cache
,
114 apr_pstrdup(dso_pool
, fname
),
120 status
= apr_thread_mutex_unlock(dso_mutex
);
122 return svn_error_wrap_apr(status
, _("Can't ungrab DSO mutex"));
127 #endif /* APR_HAS_DSO */