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

« back to all changes in this revision

Viewing changes to source/libs/sched/sge_range_schedd.c

  • 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
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 * 
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 * 
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 * 
 
9
 * 
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 * 
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 * 
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 * 
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 * 
 
28
 *   All Rights Reserved.
 
29
 * 
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
#include <stdio.h>
 
33
 
 
34
#include "sge_range.h"
 
35
#include "sge_range_schedd.h"
 
36
#include "sgermon.h"
 
37
 
 
38
/* ---------------------------------------
 
39
 
 
40
NAME 
 
41
 
 
42
   num_in_range
 
43
 
 
44
DESCR
 
45
 
 
46
   checks if a number is inside a range
 
47
   a non existent range (NULL) is seen as 1-1
 
48
 
 
49
RETURNS
 
50
 
 
51
   0 if the number is not inside the range
 
52
  
 
53
*/
 
54
u_long32 num_in_range(
 
55
u_long32 num,
 
56
lList *r 
 
57
) {
 
58
   lListElem *rep;
 
59
   u_long32 ret;
 
60
 
 
61
   DENTER(TOP_LAYER, "num_in_range");
 
62
 
 
63
   if (!r) {
 
64
      /* no ranges ==> we need to fit exactly 1 and we're sure we can */
 
65
      DEXIT;
 
66
      return MIN(num, 1);
 
67
   }
 
68
 
 
69
   for_each (rep, r) {
 
70
      if (num >= (ret=lGetUlong(rep,RN_max))) {
 
71
         /* We've more than we need */
 
72
         DEXIT;
 
73
         return ret;
 
74
      }
 
75
      else if (num < lGetUlong(rep,RN_min))
 
76
         /* We've to few for the range ==> next */
 
77
         continue;
 
78
      else {
 
79
         /* We're somewhere within the range */
 
80
         DEXIT;
 
81
         return num;
 
82
      }
 
83
   }
 
84
 
 
85
   /* it's a pitty - we simply don't have enough */
 
86
   DEXIT;
 
87
   return 0;
 
88
}