blob: f27c8552b1e0758bed36c2b3f9df4219d4a39121 [file] [log] [blame]
Jonathan Hartaa380972014-04-03 10:24:46 -07001package net.onrc.onos.core.intent.runtime;
Nick Karanatsios8abe7172014-02-19 20:31:48 -08002
Nick Karanatsios8abe7172014-02-19 20:31:48 -08003import java.io.ByteArrayOutputStream;
Nick Karanatsiosf9336002014-02-24 11:26:58 -08004import java.io.IOException;
Nick Karanatsiosa8800572014-02-25 01:12:06 -08005import java.nio.ByteBuffer;
6import java.util.Arrays;
Nick Karanatsios8abe7172014-02-19 20:31:48 -08007import java.util.concurrent.atomic.AtomicLong;
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -07008
Jonathan Hart6df90172014-04-03 10:13:11 -07009import net.onrc.onos.core.datastore.DataStoreClient;
10import net.onrc.onos.core.datastore.IKVTable;
11import net.onrc.onos.core.datastore.ObjectExistsException;
Jonathan Hartaa380972014-04-03 10:24:46 -070012import net.onrc.onos.core.intent.IntentOperationList;
Jonathan Hartdeda0ba2014-04-03 11:14:12 -070013import net.onrc.onos.core.registry.IControllerRegistryService;
14import net.onrc.onos.core.registry.IdBlock;
Jonathan Hart23701d12014-04-03 10:45:48 -070015import net.onrc.onos.core.util.serializers.KryoFactory;
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -070016
Nick Karanatsiosed645df2014-02-20 23:22:29 -080017import org.slf4j.Logger;
Nick Karanatsios8abe7172014-02-19 20:31:48 -080018import org.slf4j.LoggerFactory;
19
Jonathan Harta99ec672014-04-03 11:30:34 -070020import com.esotericsoftware.kryo.Kryo;
21import com.esotericsoftware.kryo.io.Output;
22
Nick Karanatsios8abe7172014-02-19 20:31:48 -080023/**
Nick Karanatsios8abe7172014-02-19 20:31:48 -080024 * @author nickkaranatsios
25 */
26public class PersistIntent {
Pavlin Radoslavov0c14b8a2014-05-06 16:23:48 -070027 private static final Logger log = LoggerFactory.getLogger(PersistIntent.class);
Nick Karanatsiosf9336002014-02-24 11:26:58 -080028 private long range = 10000L;
Nick Karanatsios8abe7172014-02-19 20:31:48 -080029 private final IControllerRegistryService controllerRegistry;
Ray Milkeyec838942014-04-09 11:28:43 -070030 private static final String INTENT_JOURNAL = "G:IntentJournal";
31 private static final int VALUE_STORE_LIMIT = 1024 * 1024;
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -070032 private IKVTable table;
Nick Karanatsiosd1dfb922014-02-26 11:48:49 -080033 private Kryo kryo;
Nick Karanatsios8abe7172014-02-19 20:31:48 -080034 private ByteArrayOutputStream stream;
35 private Output output = null;
36 private AtomicLong nextId = null;
37 private long rangeEnd;
38 private IdBlock idBlock = null;
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -070039
40
Pavlin Radoslavov0294e052014-04-10 13:36:45 -070041 public PersistIntent(final IControllerRegistryService controllerRegistry) {
Nick Karanatsios8abe7172014-02-19 20:31:48 -080042 this.controllerRegistry = controllerRegistry;
Ray Milkey5c9f2db2014-04-09 10:31:21 -070043 table = DataStoreClient.getClient().getTable(INTENT_JOURNAL);
Nick Karanatsiosed645df2014-02-20 23:22:29 -080044 stream = new ByteArrayOutputStream(1024);
Nick Karanatsios8abe7172014-02-19 20:31:48 -080045 output = new Output(stream);
Nick Karanatsiosd1dfb922014-02-26 11:48:49 -080046 kryo = (new KryoFactory()).newKryo();
Nick Karanatsios8abe7172014-02-19 20:31:48 -080047 }
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -070048
Nick Karanatsios8abe7172014-02-19 20:31:48 -080049 public long getKey() {
50 long key;
51 if (idBlock == null) {
52 key = getNextBlock();
53 } else {
54 key = nextId.incrementAndGet();
55 if (key >= rangeEnd) {
56 key = getNextBlock();
57 }
58 }
59 return key;
60 }
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -070061
Nick Karanatsios8abe7172014-02-19 20:31:48 -080062 private long getNextBlock() {
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -070063 // XXX This method is not thread safe, may lose allocated IdBlock
Nick Karanatsios8abe7172014-02-19 20:31:48 -080064 idBlock = controllerRegistry.allocateUniqueIdBlock(range);
65 nextId = new AtomicLong(idBlock.getStart());
66 rangeEnd = idBlock.getEnd();
67 return nextId.get();
68 }
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -070069
Nick Karanatsios8abe7172014-02-19 20:31:48 -080070 public boolean persistIfLeader(long key, IntentOperationList operations) {
71 boolean leader = true;
72 boolean ret = false;
73 // TODO call controllerRegistry.isClusterLeader()
74 if (leader) {
75 try {
Nick Karanatsiosa8800572014-02-25 01:12:06 -080076 // reserve key 10 entries for multi-write if size over 1MB
77 key *= 10;
Nick Karanatsios8abe7172014-02-19 20:31:48 -080078 kryo.writeObject(output, operations);
79 output.close();
Nick Karanatsiosa8800572014-02-25 01:12:06 -080080 ByteBuffer keyBytes = ByteBuffer.allocate(8).putLong(key);
Nick Karanatsios8abe7172014-02-19 20:31:48 -080081 byte[] buffer = stream.toByteArray();
Nick Karanatsiosa8800572014-02-25 01:12:06 -080082 int total = buffer.length;
Ray Milkey5c9f2db2014-04-09 10:31:21 -070083 if ((total >= VALUE_STORE_LIMIT)) {
84 int writeCount = total / VALUE_STORE_LIMIT;
85 int remainder = total % VALUE_STORE_LIMIT;
Nick Karanatsiosa8800572014-02-25 01:12:06 -080086 int upperIndex = 0;
87 for (int i = 0; i < writeCount; i++, key++) {
88 keyBytes.clear();
89 keyBytes.putLong(key);
90 keyBytes.flip();
Ray Milkey5c9f2db2014-04-09 10:31:21 -070091 upperIndex = (i * VALUE_STORE_LIMIT + VALUE_STORE_LIMIT) - 1;
92 log.debug("writing using indexes {}:{}", (i * VALUE_STORE_LIMIT), upperIndex);
93 table.create(keyBytes.array(), Arrays.copyOfRange(buffer, i * VALUE_STORE_LIMIT, upperIndex));
Nick Karanatsiosa8800572014-02-25 01:12:06 -080094 }
95 if (remainder > 0) {
96 keyBytes.clear();
97 keyBytes.putLong(key);
98 keyBytes.flip();
Ray Milkey269ffb92014-04-03 14:43:30 -070099 log.debug("writing using indexes {}:{}", upperIndex, total);
Nick Karanatsiosa8800572014-02-25 01:12:06 -0800100 table.create(keyBytes.array(), Arrays.copyOfRange(buffer, upperIndex + 1, total - 1));
101 }
102 } else {
103 keyBytes.flip();
104 table.create(keyBytes.array(), buffer);
105 }
Nick Karanatsiosf9336002014-02-24 11:26:58 -0800106 log.debug("key is {} value length is {}", key, buffer.length);
107 stream.reset();
108 stream.close();
Nick Karanatsiosa1bad352014-02-22 14:16:34 -0800109 log.debug("persist operations to ramcloud size of operations: {}", operations.size());
Nick Karanatsios8abe7172014-02-19 20:31:48 -0800110 ret = true;
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -0700111 } catch (ObjectExistsException ex) {
Nick Karanatsios8abe7172014-02-19 20:31:48 -0800112 log.warn("Failed to store intent journal with key " + key);
Nick Karanatsiosf9336002014-02-24 11:26:58 -0800113 } catch (IOException ex) {
114 log.error("Failed to close the stream");
Nick Karanatsios8abe7172014-02-19 20:31:48 -0800115 }
116 }
117 return ret;
118 }
119}