net.jrouter.id.support.CompositeIdGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of j-id Show documentation
Show all versions of j-id Show documentation
Distributed ID generator.
/*
* Copyright (C) 2010-2111 [email protected]
*
* 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 net.jrouter.id.support;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import net.jrouter.id.IdGenerator;
import lombok.extern.slf4j.Slf4j;
/**
* Composite IdService, preferred first non-null ID generator and store ID data back to null ID generators.
*
* @param id type.
*/
@Slf4j
public class CompositeIdGenerator implements IdGenerator {
@lombok.Getter
@lombok.Setter
private List> idGenerators;
/**
* Construct a CompositeIdGenerator from the given delegate IdGenerators.
*
* @param generators the IdGenerators to delegate to.
*/
public CompositeIdGenerator(IdGenerator... generators) {
this(Arrays.asList(generators));
}
/**
* Construct a CompositeIdGenerator from the given delegate IdGenerators.
*
* @param idGenerators the IdGenerators to delegate to.
*/
public CompositeIdGenerator(List> idGenerators) {
this.idGenerators = idGenerators;
}
@Override
public ID generateId() {
ID id = null;
List> storagers = new ArrayList<>(idGenerators.size() >> 1);
for (IdGenerator gen : idGenerators) {
id = gen.generateId();
if (id == null) {
//check if IdStorager
if (gen instanceof IdStorager) {
storagers.add((IdStorager) gen);
}
} else {
break;
}
}
//feed back data storager
if (id != null && !storagers.isEmpty()) {
feedback(storagers, id);
}
return id;
}
/**
* Store ID value.
*/
private void feedback(List> storagers, ID id) {
storagers.forEach((storager) -> {
try {
storager.storeId(id);
} catch (Exception e) {
log.error("Store {} in {} fail.", id, storager, e);
}
});
}
}