/usr/include/infiniband/opensm/osm_db.h is in libopensm2-dev 3.2.6-20090317-2.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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | /*
* Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved.
* Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
* Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* OpenIB.org BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
#ifndef _OSM_DB_H_
#define _OSM_DB_H_
/*
* Abstract:
* Declaration of the DB interface.
*/
#include <complib/cl_list.h>
#include <complib/cl_spinlock.h>
#include <opensm/osm_log.h>
#ifdef __cplusplus
# define BEGIN_C_DECLS extern "C" {
# define END_C_DECLS }
#else /* !__cplusplus */
# define BEGIN_C_DECLS
# define END_C_DECLS
#endif /* __cplusplus */
BEGIN_C_DECLS
/****h* OpenSM/Database
* NAME
* Database
*
* DESCRIPTION
* The OpenSM database interface provide the means to restore persistent
* data, query, modify, delete and eventually commit it back to the
* persistent media.
*
* The interface is defined such that it can is not "data dependent":
* All keys and data items are texts.
*
* The DB implementation should be thread safe, thus callers do not need to
* provide serialization.
*
* This object should be treated as opaque and should be
* manipulated only through the provided functions.
*
* AUTHOR
* Eitan Zahavi, Mellanox Technologies LTD
*
*********/
/****s* OpenSM: Database/osm_db_domain_t
* NAME
* osm_db_domain_t
*
* DESCRIPTION
* A domain of the database. Can be viewed as a database table.
*
* The osm_db_domain_t object should be treated as opaque and should
* be manipulated only through the provided functions.
*
* SYNOPSIS
*/
typedef struct osm_db_domain {
struct osm_db *p_db;
void *p_domain_imp;
} osm_db_domain_t;
/*
* FIELDS
* p_db
* Pointer to the parent database object.
*
* p_domain_imp
* Pointer to the db implementation object
*
* SEE ALSO
* osm_db_t
*********/
/****s* OpenSM: Database/osm_db_t
* NAME
* osm_db_t
*
* DESCRIPTION
* The main database object.
*
* The osm_db_t object should be treated as opaque and should
* be manipulated only through the provided functions.
*
* SYNOPSIS
*/
typedef struct osm_db {
void *p_db_imp;
osm_log_t *p_log;
cl_list_t domains;
} osm_db_t;
/*
* FIELDS
* p_db_imp
* Pointer to the database implementation object
*
* p_log
* Pointer to the OSM logging facility
*
* domains
* List of initialize domains
*
* SEE ALSO
*********/
/****f* OpenSM: Database/osm_db_construct
* NAME
* osm_db_construct
*
* DESCRIPTION
* Construct a database.
*
* SYNOPSIS
*/
void osm_db_construct(IN osm_db_t * const p_db);
/*
* PARAMETERS
* p_db
* [in] Pointer to the database object to construct
*
* RETURN VALUES
* NONE
*
* SEE ALSO
* Database, osm_db_init, osm_db_destroy
*********/
/****f* OpenSM: Database/osm_db_destroy
* NAME
* osm_db_destroy
*
* DESCRIPTION
* Destroys the osm_db_t structure.
*
* SYNOPSIS
*/
void osm_db_destroy(IN osm_db_t * const p_db);
/*
* PARAMETERS
* p_db
* [in] Pointer to osm_db_t structure to destroy
*
* SEE ALSO
* Database, osm_db_construct, osm_db_init
*********/
/****f* OpenSM: Database/osm_db_init
* NAME
* osm_db_init
*
* DESCRIPTION
* Initializes the osm_db_t structure.
*
* SYNOPSIS
*/
int osm_db_init(IN osm_db_t * const p_db, IN osm_log_t * p_log);
/*
* PARAMETERS
*
* p_db
* [in] Pointer to the database object to initialize
*
* p_log
* [in] Pointer to the OSM logging facility
*
* RETURN VALUES
* 0 on success 1 otherwise
*
* SEE ALSO
* Database, osm_db_construct, osm_db_destroy
*********/
/****f* OpenSM: Database/osm_db_domain_init
* NAME
* osm_db_domain_init
*
* DESCRIPTION
* Initializes the osm_db_domain_t structure.
*
* SYNOPSIS
*/
osm_db_domain_t *osm_db_domain_init(IN osm_db_t * const p_db,
IN char *domain_name);
/*
* PARAMETERS
*
* p_db
* [in] Pointer to the database object to initialize
*
* domain_name
* [in] a char array with the domain name.
*
* RETURN VALUES
* pointer to the new domain object or NULL if failed.
*
* SEE ALSO
* Database, osm_db_construct, osm_db_destroy
*********/
/****f* OpenSM: Database/osm_db_restore
* NAME
* osm_db_restore
*
* DESCRIPTION
* Reads the entire domain from persistent storage - overrides all
* existing cached data (if any).
*
* SYNOPSIS
*/
int osm_db_restore(IN osm_db_domain_t * p_domain);
/*
* PARAMETERS
*
* p_domain
* [in] Pointer to the database domain object to restore
* from persistent db
*
* RETURN VALUES
* 0 if successful 1 otherwize
*
* SEE ALSO
* Database, osm_db_domain_init, osm_db_clear, osm_db_store,
* osm_db_keys, osm_db_lookup, osm_db_update, osm_db_delete
*********/
/****f* OpenSM: Database/osm_db_clear
* NAME
* osm_db_clear
*
* DESCRIPTION
* Clears the entire domain values from/in the cache
*
* SYNOPSIS
*/
int osm_db_clear(IN osm_db_domain_t * p_domain);
/*
* PARAMETERS
*
* p_domain
* [in] Pointer to the database domain object to clear
*
* RETURN VALUES
* 0 if successful 1 otherwize
*
* SEE ALSO
* Database, osm_db_domain_init, osm_db_restore, osm_db_store,
* osm_db_keys, osm_db_lookup, osm_db_update, osm_db_delete
*********/
/****f* OpenSM: Database/osm_db_store
* NAME
* osm_db_store
*
* DESCRIPTION
* Store the domain cache back to the database (commit)
*
* SYNOPSIS
*/
int osm_db_store(IN osm_db_domain_t * p_domain);
/*
* PARAMETERS
*
* p_domain
* [in] Pointer to the database domain object to restore from
* persistent db
*
* RETURN VALUES
* 0 if successful 1 otherwize
*
* SEE ALSO
* Database, osm_db_domain_init, osm_db_restore, osm_db_clear,
* osm_db_keys, osm_db_lookup, osm_db_update, osm_db_delete
*********/
/****f* OpenSM: Database/osm_db_keys
* NAME
* osm_db_keys
*
* DESCRIPTION
* Retrive all keys of the domain
*
* SYNOPSIS
*/
int osm_db_keys(IN osm_db_domain_t * p_domain, OUT cl_list_t * p_key_list);
/*
* PARAMETERS
*
* p_domain
* [in] Pointer to the database domain object
*
* p_key_list
* [out] List of key values. It should be PRE constructed and initialized.
*
* RETURN VALUES
* 0 if successful 1 otherwize
*
* NOTE: the caller needs to free and destruct the list,
* the keys returned are intrnal to the hash and should NOT be free'ed
*
* SEE ALSO
* Database, osm_db_domain_init, osm_db_restore, osm_db_clear, osm_db_store,
* osm_db_lookup, osm_db_update, osm_db_delete
*********/
/****f* OpenSM: Database/osm_db_lookup
* NAME
* osm_db_lookup
*
* DESCRIPTION
* Lookup an entry in the domain by the given key
*
* SYNOPSIS
*/
/* lookup value by key */
char *osm_db_lookup(IN osm_db_domain_t * p_domain, IN char *const p_key);
/*
* PARAMETERS
*
* p_domain
* [in] Pointer to the database domain object
*
* key
* [in] The key to look for
*
* RETURN VALUES
* the value as char * or NULL if not found
*
* SEE ALSO
* Database, osm_db_domain_init, osm_db_restore, osm_db_clear, osm_db_store,
* osm_db_keys, osm_db_update, osm_db_delete
*********/
/****f* OpenSM: Database/osm_db_update
* NAME
* osm_db_update
*
* DESCRIPTION
* Set the value of the given key
*
* SYNOPSIS
*/
int
osm_db_update(IN osm_db_domain_t * p_domain,
IN char *const p_key, IN char *const p_val);
/*
* PARAMETERS
*
* p_domain
* [in] Pointer to the database domain object
*
* p_key
* [in] The key to update
*
* p_val
* [in] The value to update
*
* RETURN VALUES
* 0 on success
*
* NOTE: the value will be duplicated so can be free'ed
*
* SEE ALSO
* Database, osm_db_domain_init, osm_db_restore, osm_db_clear, osm_db_store,
* osm_db_keys, osm_db_lookup, osm_db_delete
*********/
/****f* OpenSM: Database/osm_db_delete
* NAME
* osm_db_delete
*
* DESCRIPTION
* Delete an entry by the given key
*
* SYNOPSIS
*/
int osm_db_delete(IN osm_db_domain_t * p_domain, IN char *const p_key);
/*
* PARAMETERS
*
* p_domain
* [in] Pointer to the database domain object
*
* p_key
* [in] The key to look for
*
* RETURN VALUES
* 0 on success
*
* SEE ALSO
* Database, osm_db_domain_init, osm_db_restore, osm_db_clear, osm_db_store,
* osm_db_keys, osm_db_lookup, osm_db_update
*********/
END_C_DECLS
#endif /* _OSM_DB_H_ */
|