summaryrefslogtreecommitdiffstats
path: root/logserver/src/main/java/com/yahoo/logserver/net/control/Levels.java
blob: 985f7159fc4534c506b47dfe6f77980bb1299f89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.logserver.net.control;

import java.util.LinkedHashMap;
import java.util.Map;

/**
 * This class is used to represent the state of each log level
 * in a set of states.
 *
 * @author  Bjorn Borud
 */
public class Levels implements Cloneable {
    private final Map<String, State> levelsMap = new LinkedHashMap<String, State>(10);

    /**
     * The constructor initializes the Levels object to its default
     * state.
     */
    public Levels () {
        levelsMap.put("event", State.FORWARD);
        levelsMap.put("fatal", State.FORWARD);
        levelsMap.put("error", State.FORWARD);
        levelsMap.put("warning", State.FORWARD);
        levelsMap.put("info", State.FORWARD);
        levelsMap.put("config", State.FORWARD);
        levelsMap.put("debug", State.NOFORWARD);
        levelsMap.put("spam", State.NOFORWARD);
    }

    /**
     * Parse a levels representation and return a Levels object
     * representing the levels.
     *
     * @param levels A string representation of the levels
     * @return new instance of Levels, possibly having no
     *         real values if none could be found in the
     *         <code>levels</code> parameter.
     *
     */
    public static Levels parse (String levels) {
        return (new Levels()).updateLevels(levels);
    }


    /**
     * Update the levels given a string representation of the state;
     * the levels mentioned here will be updated, the ones omitted
     * will retain their state as before the function call.
     *
     * @param levels string representation of levels
     *
     */
    public Levels updateLevels (String levels) {
        String[] parts = levels.split(",");
        if (parts.length < 1) {
            return this;
        }

        for (int i = 0; i < parts.length; i++) {
            String pair = parts[i];
            int offset = pair.indexOf('=');
            if (offset != -1) {
                String name  = pair.substring(0,offset).trim().toLowerCase();
                String value = pair.substring(offset+1).trim().toLowerCase();
                setLevelState(name, State.parse(value));
            }
        }
        return this;
    }


    /**
     * Set the state of a given level.
     *
     * @param level name of the level
     * @param state the state
     * @return returns reference to <code>this</code> for chaning
     */
    public Levels setLevelState(String level, State state) {
        levelsMap.put(level, state);
        return this;
    }

    /**
     * Get the state of a given level.
     *
     */
    public State getLevelState (String level) {
        State s = levelsMap.get(level);
        if (s == null) {
            return State.UNKNOWN;
        }
        return s;
    }

    /**
     * For equivalent configurations the toString method should
     * emit equal strings.
     *
     */
    public String toString () {
        StringBuilder sbuf = new StringBuilder(80);
        boolean first = true;
        for (Map.Entry<String, State> me : levelsMap.entrySet()) {
            // commas between
        	if (!first) {
        		sbuf.append(',');
        	} else {
        		first = false;
        	}
            sbuf.append(me.getKey())
                .append('=')
                .append(me.getValue());
        }

        return sbuf.toString();
    }

    public Object clone() {
        // quick and dirty, but easily verifiable to be correct
        return parse(this.toString());
    }

}