com.landawn.abacus.lock.XLockFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-android Show documentation
Show all versions of abacus-android Show documentation
A general and simple library for Android
/*
* 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.lock;
import com.landawn.abacus.cache.DistributedCacheClient;
import com.landawn.abacus.logging.Logger;
import com.landawn.abacus.logging.LoggerFactory;
import com.landawn.abacus.util.ClassUtil;
import com.landawn.abacus.util.TypeAttrParser;
/**
*
* @since 0.8
*
* @author Haiyang Li
*/
public final class XLockFactory {
private static final Logger logger = LoggerFactory.getLogger(XLockFactory.class);
private XLockFactory() {
// singleton
}
public static XLock createLocalXLock() {
return new LocalXLock();
}
public static XLock createLocalXLock(long timeout) {
return new LocalXLock(timeout);
}
@SuppressWarnings("unchecked")
public static XLock createLock(String provider) {
if (logger.isInfoEnabled()) {
logger.info("creating lock: " + provider);
}
TypeAttrParser attrResult = TypeAttrParser.parse(provider);
String clsName = attrResult.getClassName();
Class> cls = null;
if (DistributedCacheClient.MEMCACHED.equals(clsName)) {
cls = MemcachedXLock.class;
} else {
cls = ClassUtil.forClass(clsName);
}
return (XLock) TypeAttrParser.newInstance(cls, provider);
}
}