/usr/include/globus/globus_callout.h is in libglobus-callout-dev 2.1-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 | /*
* 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.
*/
#ifndef _GLOBUS_CALLOUT_H_
#define _GLOBUS_CALLOUT_H_
#ifndef GLOBUS_DONT_DOCUMENT_INTERNAL
/**
* @file globus_callout.c
* Globus Callout Infrastructure
* @author Sam Meder
*
* $RCSfile: globus_callout.h,v $
* $Revision: 1.9 $
* $Date: 2006/01/19 05:54:06 $
*/
#endif
#ifndef EXTERN_C_BEGIN
# ifdef __cplusplus
# define EXTERN_C_BEGIN extern "C" {
# define EXTERN_C_END }
# else
# define EXTERN_C_BEGIN
# define EXTERN_C_END
# endif
#endif
#include "globus_common.h"
#include "globus_callout_constants.h"
EXTERN_C_BEGIN
/**
* @mainpage Globus Callout API
*
* This API is intended to ease integration of configurable callouts into the
* Globus Toolkit and to provide a platform independent way of dealing with
* runtime loadable functions. It (hopefully) achieves this goal by providing
* the following functionality:
*
* - It provides a function for reading callout configuration files. Files are
* assumed to have the following format:
* - Anything after a '#' is assumed to be a comment
* - Blanks lines are ignored
* - Lines specifying callouts have the format
* abstract type library symbol
* where "abstract type" denotes the type of callout,
* e.g. globus_gram_jobmanager_authz, "library" denotes the library the
* callout can be found in and "symbol" denotes the function name of the
* callout.
* - It provides a API function for registering callouts
* - All callouts are assumed to have the function signature
* globus_result_t callout_func(va_list ap)
* - It provides a function for calling a callout given a abstract type. If
* multiple callouts are defined for the same abstract type then all callouts
* for the abstract type will be called. Implementers should not rely on any
* correlation between the order of configuration and the order of invocation
* of callouts of the same abstract type.
*
* Any program that uses Globus Callout functions must include
* "globus_callout.h".
*
* @htmlonly
* <a href="main.html" target="_top">View documentation without frames</a><br>
* <a href="index.html" target="_top">View documentation with frames</a><br>
* @endhtmlonly
*/
/**
* @defgroup globus_callout_activation Activation
*
* Globus Callout API uses standard Globus module activation and
* deactivation. Before any Globus Callout API functions are called, the
* following function must be called:
*
* @code
* globus_module_activate(GLOBUS_CALLOUT_MODULE)
* @endcode
*
*
* This function returns GLOBUS_SUCCESS if Globus Callout API was
* successfully initialized, and you are therefore allowed to
* subsequently call Globus Callout API functions. Otherwise, an error
* code is returned, and Globus GSI Credential functions should not be
* subsequently called. This function may be called multiple times.
*
* To deactivate Globus Callout API, the following function must be called:
*
* @code
* globus_module_deactivate(GLOBUS_CALLOUT_MODULE)
* @endcode
*
* This function should be called once for each time Globus Callout API
* was activated.
*
*/
/**
* Module descriptor
* @ingroup globus_callout_activation
* @hideinitializer
*/
#define GLOBUS_CALLOUT_MODULE (&globus_i_callout_module)
extern
globus_module_descriptor_t globus_i_callout_module;
/**
* Callout handle type definition
* @ingroup globus_callout_handle
*/
typedef struct globus_i_callout_handle_s * globus_callout_handle_t;
/**
* Callout function type definition
* @ingroup globus_callout_call
*/
typedef globus_result_t (*globus_callout_function_t)(
va_list ap);
/**
* @defgroup globus_callout_handle Callout Handle Operations
*
* Initialize and Destory a Globus Callout Handle structure.
*
* This section defines operations for initializing and destroying Globus
* Callout Handle structure.
*/
globus_result_t
globus_callout_handle_init(
globus_callout_handle_t * handle);
globus_result_t
globus_callout_handle_destroy(
globus_callout_handle_t handle);
/**
* @defgroup globus_callout_config Callout Configuration
*
* Functions for registering callouts.
*
* This section defines operations for registering callouts. Callouts may be
* registered either through a configuration file or through calls to
* globus_callout_register.
*/
globus_result_t
globus_callout_read_config(
globus_callout_handle_t handle,
char * filename);
globus_result_t
globus_callout_register(
globus_callout_handle_t handle,
char * type,
char * library,
char * symbol);
/**
* @defgroup globus_callout_call Callout Invocation
*
* Functions for invoking callouts.
*
* This section defines a operation for invoking callouts by their abstract
* type.
*/
globus_result_t
globus_callout_call_type(
globus_callout_handle_t handle,
char * type,
...);
EXTERN_C_END
#endif
|