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

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

/*
 * 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 com.landawn.abacus.cache.SpyMemcached;
import com.landawn.abacus.exception.AbacusException;
import com.landawn.abacus.logging.Logger;
import com.landawn.abacus.logging.LoggerFactory;

/**
 * 
 * @since 0.8
 * 
 * @author Haiyang Li
 */
public final class MemcachedLock {
    private static final Logger logger = LoggerFactory.getLogger(MemcachedLock.class);

    private final SpyMemcached mc;

    public MemcachedLock(String serverUrl) {
        mc = new SpyMemcached(serverUrl);
    }

    public boolean lock(K target, long liveTime) {
        return lock(target, (V) N.EMPTY_BYTE_ARRAY, liveTime);
    }

    /**
     * 
     * @param target
     * @param value
     * @param liveTime
     *            unit is milliseconds
     * @return
     */
    public boolean lock(K target, V value, long liveTime) {
        String key = toKey(target);

        try {
            return mc.add(key, value, liveTime);
        } catch (Exception e) {
            String msg = "Failed to lock target with key: " + key;
            logger.warn(msg, e);
            throw new AbacusException(msg, e);
        }
    }

    public boolean isLocked(K target) {
        return mc.get(toKey(target)) != null;
    }

    public V get(K target) {
        Object value = mc.get(toKey(target));

        return (V) (value instanceof byte[] && ((byte[]) value).length == 0 ? null : value);
    }

    public boolean unlock(K target) {
        try {
            return mc.delete(toKey(target));
        } catch (Exception e) {
            String msg = "Failed to unlock with key: " + target;
            logger.warn(msg, e);
            throw new AbacusException(msg, e);
        }
    }

    protected String toKey(K target) {
        return N.stringOf(target);
    }

    public SpyMemcached client() {
        return mc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy