mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noël Rouvignac
19.36.2016 93dc3520b26d74dadbdad265182d9beaa9145dc4
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
 * The contents of this file are subject to the terms of the Common Development and
 * Distribution License (the License). You may not use this file except in compliance with the
 * License.
 *
 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
 * specific language governing permission and limitations under the License.
 *
 * When distributing Covered Software, include this CDDL Header Notice in each file and include
 * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
 * Header, with the fields enclosed by brackets [] replaced by your own identifying
 * information: "Portions Copyright [year] [name of copyright owner]".
 *
 * Copyright 2008 Sun Microsystems, Inc.
 * Portions Copyright 2014-2016 ForgeRock AS.
 */
package org.forgerock.opendj.config.dsconfig;
 
import static com.forgerock.opendj.dsconfig.DsconfigMessages.*;
 
import java.text.NumberFormat;
 
import org.forgerock.i18n.LocalizableMessage;
import org.forgerock.i18n.LocalizableMessageBuilder;
import org.forgerock.opendj.config.BooleanPropertyDefinition;
import org.forgerock.opendj.config.DurationPropertyDefinition;
import org.forgerock.opendj.config.DurationUnit;
import org.forgerock.opendj.config.PropertyDefinition;
import org.forgerock.opendj.config.PropertyValueVisitor;
import org.forgerock.opendj.config.SizePropertyDefinition;
import org.forgerock.opendj.config.SizeUnit;
 
/**
 * A class responsible for displaying property values. This class takes care of using locale specific formatting rules.
 */
final class PropertyValuePrinter {
 
    /** Perform property type specific print formatting. */
    private static final class MyPropertyValueVisitor extends PropertyValueVisitor<LocalizableMessage, Void> {
 
        /** The requested size unit (null if the property's unit should be used). */
        private final SizeUnit sizeUnit;
        /** The requested time unit (null if the property's unit should be used). */
        private final DurationUnit timeUnit;
        /** Whether or not values should be displayed in a script-friendly manner. */
        private final boolean isScriptFriendly;
        /** The formatter to use for numeric values. */
        private final NumberFormat numberFormat;
 
        /** Private constructor. */
        private MyPropertyValueVisitor(SizeUnit sizeUnit, DurationUnit timeUnit, boolean isScriptFriendly) {
            this.sizeUnit = sizeUnit;
            this.timeUnit = timeUnit;
            this.isScriptFriendly = isScriptFriendly;
 
            numberFormat = NumberFormat.getNumberInstance();
            numberFormat.setGroupingUsed(!this.isScriptFriendly);
            numberFormat.setMaximumFractionDigits(2);
        }
 
        @Override
        public LocalizableMessage visitBoolean(BooleanPropertyDefinition pd, Boolean v, Void p) {
            return v ? INFO_VALUE_TRUE.get() : INFO_VALUE_FALSE.get();
        }
 
        @Override
        public LocalizableMessage visitDuration(DurationPropertyDefinition pd, Long v, Void p) {
            if (pd.getUpperLimit() == null && (v < 0 || v == Long.MAX_VALUE)) {
                return INFO_VALUE_UNLIMITED.get();
            }
 
            LocalizableMessageBuilder builder = new LocalizableMessageBuilder();
            long ms = pd.getBaseUnit().toMilliSeconds(v);
 
            if (timeUnit == null && !isScriptFriendly && ms != 0) {
                // Use human-readable string representation by default.
                builder.append(DurationUnit.toString(ms));
            } else {
                // Use either the specified unit or the property definition's
                // base unit.
                DurationUnit unit = timeUnit;
                if (unit == null) {
                    unit = pd.getBaseUnit();
                }
 
                builder.append(numberFormat.format(unit.fromMilliSeconds(ms)));
                builder.append(' ');
                builder.append(unit.getShortName());
            }
 
            return builder.toMessage();
        }
 
        @Override
        public LocalizableMessage visitSize(SizePropertyDefinition pd, Long v, Void p) {
            if (pd.isAllowUnlimited() && v < 0) {
                return INFO_VALUE_UNLIMITED.get();
            }
 
            SizeUnit unit = sizeUnit;
            if (unit == null) {
                if (isScriptFriendly) {
                    // Assume users want a more accurate value.
                    unit = SizeUnit.getBestFitUnitExact(v);
                } else {
                    unit = SizeUnit.getBestFitUnit(v);
                }
            }
 
            LocalizableMessageBuilder builder = new LocalizableMessageBuilder();
            builder.append(numberFormat.format(unit.fromBytes(v)));
            builder.append(' ');
            builder.append(unit.getShortName());
 
            return builder.toMessage();
        }
 
        @Override
        public <T> LocalizableMessage visitUnknown(PropertyDefinition<T> pd, T v, Void p) {
            // For all other property definition types the default encoding
            // will do.
            String s = pd.encodeValue(v);
            if (isScriptFriendly) {
                return LocalizableMessage.raw("%s", s);
            } else if (s.trim().length() == 0 || s.contains(",")) {
                // Quote empty strings or strings containing commas
                // non-scripting mode.
                return LocalizableMessage.raw("\"%s\"", s);
            } else {
                return LocalizableMessage.raw("%s", s);
            }
        }
 
    }
 
    /** The property value printer implementation. */
    private final MyPropertyValueVisitor pimpl;
 
    /**
     * Creates a new property value printer.
     *
     * @param sizeUnit
     *            The user requested size unit or <code>null</code> if best-fit.
     * @param timeUnit
     *            The user requested time unit or <code>null</code> if best-fit.
     * @param isScriptFriendly
     *            If values should be displayed in a script friendly manner.
     */
    public PropertyValuePrinter(SizeUnit sizeUnit, DurationUnit timeUnit, boolean isScriptFriendly) {
        this.pimpl = new MyPropertyValueVisitor(sizeUnit, timeUnit, isScriptFriendly);
    }
 
    /**
     * Print a property value according to the rules of this property value printer.
     *
     * @param <T>
     *            The type of property value.
     * @param pd
     *            The property definition.
     * @param value
     *            The property value.
     * @return Returns the string representation of the property value encoded according to the rules of this property
     *         value printer.
     */
    public <T> LocalizableMessage print(PropertyDefinition<T> pd, T value) {
        return pd.accept(pimpl, value, null);
    }
}