All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.landawn.abacus.util.NameUtil Maven / Gradle / Ivy

Go to download

A general programming library in Java/Android. It's easy to learn and simple to use with concise and powerful APIs.

There is a newer version: 5.2.4
Show newest version
/*
 * Copyright (c) 2015, Haiyang Li.
 *
 * 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.
 */

package com.landawn.abacus.util;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import com.landawn.abacus.annotation.Internal;
import com.landawn.abacus.annotation.SuppressFBWarnings;

/**
 * It's tool for the conversion by between the simple name and canonical name.
 *
 * @author haiyangl
 * @since 0.8
 */
@Internal
@SuppressFBWarnings("JLM_JSR166_UTILCONCURRENT_MONITORENTER")
public final class NameUtil {

    @SuppressWarnings("deprecation")
    static final int POOL_SIZE = InternalUtil.POOL_SIZE;

    private static final Map cachedNamePool = new ObjectPool<>(POOL_SIZE);

    private static final Map simpleNamePool = new ObjectPool<>(POOL_SIZE);

    private static final Map> parentCanonicalNamePool = new ConcurrentHashMap<>();

    private static final Map parentNamePool = new ObjectPool<>(POOL_SIZE);

    private NameUtil() {
        // singlton
    }

    /**
     * Checks if is cached name.
     *
     * @param str
     * @return true, if is cached name
     */
    public static boolean isCachedName(String str) {
        return cachedNamePool.containsKey(str);
    }

    /**
     * Gets the cached name.
     *
     * @param str
     * @return
     */
    public static String getCachedName(String str) {
        String cachedString = cachedNamePool.get(str);

        if (cachedString == null) {
            cachedString = cacheName(str, false);
        }

        return cachedString;
    }

    /**
     *
     * @param name
     * @param force ignore the request if already cached.
     * @return
     */
    public static String cacheName(String name, boolean force) {
        synchronized (cachedNamePool) {
            if (force || !cachedNamePool.containsKey(name)) {
                name = name.intern();

                cachedNamePool.put(name, name);
            }

            return name;
        }
    }

    /**
     * Checks if is canonical name.
     *
     * @param parentName
     * @param name
     * @return true if the specified name starts with parentName + "."
     */
    public static boolean isCanonicalName(String parentName, String name) {
        return name.length() > parentName.length() && name.charAt(parentName.length()) == '.' && parentName.equals(getParentName(name));
    }

    /**
     * Gets the canonical name.
     *
     * @param parentName
     * @param name
     * @return
     *         or the original string if the specified name starts with parentName + ".", otherwise, an empty string "".
     */
    public static String getCanonicalName(String parentName, String name) {
        String canonicalName = null;
        Map canonicalNameMap = parentCanonicalNamePool.get(parentName);

        if (canonicalNameMap == null) {
            synchronized (parentCanonicalNamePool) {
                canonicalNameMap = parentCanonicalNamePool.get(parentName);

                if (canonicalNameMap == null) {
                    canonicalNameMap = new ConcurrentHashMap<>();
                    parentCanonicalNamePool.put(parentName, canonicalNameMap);
                }
            }
        }

        canonicalName = canonicalNameMap.get(name);

        if (canonicalName == null) {
            int idx = name.indexOf(WD._PERIOD);

            if (idx < 0) {
                canonicalName = getCachedName(parentName + "." + name);
            } else if (parentName.equals(getParentName(name))) {
                canonicalName = getCachedName(canonicalName);
            } else {
                canonicalName = N.EMPTY_STRING;
            }

            canonicalNameMap.put(name, canonicalName);
        }

        return canonicalName;
    }

    /**
     * Gets the simple name.
     *
     * @param name
     * @return
     */
    public static String getSimpleName(String name) {
        String simplePropName = simpleNamePool.get(name);

        if (simplePropName == null) {
            int idx = name.lastIndexOf(WD._PERIOD);

            if (idx < 0) {
                simplePropName = getCachedName(name);
            } else {
                simplePropName = getCachedName(name.substring(idx + 1));
            }

            simpleNamePool.put(name, simplePropName);
        }

        return simplePropName;
    }

    /**
     * Gets the parent name.
     *
     * @param name
     * @return an empty String "" if the specified name is not a canonical property name.
     */
    public static String getParentName(String name) {
        String parentName = parentNamePool.get(name);

        if (parentName == null) {
            int indx = name.lastIndexOf(WD._PERIOD);

            if (indx < 1) {
                parentName = N.EMPTY_STRING;
            } else {
                parentName = NameUtil.getCachedName(name.substring(0, indx));
            }

            parentNamePool.put(name, parentName);
        }

        return parentName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy