blob: 53b70d5ba750fd9b3f90ca251ceb12fe09644ff8 [file] [log] [blame]
alshabibab984662014-12-04 18:56:18 -08001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.core.impl;
Brian O'Connor520c0522014-11-23 23:50:47 -080017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.core.IdBlock;
19import org.onosproject.core.IdGenerator;
20import org.onosproject.core.UnavailableIdException;
Brian O'Connor520c0522014-11-23 23:50:47 -080021
22/**
23 * Base class of {@link IdGenerator} implementations which use {@link IdBlockAllocator} as
24 * backend.
25 */
26public class BlockAllocatorBasedIdGenerator implements IdGenerator {
27 protected final IdBlockAllocator allocator;
28 protected IdBlock idBlock;
29
30 /**
31 * Constructs an ID generator which use {@link IdBlockAllocator} as backend.
32 *
Pavlin Radoslavov119fd5c2014-11-25 19:08:19 -080033 * @param allocator the ID block allocator to use
Brian O'Connor520c0522014-11-23 23:50:47 -080034 */
35 protected BlockAllocatorBasedIdGenerator(IdBlockAllocator allocator) {
36 this.allocator = allocator;
37 this.idBlock = allocator.allocateUniqueIdBlock();
38 }
39
40 @Override
41 public long getNewId() {
42 try {
43 return idBlock.getNextId();
44 } catch (UnavailableIdException e) {
45 synchronized (allocator) {
46 idBlock = allocator.allocateUniqueIdBlock();
47 return idBlock.getNextId();
48 }
49 }
50 }
51}