com.astamuse.asta4d.util.IdGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asta4d-core Show documentation
Show all versions of asta4d-core Show documentation
core functionalities of asta4d framework, including template and snippt implemention
/*
* Copyright 2012 astamuse company,Ltd.
*
* 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.astamuse.asta4d.util;
import java.nio.ByteBuffer;
import java.security.SecureRandom;
import org.apache.commons.lang3.StringUtils;
public class IdGenerator {
private final static int randomSeed;
static {
// use the last 32 bit of current time as the seed
ByteBuffer bb = ByteBuffer.allocate(64);
bb.putLong(System.currentTimeMillis());
byte[] bytes = bb.array();
byte[] seed = new byte[4];
System.arraycopy(bytes, 4, seed, 0, 4);
SecureRandom sr = new SecureRandom(seed);
randomSeed = Math.abs(sr.nextInt());
}
private final static class IdHolder {
private long threadId;
private long lastTime = Long.MIN_VALUE;
public IdHolder(long threadId) {
this.threadId = threadId;
}
public long getThreadId() {
return this.threadId;
}
public long newTime() {
// since the current milliseconds is less than 40 bit, we think this
// operation is safe
long cur = System.currentTimeMillis() << 7;
if (cur > lastTime) {
lastTime = cur;
} else {
lastTime++;
cur = lastTime;
}
return cur;
}
}
private final static ThreadLocal idHolderCache = new ThreadLocal() {
@Override
protected IdHolder initialValue() {
return new IdHolder(Thread.currentThread().getId());
}
};
/**
* a unique id with thread id embedded and a thread unique number
*
* @return
*/
// TODO we want a fast uuid solution
public final static String createId() {
IdHolder idHolder = idHolderCache.get();
long time = idHolder.newTime();
Object[] vals = { time, idHolder.getThreadId(), randomSeed };
return StringUtils.join(vals, "-");
}
}