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

« back to all changes in this revision

Viewing changes to source/libs/sgeobj/sge_confL.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_CONFL_H
 
2
#define __SGE_CONFL_H
 
3
 
 
4
/*___INFO__MARK_BEGIN__*/
 
5
/*************************************************************************
 
6
 * 
 
7
 *  The Contents of this file are made available subject to the terms of
 
8
 *  the Sun Industry Standards Source License Version 1.2
 
9
 * 
 
10
 *  Sun Microsystems Inc., March, 2001
 
11
 * 
 
12
 * 
 
13
 *  Sun Industry Standards Source License Version 1.2
 
14
 *  =================================================
 
15
 *  The contents of this file are subject to the Sun Industry Standards
 
16
 *  Source License Version 1.2 (the "License"); You may not use this file
 
17
 *  except in compliance with the License. You may obtain a copy of the
 
18
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
19
 * 
 
20
 *  Software provided under this License is provided on an "AS IS" basis,
 
21
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
22
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
23
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
24
 *  See the License for the specific provisions governing your rights and
 
25
 *  obligations concerning the Software.
 
26
 * 
 
27
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
28
 * 
 
29
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
30
 * 
 
31
 *   All Rights Reserved.
 
32
 * 
 
33
 ************************************************************************/
 
34
/*___INFO__MARK_END__*/
 
35
 
 
36
#include "sge_boundaries.h"
 
37
#include "cull.h"
 
38
 
 
39
#ifdef  __cplusplus
 
40
extern "C" {
 
41
#endif
 
42
 
 
43
/* *INDENT-OFF* */ 
 
44
 
 
45
enum {
 
46
   CONF_name = CONF_LOWERBOUND,
 
47
   CONF_version,
 
48
   CONF_entries                 /* Points to CF_Type list */
 
49
};
 
50
 
 
51
LISTDEF(CONF_Type)
 
52
   JGDI_ROOT_OBJ(Configuration, SGE_CONFIG_LIST, ADD | MODIFY | DELETE | GET_LIST | GET)
 
53
   JGDI_EVENT_OBJ(ADD(sgeE_CONFIG_ADD) | MODIFY(sgeE_CONFIG_MOD) | DELETE(sgeE_CONFIG_DEL) | GET_LIST(sgeE_CONFIG_LIST))
 
54
   SGE_HOST_D(CONF_name, CULL_PRIMARY_KEY | CULL_HASH | CULL_UNIQUE | CULL_SPOOL | CULL_JGDI_CONF, "global")
 
55
   SGE_ULONG(CONF_version, CULL_DEFAULT | CULL_SPOOL | CULL_JGDI_HIDDEN)
 
56
   SGE_LIST(CONF_entries, CF_Type, CULL_DEFAULT | CULL_SPOOL | CULL_JGDI_CONF)
 
57
LISTEND 
 
58
 
 
59
NAMEDEF(CONFN)
 
60
   NAME("CONF_name")
 
61
   NAME("CONF_version")
 
62
   NAME("CONF_entries")
 
63
NAMEEND
 
64
 
 
65
#define CONFS sizeof(CONFN)/sizeof(char*)
 
66
 
 
67
/*
 
68
 * configuration list 
 
69
 */
 
70
enum {
 
71
   CF_name = CF_LOWERBOUND,  /* name of configuration element */
 
72
   CF_value,                 /* value of configuration element */
 
73
   CF_sublist,               /* sub-list of type CF_Type */
 
74
   CF_local                  /* global value can be overridden */
 
75
};
 
76
 
 
77
LISTDEF(CF_Type)
 
78
   JGDI_OBJ(ConfigurationElement)
 
79
   SGE_STRING(CF_name, CULL_PRIMARY_KEY | CULL_HASH | CULL_UNIQUE | CULL_SUBLIST | CULL_JGDI_CONF)
 
80
   SGE_STRING(CF_value, CULL_DEFAULT | CULL_SUBLIST | CULL_JGDI_CONF)
 
81
   SGE_LIST(CF_sublist, CULL_ANY_SUBTYPE, CULL_DEFAULT | CULL_JGDI_CONF)
 
82
   SGE_ULONG(CF_local, CULL_DEFAULT | CULL_JGDI_HIDDEN)
 
83
LISTEND 
 
84
 
 
85
NAMEDEF(CFN)
 
86
   NAME("CF_name")
 
87
   NAME("CF_value")
 
88
   NAME("CF_sublist")
 
89
   NAME("CF_local")
 
90
NAMEEND
 
91
 
 
92
/* *INDENT-ON* */
 
93
 
 
94
#define CFS sizeof(CFN)/sizeof(char*)
 
95
#ifdef  __cplusplus
 
96
}
 
97
#endif
 
98
#endif                          /* __SGE_CONFL_H */