blob: 8d78138ee5974264c9f54dcba706fc83661a39e0 [file] [log] [blame]
Jonathan Hart5ec32ba2015-02-05 13:33:58 -08001/*
2 * Copyright 2015 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 */
16package org.onosproject.store.intent.impl;
17
18import org.onosproject.net.intent.IntentData;
19import org.onosproject.store.Timestamp;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070020import org.onosproject.store.service.ClockService;
Jonathan Hart63939a32015-05-08 11:57:03 -070021import org.onosproject.store.service.MultiValuedTimestamp;
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080022
23import java.util.concurrent.atomic.AtomicLong;
24
25/**
26 * ClockService that generates logical timestamps based on IntentData versions.
27 */
28public class IntentDataLogicalClockManager<K> implements ClockService<K, IntentData> {
29
30 private final AtomicLong sequenceNumber = new AtomicLong(0);
31
32 @Override
33 public Timestamp getTimestamp(K key, IntentData intentData) {
Jonathan Hart2f669362015-02-11 16:19:20 -080034 return new MultiValuedTimestamp<>(intentData.version(),
35 sequenceNumber.getAndIncrement());
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080036 }
37}