/usr/include/globus/globus_extension.h is in libglobus-common-dev 16.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | /*
* Copyright 1999-2006 University of Chicago
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file globus_extension.h
* @brief Globus Extension Modules
*/
#ifndef GLOBUS_EXTENSION_H
#define GLOBUS_EXTENSION_H
#include "globus_common_include.h"
#include "globus_module.h"
#include "globus_hashtable.h"
#ifdef __cplusplus
extern "C" {
#endif
extern globus_module_descriptor_t globus_i_extension_module;
#define GLOBUS_EXTENSION_MODULE (&globus_i_extension_module)
enum
{
GLOBUS_EXTENSION_ERROR_OPEN_FAILED,
GLOBUS_EXTENSION_ERROR_LOOKUP_FAILED
};
/**
* Declare your module with the following.
*
* Ex:
* GlobusExtensionDefineModule(my_module) =
* {
* "my_module",
* globus_l_my_module_activate,
* globus_l_my_module_deactivate,
* NULL,
* NULL,
* &local_version
* };
*/
#define GlobusExtensionDefineModule(name) \
globus_module_descriptor_t name##_module
#define GlobusExtensionDeclareModule(name) \
extern globus_module_descriptor_t name##_module
#define GlobusExtensionMyModule(name) &name##_module
/**
* loads the shared library 'lib<b>extension_name</b>_<b>flavor</b>.so' from
* $GLOBUS_LOCATION/lib (or other location in LD_LIBRARY_PATH
* and activates the module defined within.
*
* In the future, a configuration file will be supported allowing arbitrary
* extension names to be mapped to a specific library name.
*
* Also, when builtin (compiled in) extensions are supported, this will
* activate those directly without needing to load the library.
*
* Search order:
* - <b>extension_name</b> in mappings hash XXX not implemented
* - mapped name in builtin hash XXX not implemented
* - mapped name in dll hash XXX not implemented
* - load mapped name XXX not implemented
* - <b>extension_name</b> in builtin hash
* - <b>extension_name</b> in dll hash
* - load library
* if(strchr(<b>extension_name</b>, '/'))
* - concatenate / + dirname(<b>extension_name</b>) +
* /lib + basename(<b>extension_name</b>) + _<flavor>.so
* to $GLOBUS_LOCATION/lib and
* each search path in mappings file XXX not implemented
* (eg, for <b>extension_name</b> == wsrf/services/CounterService, load
* $GLOBUS_LOCATION/lib/wsrf/services/libCounterService_gcc32dbg.so)
* - lib + basename(<b>entension_name</b>) + _<b>flavor</b>.so
* subject to LD_LIBRARY_PATH
* else
* - load lib<b>extension_name</b>_<b>build_flavor</b>
* subject to LD_LIBRARY_PATH
*/
int
globus_extension_activate(
const char * extension_name);
int
globus_extension_deactivate(
const char * extension_name);
typedef struct globus_l_extension_handle_s * globus_extension_handle_t;
typedef struct
{
globus_hashtable_t table;
globus_bool_t initialized;
globus_bool_t user_hashing;
} globus_extension_registry_t;
/* these two calls are only to be called from within an extensions activate
* and deactivate functions
*
* the module in the add can either be GlobusExtensionMyModule(name),
* some other module, or NULL. It's purpose is to specify the module that
* is associated with the error objects that might come from use of this
* addition to the registry.
*
* symbol is a char * by default. the key can be changed by calling
* globus_extension_registry_set_hashing() before it is accessed.
*
* regardless, the memory pointed to by symbol must exist as long as the entry
* is in the registry
*/
int
globus_extension_registry_add(
globus_extension_registry_t * registry,
void * symbol,
globus_module_descriptor_t * module,
void * data);
void *
globus_extension_registry_remove(
globus_extension_registry_t * registry,
void * symbol);
int
globus_extension_registry_set_hashing(
globus_extension_registry_t * registry,
globus_hashtable_hash_func_t hash_func,
globus_hashtable_keyeq_func_t keyeq_func);
/**
* Get the datum associated with symbol in this registry.
*
* You MUST call globus_extension_release() when you are done using
* the data. the lookup() and release() calls handle the reference counting
* that prevents an extension from being unloaded while things it provides are
* being used. Do NOT call release() until you are done accessing the data from * the lookup() call.
*
* release() could potentially block as a result of module deactivation and
* unloading. ensuring that globus_extension_deactivate() is not called with
* outstanding references will prevent that.
*
* symbol is a char * by default. the key can be changed by calling
* globus_extension_registry_set_hashing() before it is accessed.
*/
void *
globus_extension_lookup(
globus_extension_handle_t * handle,
globus_extension_registry_t * registry,
void * symbol);
void *
globus_extension_reference(
globus_extension_handle_t handle);
void
globus_extension_release(
globus_extension_handle_t handle);
/* get the module version of a loaded extension. version is a pointer to
an existing globus_version_t */
int
globus_extension_get_module_version(
globus_extension_handle_t handle,
globus_version_t * version);
globus_bool_t
globus_extension_error_match(
globus_extension_handle_t handle,
globus_object_t * error,
int type);
typedef
globus_bool_t
(*globus_extension_error_match_cb_t)(
globus_object_t * error,
globus_module_descriptor_t * module,
void * type);
globus_bool_t
globus_extension_error_match_with_cb(
globus_extension_handle_t handle,
globus_object_t * error,
globus_extension_error_match_cb_t callback,
void * type);
/**
* hopefully in the future, these functions will only be needed by generated
* code
*/
int
globus_extension_register_builtin(
const char * extension_name,
globus_module_descriptor_t * module_descriptor);
void
globus_extension_unregister_builtin(
const char * extension_name);
typedef struct
{
char * extension_name;
globus_module_descriptor_t * module_descriptor;
} globus_extension_builtin_t;
/* array of builtins, with null entry at end */
int
globus_extension_register_builtins(
globus_extension_builtin_t * builtins);
void
globus_extension_unregister_builtins(
globus_extension_builtin_t * builtins);
#ifdef __cplusplus
}
#endif
#endif /* GLOBUS_EXTENSION_H */
|