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

qunar.tc.qmq.backup.service.impl.DbDicService Maven / Gradle / Ivy

There is a newer version: 1.1.43
Show newest version
/*
 * Copyright 2018 Qunar, Inc.
 *
 * 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 qunar.tc.qmq.backup.service.impl;

import com.google.common.base.Strings;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.dao.DuplicateKeyException;
import org.springframework.dao.EmptyResultDataAccessException;
import qunar.tc.qmq.backup.service.DicService;
import qunar.tc.qmq.backup.store.DicStore;

import java.util.concurrent.TimeUnit;

/**
 * @author yiqun.fan create on 17-10-31.
 */
public class DbDicService implements DicService {
    private static final Logger LOG = LoggerFactory.getLogger(DbDicService.class);
    private static final int MAX_SIZE = 1000000;

    private final DicStore dicStore;
    private final String pattern;
    private final LoadingCache name2IdCache;

    public DbDicService(DicStore dicStore, String pattern) {
        this.dicStore = dicStore;
        this.pattern = pattern;
        this.name2IdCache = CacheBuilder.newBuilder()
                .maximumSize(MAX_SIZE).expireAfterAccess(1, TimeUnit.DAYS)
                .build(new CacheLoader() {
                    @Override
                    public String load(String key) {
                        try {
                            return getOrCreateId(key);
                        } catch (EmptyResultDataAccessException e) {
                            return "";
                        }
                    }
                });
    }

    @Override
    public String name2Id(String name) {
        if (Strings.isNullOrEmpty(name)) {
            return "";
        }
        return name2IdCache.getUnchecked(name);
    }

    private String getOrCreateId(String name) {
        int id;
        try {
            id = dicStore.getId(name);
        } catch (EmptyResultDataAccessException e) {
            try {
                id = dicStore.insertName(name);
            } catch (DuplicateKeyException e2) {
                id = dicStore.getId(name);
            } catch (Exception e3) {
                LOG.error("insert name error: {}", name, e3);
                throw new RuntimeException("insert name error: " + name, e3);
            }
        }
        return String.format(pattern, id);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy