org.nuxeo.ecm.platform.test.TranslationProperties.java Source code

Java tutorial

Introduction

Here is the source code for org.nuxeo.ecm.platform.test.TranslationProperties.java

Source

/*
 * (C) Copyright 2015 Nuxeo SA (http://nuxeo.com/) and others.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Contributors:
 *     Anahide Tchertchian
 */
package org.nuxeo.ecm.platform.test;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Properties;
import java.util.Set;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * Properties implementation detecting duplicate keys, that does *not* handle properly removal of items.
 *
 * @since 7.3
 */
public class TranslationProperties extends Properties {

    private static final long serialVersionUID = 1L;

    private static final Log log = LogFactory.getLog(TranslationProperties.class);

    protected Properties duplicates;

    protected Set<String> singleLabels;

    public TranslationProperties() {
        super();
        duplicates = new Properties();
        singleLabels = new HashSet<String>();
    }

    /**
     * Override to detect duplicate keys
     */
    @SuppressWarnings("unchecked")
    @Override
    public synchronized Object put(Object key, Object value) {
        if (key instanceof String && !((String) key).contains(".")) {
            singleLabels.add((String) key);
        }
        if (containsKey(key)) {
            List<Object> values;
            if (duplicates.containsKey(key)) {
                values = (List<Object>) duplicates.get(key);
            } else {
                values = new ArrayList<>();
                duplicates.put(key, values);
                values.add(get(key));
            }
            values.add(value);
            if (log.isDebugEnabled()) {
                log.debug(String.format("Detected duplicate key '%s', values=%s", key, values));
            }
        }
        return super.put(key, value);
    }

    public Set<String> getDuplicatePropertyNames() {
        return duplicates.stringPropertyNames();
    }

    public Properties getDuplicates() {
        return duplicates;
    }

    public Set<String> getSingleLabels() {
        return singleLabels;
    }

    @Override
    public synchronized void clear() {
        super.clear();
        duplicates.clear();
    }

    // other removal methods not handled

}