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

« back to all changes in this revision

Viewing changes to source/libs/jgdi/src/com/sun/grid/jgdi/monitoring/filter/ResourceFilter.java

  • 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
package com.sun.grid.jgdi.monitoring.filter;
 
33
import java.io.Serializable;
 
34
import java.util.HashMap;
 
35
import java.util.LinkedList;
 
36
import java.util.List;
 
37
import java.util.Map;
 
38
import java.util.Set;
 
39
import java.util.StringTokenizer;
 
40
 
 
41
/**
 
42
 *
 
43
 */
 
44
public class ResourceFilter implements Serializable {
 
45
    
 
46
    private Map<String,String> resourceMap = new HashMap<String,String>();
 
47
    
 
48
    /** Creates a new instance of ResourceFilter */
 
49
    public ResourceFilter() {
 
50
    }
 
51
    
 
52
    public static ResourceFilter parse(String str) {
 
53
        ResourceFilter ret = new ResourceFilter();
 
54
        return ret.fill(str);
 
55
    }
 
56
    
 
57
    /**
 
58
     * I need to join all the same option together
 
59
     */
 
60
    public ResourceFilter fill(String str) throws IllegalArgumentException {
 
61
        StringTokenizer st = new StringTokenizer(str, ",");
 
62
        while (st.hasMoreTokens()) {
 
63
            String resource = st.nextToken();
 
64
            int index = resource.indexOf('=');
 
65
            if (index <= 0) {
 
66
                throw new IllegalArgumentException("invalid resource list:  " + resource);
 
67
            }
 
68
            this.addResource(resource.substring(0, index), resource.substring(index + 1));
 
69
        }
 
70
        return this;
 
71
    }
 
72
    
 
73
    
 
74
    public void addResource(String name, String value) {
 
75
        resourceMap.put(name, value);
 
76
    }
 
77
    
 
78
    public Set<String> getResourceNames() {
 
79
        return resourceMap.keySet();
 
80
    }
 
81
    
 
82
    public List<String> getResources() {
 
83
        List<String> ret = new LinkedList<String>();
 
84
        for (Map.Entry<String, String> entry: resourceMap.entrySet()) {
 
85
            ret.add(entry.getKey() + "=" + entry.getValue());
 
86
        }
 
87
        return ret;
 
88
    }
 
89
    
 
90
    public String getResource(String name) {
 
91
        return resourceMap.get(name);
 
92
    }
 
93
    
 
94
}