Skip to content

Commit

Permalink
Refactor: split into keyvalue and structured servers
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsb committed Dec 17, 2013
1 parent 929a330 commit 1092073
Show file tree
Hide file tree
Showing 70 changed files with 2,059 additions and 374 deletions.
9 changes: 2 additions & 7 deletions cloudata-keyvalue/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,8 @@
<dependencies>
<dependency>
<groupId>com.cloudata</groupId>
<artifactId>cloudata-shared</artifactId>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
<artifactId>cloudata-server-shared</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,16 @@
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Iterator;
import java.util.NoSuchElementException;

import javax.ws.rs.core.MediaType;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.cloudata.clients.StreamingRecordsetBase;
import com.cloudata.util.ByteStringMessageBodyWriter;
import com.cloudata.util.Hex;
import com.google.common.base.Throwables;
import com.google.common.io.ByteStreams;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import com.google.protobuf.ByteString;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
Expand All @@ -40,7 +35,6 @@ public KeyValueClient(String url) {
private static Client buildClient() {
ClientConfig config = new DefaultClientConfig();
config.getClasses().add(ByteStringMessageBodyWriter.class);
config.getClasses().add(GsonObjectMessageBodyHandler.class);
Client client = Client.create(config);
client.setFollowRedirects(true);
return client;
Expand All @@ -65,25 +59,6 @@ public void put(long storeId, ByteString key, ByteString value) throws Exception
}
}

public void put(long storeId, ByteString key, JsonObject value) throws Exception {
ClientResponse response = CLIENT.resource(url).path(toUrlPath(storeId, key))
.entity(value, MediaType.APPLICATION_JSON).post(ClientResponse.class);

try {
int status = response.getStatus();

switch (status) {
case 200:
break;

default:
throw new IllegalStateException("Unexpected status: " + status);
}
} finally {
response.close();
}
}

public KeyValueEntry increment(long storeId, ByteString key) throws Exception {
ClientResponse response = CLIENT.resource(url).path(toUrlPath(storeId, key)).queryParam("action", "increment")
.post(ClientResponse.class);
Expand Down Expand Up @@ -132,30 +107,6 @@ public String toString() {

}

public static class KeyValueJsonEntry {
private final ByteString key;
private final JsonElement value;

public KeyValueJsonEntry(ByteString key, JsonElement value) {
this.key = key;
this.value = value;
}

public ByteString getKey() {
return key;
}

public JsonElement getValue() {
return value;
}

@Override
public String toString() {
return "JsonElement [key=" + Hex.forDebug(key) + ", value=" + value + "]";
}

}

public KeyValueEntry read(long storeId, ByteString key) throws IOException {
ClientResponse response = CLIENT.resource(url).path(toUrlPath(storeId, key)).get(ClientResponse.class);

Expand All @@ -182,33 +133,6 @@ public KeyValueEntry read(long storeId, ByteString key) throws IOException {
}
}

public KeyValueJsonEntry readJson(long storeId, ByteString key) throws IOException {
ClientResponse response = CLIENT.resource(url).path(toUrlPath(storeId, key))
.accept(MediaType.APPLICATION_JSON_TYPE).get(ClientResponse.class);

try {
int status = response.getStatus();

switch (status) {
case 200:
break;

case 404:
return null;

default:
throw new IllegalStateException("Unexpected status: " + status);
}

InputStream is = response.getEntityInputStream();
JsonElement value = new JsonParser().parse(new InputStreamReader(is));

return new KeyValueJsonEntry(key, value);
} finally {
response.close();
}
}

public KeyValueRecordset query(long storeId) throws IOException {
ClientResponse response = CLIENT.resource(url).path(toUrlPath(storeId)).get(ClientResponse.class);

Expand All @@ -233,107 +157,7 @@ public KeyValueRecordset query(long storeId) throws IOException {
}
}

public KeyValueJsonRecordset queryJson(long storeId) throws IOException {
ClientResponse response = CLIENT.resource(url).path(toUrlPath(storeId)).accept(MediaType.APPLICATION_JSON_TYPE)
.get(ClientResponse.class);

try {
int status = response.getStatus();

switch (status) {
case 200:
break;

default:
throw new IllegalStateException("Unexpected status: " + status);
}

KeyValueJsonRecordset records = new KeyValueJsonRecordset(response);
response = null;
return records;
} finally {
if (response != null) {
response.close();
}
}
}

static abstract class KeyValueRecordsetBase<V> implements AutoCloseable, Iterable<V> {
final ClientResponse response;

boolean read;

public KeyValueRecordsetBase(ClientResponse response) {
this.response = response;
}

@Override
public void close() {
response.close();
}

@Override
public Iterator<V> iterator() {
if (read) {
throw new IllegalStateException();
}
read = true;
InputStream is = response.getEntityInputStream();

final DataInputStream dis = new DataInputStream(is);

return new Iterator<V>() {
V next;
boolean done;

@Override
public void remove() {
throw new UnsupportedOperationException();
}

@Override
public V next() {
ensureHaveNext();

if (next != null) {
V ret = next;
next = null;
return ret;
} else {
throw new NoSuchElementException();
}
}

@Override
public boolean hasNext() {
ensureHaveNext();

return next != null;
}

private void ensureHaveNext() {
if (next == null) {
if (!done) {
try {
next = read(dis);
} catch (IOException e) {
throw Throwables.propagate(e);
}
if (next == null) {
done = true;
}
}
}
}

};

}

protected abstract V read(DataInputStream dis) throws IOException;
}

static class KeyValueRecordset extends KeyValueRecordsetBase<KeyValueEntry> {
static class KeyValueRecordset extends StreamingRecordsetBase<KeyValueEntry> {
public KeyValueRecordset(ClientResponse response) {
super(response);
}
Expand All @@ -360,30 +184,6 @@ protected KeyValueEntry read(DataInputStream dis) throws IOException {
}
}

static class KeyValueJsonRecordset extends KeyValueRecordsetBase<KeyValueJsonEntry> {
public KeyValueJsonRecordset(ClientResponse response) {
super(response);
}

@Override
protected KeyValueJsonEntry read(DataInputStream dis) throws IOException {
int keyLength = dis.readInt();
if (keyLength == -1) {
return null;
}

ByteString key = ByteString.readFrom(ByteStreams.limit(dis, keyLength));
if (key.size() != keyLength) {
throw new EOFException();
}

int valueLength = dis.readInt();
JsonElement object = new JsonParser().parse(new InputStreamReader(ByteStreams.limit(dis, valueLength)));

return new KeyValueJsonEntry(key, object);
}
}

private String toUrlPath(long storeId, ByteString key) {
return Long.toString(storeId) + "/" + Hex.toHex(key);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.cloudata.btree.BtreeQuery;
import com.cloudata.btree.Keyspace;
import com.cloudata.keyvalue.KeyValueProto.KvEntry;
import com.cloudata.keyvalue.btree.operation.AppendOperation;
import com.cloudata.keyvalue.btree.operation.DeleteOperation;
import com.cloudata.keyvalue.btree.operation.IncrementOperation;
import com.cloudata.keyvalue.btree.operation.KeyOperation;
import com.cloudata.keyvalue.btree.operation.Keyspace;
import com.cloudata.keyvalue.btree.operation.SetOperation;
import com.cloudata.keyvalue.btree.operation.Value;
import com.cloudata.keyvalue.web.KeyValueQuery;
import com.cloudata.keyvalue.operation.AppendOperation;
import com.cloudata.keyvalue.operation.DeleteOperation;
import com.cloudata.keyvalue.operation.IncrementOperation;
import com.cloudata.keyvalue.operation.KeyOperation;
import com.cloudata.keyvalue.operation.SetOperation;
import com.cloudata.values.Value;
import com.google.common.base.Throwables;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
Expand Down Expand Up @@ -165,7 +165,7 @@ public Value get(long storeId, Keyspace keyspace, ByteString key) {
return keyValueStore.get(keyspace.mapToKey(key).asReadOnlyByteBuffer());
}

public KeyValueQuery scan(long storeId) {
public BtreeQuery scan(long storeId) {
KeyValueStore keyValueStore = getKeyValueStore(storeId);
return keyValueStore.buildQuery();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.cloudata.keyvalue.btree.Btree;
import com.cloudata.keyvalue.btree.EntryListener;
import com.cloudata.keyvalue.btree.MmapPageStore;
import com.cloudata.keyvalue.btree.PageStore;
import com.cloudata.keyvalue.btree.ReadOnlyTransaction;
import com.cloudata.keyvalue.btree.WriteTransaction;
import com.cloudata.keyvalue.btree.operation.KeyOperation;
import com.cloudata.keyvalue.btree.operation.Value;
import com.cloudata.keyvalue.web.KeyValueQuery;
import com.cloudata.btree.Btree;
import com.cloudata.btree.BtreeQuery;
import com.cloudata.btree.EntryListener;
import com.cloudata.btree.MmapPageStore;
import com.cloudata.btree.PageStore;
import com.cloudata.btree.ReadOnlyTransaction;
import com.cloudata.btree.WriteTransaction;
import com.cloudata.keyvalue.operation.KeyOperation;
import com.cloudata.values.Value;

public class KeyValueStore {

Expand Down Expand Up @@ -76,8 +76,8 @@ public Value get(final ByteBuffer key) {
}
}

public KeyValueQuery buildQuery() {
return new KeyValueQuery(btree);
public BtreeQuery buildQuery() {
return new BtreeQuery(btree);
}

}
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package com.cloudata.keyvalue.btree.operation;
package com.cloudata.keyvalue.operation;

import com.cloudata.keyvalue.KeyValueProto.KvAction;
import com.cloudata.keyvalue.KeyValueProto.KvEntry;
import com.cloudata.values.Value;
import com.google.protobuf.ByteString;

public class AppendOperation extends KeyOperation<Integer> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package com.cloudata.keyvalue.btree.operation;
package com.cloudata.keyvalue.operation;

import com.cloudata.keyvalue.KeyValueProto.KvAction;
import com.cloudata.keyvalue.KeyValueProto.KvEntry;
import com.cloudata.values.Value;

public class DeleteOperation extends KeyOperation<Integer> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package com.cloudata.keyvalue.btree.operation;
package com.cloudata.keyvalue.operation;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.cloudata.keyvalue.KeyValueProto.KvAction;
import com.cloudata.keyvalue.KeyValueProto.KvEntry;
import com.cloudata.values.Value;

public class IncrementOperation extends KeyOperation<Long> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.cloudata.keyvalue.btree.operation;
package com.cloudata.keyvalue.operation;

import com.cloudata.btree.BtreeOperation;
import com.cloudata.keyvalue.KeyValueProto.KvEntry;
import com.cloudata.values.Value;

public abstract class KeyOperation<V> {
public abstract class KeyOperation<V> implements BtreeOperation<V> {
public abstract Value doAction(Value oldValue);

public abstract KvEntry.Builder serialize();
Expand Down
Loading

0 comments on commit 1092073

Please sign in to comment.