~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/QueueFilter.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
 
 
34
import java.io.Serializable;
 
35
import java.util.ArrayList;
 
36
import java.util.Collections;
 
37
import java.util.List;
 
38
import java.util.logging.Level;
 
39
import java.util.logging.Logger;
 
40
 
 
41
/**
 
42
 *
 
43
 */
 
44
public class QueueFilter implements Serializable {
 
45
 
 
46
    private static Logger logger = Logger.getLogger(QueueFilter.class.getName());
 
47
    private List<String> queues = new ArrayList<String>();
 
48
 
 
49
    /** Creates a new instance of QueueFilter */
 
50
    public QueueFilter() {
 
51
    }
 
52
 
 
53
    public static QueueFilter parse(String str) {
 
54
        QueueFilter ret = new QueueFilter();
 
55
        return ret.fill(str);
 
56
    }
 
57
 
 
58
    public QueueFilter fill(String list) {
 
59
        String[] elems = list.split(",");
 
60
        for (String elem : elems) {
 
61
            addQueue(elem);
 
62
        }
 
63
        return this;
 
64
    }
 
65
 
 
66
    public void addQueue(String queue) {
 
67
        if (logger.isLoggable(Level.FINE)) {
 
68
            logger.fine("add queue " + queue + " to filter");
 
69
        }
 
70
        queues.add(queue);
 
71
    }
 
72
 
 
73
    public List getQueues() {
 
74
        logger.fine("get queues");
 
75
        return Collections.unmodifiableList(queues);
 
76
    }
 
77
 
 
78
    @Override
 
79
    public String toString() {
 
80
        StringBuilder ret = new StringBuilder();
 
81
        boolean first = true;
 
82
        ret.append("Queues[");
 
83
        for (String queue : queues) {
 
84
            if (first) {
 
85
                first = false;
 
86
            } else {
 
87
                ret.append(", ");
 
88
            }
 
89
            ret.append(queue);
 
90
        }
 
91
        ret.append("]");
 
92
        return ret.toString();
 
93
    }
 
94
}
 
 
b'\\ No newline at end of file'