~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/spool/berkeleydb/sge_spooling_berkeleydb.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __SGE_SPOOLING_BERKELEYDB_H 
 
2
#define __SGE_SPOOLING_BERKELEYDB_H 
 
3
/*___INFO__MARK_BEGIN__*/
 
4
/*************************************************************************
 
5
 *
 
6
 *  The Contents of this file are made available subject to the terms of
 
7
 *  the Sun Industry Standards Source License Version 1.2
 
8
 *
 
9
 *  Sun Microsystems Inc., March, 2001
 
10
 *
 
11
 *
 
12
 *  Sun Industry Standards Source License Version 1.2
 
13
 *  =================================================
 
14
 *  The contents of this file are subject to the Sun Industry Standards
 
15
 *  Source License Version 1.2 (the "License"); You may not use this file
 
16
 *  except in compliance with the License. You may obtain a copy of the
 
17
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
18
 *
 
19
 *  Software provided under this License is provided on an "AS IS" basis,
 
20
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
21
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
22
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
23
 *  See the License for the specific provisions governing your rights and
 
24
 *  obligations concerning the Software.
 
25
 *
 
26
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
27
 *
 
28
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
29
 *
 
30
 *   All Rights Reserved.
 
31
 *
 
32
 ************************************************************************/
 
33
/*___INFO__MARK_END__*/       
 
34
 
 
35
#include <time.h>
 
36
 
 
37
#include "cull.h"
 
38
 
 
39
#include "spool/sge_spooling.h"
 
40
#include "spool/sge_spooling_utilities.h"
 
41
 
 
42
/****** spool/berkeleydb/--Spooling-Berkeley-DB ********************************
 
43
*
 
44
*  NAME
 
45
*     berkeleydb spooling - spooling of data in BerkeleyDB database
 
46
*
 
47
*  FUNCTION
 
48
*     The module provides functions and a spooling framework instantiation
 
49
*     for data input/output into a BerkeleyDB database.
 
50
*
 
51
*  SEE ALSO
 
52
****************************************************************************
 
53
*/
 
54
 
 
55
#ifdef SPOOLING_berkeleydb
 
56
const char *get_spooling_method(void);
 
57
#else
 
58
const char *get_berkeleydb_spooling_method(void);
 
59
#endif
 
60
 
 
61
lListElem *
 
62
spool_berkeleydb_create_context(lList **answer_list, const char *args);
 
63
 
 
64
bool 
 
65
spool_berkeleydb_default_startup_func(lList **answer_list, 
 
66
                                    const lListElem *rule, bool check);
 
67
 
 
68
bool 
 
69
spool_berkeleydb_common_startup_func(lList **answer_list, 
 
70
                                   const lListElem *rule);
 
71
 
 
72
bool 
 
73
spool_berkeleydb_default_shutdown_func(lList **answer_list, 
 
74
                                     const lListElem *rule);
 
75
bool 
 
76
spool_berkeleydb_default_maintenance_func(lList **answer_list, 
 
77
                                        const lListElem *rule,
 
78
                                        const spooling_maintenance_command cmd,
 
79
                                        const char *args);
 
80
 
 
81
bool
 
82
spool_berkeleydb_trigger_func(lList **answer_list, const lListElem *rule,
 
83
                              time_t trigger, time_t *next_trigger);
 
84
 
 
85
bool
 
86
spool_berkeleydb_transaction_func(lList **answer_list, const lListElem *rule, 
 
87
                                  spooling_transaction_command cmd);
 
88
bool 
 
89
spool_berkeleydb_default_list_func(lList **answer_list, 
 
90
                                 const lListElem *type, 
 
91
                                 const lListElem *rule, lList **list, 
 
92
                                 const sge_object_type object_type);
 
93
lListElem *
 
94
spool_berkeleydb_default_read_func(lList **answer_list, 
 
95
                                 const lListElem *type, 
 
96
                                 const lListElem *rule, const char *key, 
 
97
                                 const sge_object_type object_type);
 
98
bool 
 
99
spool_berkeleydb_default_write_func(lList **answer_list, 
 
100
                                  const lListElem *type, 
 
101
                                  const lListElem *rule, 
 
102
                                  const lListElem *object, const char *key, 
 
103
                                  const sge_object_type object_type);
 
104
bool 
 
105
spool_berkeleydb_default_delete_func(lList **answer_list, 
 
106
                                   const lListElem *type, 
 
107
                                   const lListElem *rule, 
 
108
                                   const char *key, 
 
109
                                   const sge_object_type object_type);
 
110
#endif /* __SGE_SPOOLING_BERKELEYDB_H */