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

« back to all changes in this revision

Viewing changes to source/libs/sgeobj/sge_resource_quota.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_RESOURCE_QUOTA_H 
 
2
#define __SGE_RESOURCE_QUOTA_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 "sgeobj/sge_resource_quotaL.h"
 
36
 
 
37
bool rqs_parse_filter_from_string(lListElem **filter, const char* buffer, lList **alp);
 
38
bool rqs_append_filter_to_dstring(const lListElem *filter, dstring *buffer, lList **alp);
 
39
 
 
40
lListElem* rqs_set_defaults(lListElem* rqs);
 
41
 
 
42
bool rqs_verify_attributes(lListElem *rqs, lList **answer_list, bool in_master);
 
43
bool rqs_list_verify_attributes(lList *rqs_list, lList **answer_list, bool in_master);
 
44
 
 
45
lListElem *rqs_list_locate(lList *lp, const char *name);
 
46
lListElem *rqs_rule_locate(lList *lp, const char *name);
 
47
 
 
48
bool rqs_xattr_pre_gdi(lList *this_list, lList **answer_list);
 
49
 
 
50
bool rqs_get_rue_string(dstring *name, const lListElem *rule, const char *user, const char *project, const char *host, const char *queue, const char* pe);
 
51
 
 
52
int
 
53
rqs_debit_rule_usage(lListElem *job, lListElem *rule, dstring *rue_name, int slots, lList *centry_list, const char *obj_name);
 
54
 
 
55
int
 
56
rqs_debit_consumable(lListElem *rqs, lListElem *job, lListElem *granted, const char *pename, lList *centry_list, lList *acl_list, lList *hgrp_list, int slots);
 
57
 
 
58
lListElem *rqs_get_matching_rule(const lListElem *rqs, const char *user, const char *group, const char *project, const char *pe, const char *host, const char *queue, lList *userset_list, lList* hgroup_list, dstring *rule_name);
 
59
 
 
60
bool rqs_is_matching_rule(lListElem *rule, const char *user, const char *group, const char *project, const char *pe, const char *host, const char *queue, lList *master_userset_list, lList *master_hgroup_list);
 
61
 
 
62
bool sge_centry_referenced_in_rqs(const lListElem *rqs, const lListElem *centry);
 
63
 
 
64
bool rqs_replace_request_verify(lList **answer_list, const lList *request);
 
65
 
 
66
bool rqs_filter_match(lListElem *filter, int filter_type, const char *value, lList *master_userset_list, lList *master_hgroup_list, const char *group);
 
67
 
 
68
#endif /* __SGE_RESOURCE_QUOTA_H */