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

« back to all changes in this revision

Viewing changes to source/libs/cull/cull_db.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 __CULL_DB_H
 
2
#define __CULL_DB_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 "cull_list.h"
 
36
#include "pack.h"
 
37
 
 
38
#ifdef  __cplusplus
 
39
extern "C" {
 
40
#endif
 
41
 
 
42
int lSplit(lList **slp, lList **ulp, const char *ulp_name, const lCondition *cp);
 
43
 
 
44
lListElem *
 
45
lSelectElemDPack(const lListElem *slp, const lCondition *cp, const lDescr *dp, 
 
46
                 const lEnumeration *enp, bool isHash, sge_pack_buffer *pb,
 
47
                 u_long32 *elements); 
 
48
 
 
49
lListElem *
 
50
lSelectElemPack(const lListElem *slp, const lCondition *cp, 
 
51
                const lEnumeration *enp, bool isHash, sge_pack_buffer *pb); 
 
52
 
 
53
lList *lSelect(const char *name, const lList *slp, const lCondition *cp, const lEnumeration *ep);
 
54
 
 
55
lList *lSelectHashPack(const char *name, const lList *slp, 
 
56
                       const lCondition *cp, const lEnumeration *enp, 
 
57
                       bool isHash, sge_pack_buffer *pb);
 
58
 
 
59
lList *lSelectDPack(const char *name, const lList *slp, const lCondition *cp,                       const lDescr *dp, const lEnumeration *enp, bool isHash,
 
60
                    sge_pack_buffer *pb, u_long32 *elements);
 
61
 
 
62
lDescr *lGetReducedDescr(const lDescr *type, const lEnumeration *what);
 
63
 
 
64
lList* lSelectDestroy(lList *slp, const lCondition *cp);
 
65
 
 
66
lList *lJoinSublist(const char *name, int nm0, const lList *lp0, const lCondition *cp0, const lEnumeration *enp0, const lDescr *sldp, const lCondition *cp1, const lEnumeration *enp1);
 
67
 
 
68
lList *lJoin(const char *name, int nm0, const lList *lp0, const lCondition *cp0, const lEnumeration *enp0, int nm1, const lList *lp1, const lCondition *cp1, const lEnumeration *enp1);
 
69
 
 
70
lDescr *lJoinDescr(const lDescr *sdp0, const lDescr *sdp1, const lEnumeration *ep0, const lEnumeration *ep1);
 
71
 
 
72
int lPartialDescr(const lEnumeration *enp, const lDescr *sdp, lDescr *ddp, int *indexp);
 
73
 
 
74
int lString2List(const char *s, lList **lpp, const lDescr *dp, int nm, const char *delimitor);
 
75
int lString2ListNone(const char *s, lList **lpp, const lDescr *dp, int nm, const char *delimitor);
 
76
 
 
77
int lDiffListStr(int nm, lList **lpp1, lList **lpp2);
 
78
 
 
79
#ifdef  __cplusplus
 
80
}
 
81
#endif
 
82
 
 
83
#endif /* __CULL_DB_H */
 
84