diff --git a/java/README b/java/README
new file mode 100644
index 000000000..931f9a211
--- /dev/null
+++ b/java/README
@@ -0,0 +1,20 @@
+###############################################################################
+leveldb - A Java port of LevelDB (https://github.com/dain/leveldb)
+
+This is a Java port of LevelDB. We only need the interface part, so the
+implementation part is not checked in.
+
+This is based on commit: c8d074b3d95f30612e573bba689b85749031d639 from
+https://github.com/dain/leveldb.git
+
+###############################################################################
+
+leveldbjni - JNI Wrapper for LevelDB (https://github.com/fusesource/leveldbjni)
+
+Provide LevelDB implementation by using JNI wrapper. It is written using HawtJNI
+which is JNI code generatori (http://hawtjni.fusesource.org/).
+
+This is based on commmit: 8bac93ec1bcc97a098a1eaac265ea04b766ef574 from
+https://github.com/fusesource/leveldbjni.git
+
+###############################################################################
diff --git a/java/leveldb/.gitignore b/java/leveldb/.gitignore
new file mode 100644
index 000000000..67590d81a
--- /dev/null
+++ b/java/leveldb/.gitignore
@@ -0,0 +1,22 @@
+target/
+/var
+pom.xml.versionsBackup
+test-output/
+/atlassian-ide-plugin.x
+.idea
+.*.swp
+.*.swo
+leveldb-c
+*~
+*.swp
+.idea
+.idea/*
+*.iml
+*.ipr
+*.iws
+.DS_Store
+.scala_dependencies
+.project
+.classpath
+.settings
+eclipse-classes
diff --git a/java/leveldb/leveldb-api/pom.xml b/java/leveldb/leveldb-api/pom.xml
new file mode 100644
index 000000000..c8a484df7
--- /dev/null
+++ b/java/leveldb/leveldb-api/pom.xml
@@ -0,0 +1,19 @@
+
+
+
+ 4.0.0
+
+ org.iq80.leveldb
+ leveldb-project
+ 0.4-SNAPSHOT
+
+
+ org.iq80.leveldb
+ leveldb-api
+ 0.4-SNAPSHOT
+ jar
+
+ ${project.artifactId}
+ High level Java API for LevelDB
+
+
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/CompressionType.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/CompressionType.java
new file mode 100644
index 000000000..4c622dfc6
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/CompressionType.java
@@ -0,0 +1,45 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+public enum CompressionType
+{
+ NONE(0x00),
+ SNAPPY(0x01);
+
+ public static CompressionType getCompressionTypeByPersistentId(int persistentId) {
+ for (CompressionType compressionType : CompressionType.values()) {
+ if (compressionType.persistentId == persistentId) {
+ return compressionType;
+ }
+ }
+ throw new IllegalArgumentException("Unknown persistentId " + persistentId);
+ }
+
+ private final int persistentId;
+
+ CompressionType(int persistentId)
+ {
+ this.persistentId = persistentId;
+ }
+
+ public int persistentId()
+ {
+ return persistentId;
+ }
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DB.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DB.java
new file mode 100644
index 000000000..9c3fbe8c9
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DB.java
@@ -0,0 +1,62 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+import java.io.Closeable;
+import java.util.Map;
+
+/**
+ * @author Hiram Chirino
+ */
+public interface DB extends Iterable>, Closeable {
+
+ public byte[] get(byte[] key) throws DBException;
+ public byte[] get(byte[] key, ReadOptions options) throws DBException;
+
+ public DBIterator iterator();
+ public DBIterator iterator(ReadOptions options);
+
+ public void put(byte[] key, byte[] value) throws DBException;
+ public void delete(byte[] key) throws DBException;
+ public void write(WriteBatch updates) throws DBException;
+
+ public WriteBatch createWriteBatch();
+
+ /**
+ * @return null if options.isSnapshot()==false otherwise returns a snapshot
+ * of the DB after this operation.
+ */
+ public Snapshot put(byte[] key, byte[] value, WriteOptions options) throws DBException;
+
+ /**
+ * @return null if options.isSnapshot()==false otherwise returns a snapshot
+ * of the DB after this operation.
+ */
+ public Snapshot delete(byte[] key, WriteOptions options) throws DBException;
+
+ /**
+ * @return null if options.isSnapshot()==false otherwise returns a snapshot
+ * of the DB after this operation.
+ */
+ public Snapshot write(WriteBatch updates, WriteOptions options) throws DBException;
+
+ public Snapshot getSnapshot();
+
+ public long[] getApproximateSizes(Range ... ranges);
+ public String getProperty(String name);
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBComparator.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBComparator.java
new file mode 100644
index 000000000..1a583118f
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBComparator.java
@@ -0,0 +1,47 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+import java.util.Comparator;
+
+/**
+ * @author Hiram Chirino
+ */
+public interface DBComparator extends Comparator{
+
+ public String name();
+
+ /**
+ * If start < limit, returns a short key in [start,limit).
+ * Simple comparator implementations should return start unchanged,
+ *
+ * @param start
+ * @param limit
+ * @return
+ */
+ byte[] findShortestSeparator(byte[] start, byte[] limit);
+
+ /**
+ * returns a 'short key' where the 'short key' >= key.
+ * Simple comparator implementations should return key unchanged,
+ *
+ * @param key
+ */
+ byte[] findShortSuccessor(byte[] key);
+
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBException.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBException.java
new file mode 100644
index 000000000..09cf5ba0f
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBException.java
@@ -0,0 +1,38 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+/**
+ * @author Hiram Chirino
+ */
+public class DBException extends RuntimeException {
+ public DBException() {
+ }
+
+ public DBException(String s) {
+ super(s);
+ }
+
+ public DBException(String s, Throwable throwable) {
+ super(s, throwable);
+ }
+
+ public DBException(Throwable throwable) {
+ super(throwable);
+ }
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBFactory.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBFactory.java
new file mode 100644
index 000000000..d56999457
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBFactory.java
@@ -0,0 +1,34 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+import java.io.File;
+import java.io.IOException;
+
+/**
+ * @author Hiram Chirino
+ */
+public interface DBFactory {
+
+ public DB open(File path, Options options) throws IOException;
+
+ public void destroy(File path, Options options) throws IOException;
+
+ public void repair(File path, Options options) throws IOException;
+
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBIterator.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBIterator.java
new file mode 100644
index 000000000..2d40b62e8
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/DBIterator.java
@@ -0,0 +1,65 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+import java.io.Closeable;
+import java.util.Iterator;
+import java.util.Map;
+
+/**
+ * @author Hiram Chirino
+ */
+public interface DBIterator extends Iterator>, Closeable {
+
+ /**
+ * Repositions the iterator so the key of the next BlockElement
+ * returned greater than or equal to the specified targetKey.
+ */
+ public void seek(byte[] key);
+
+ /**
+ * Repositions the iterator so is is at the beginning of the Database.
+ */
+ public void seekToFirst();
+
+ /**
+ * Returns the next element in the iteration, without advancing the iteration.
+ */
+ public Map.Entry peekNext();
+
+ /**
+ * @return true if there is a previous entry in the iteration.
+ */
+ boolean hasPrev();
+
+ /**
+ * @return the previous element in the iteration and rewinds the iteration.
+ */
+ Map.Entry prev();
+
+ /**
+ * @return the previous element in the iteration, without rewinding the iteration.
+ */
+ public Map.Entry peekPrev();
+
+ /**
+ * Repositions the iterator so it is at the end of of the Database.
+ */
+ public void seekToLast();
+
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Logger.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Logger.java
new file mode 100644
index 000000000..0e54c3a5b
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Logger.java
@@ -0,0 +1,27 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+/**
+ * @author Hiram Chirino
+ */
+public interface Logger {
+
+ public void log(String message);
+
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Options.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Options.java
new file mode 100644
index 000000000..b79d9d98f
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Options.java
@@ -0,0 +1,168 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+public class Options {
+
+ private boolean createIfMissing = true;
+ private boolean errorIfExists;
+ private int writeBufferSize = 4 << 20;
+
+ private int maxOpenFiles = 1000;
+
+ private int blockRestartInterval = 16;
+ private int blockSize = 4 * 1024;
+ private CompressionType compressionType = CompressionType.SNAPPY;
+ private boolean verifyChecksums = true;
+ private boolean paranoidChecks = false;
+ private DBComparator comparator;
+ private Logger logger = null;
+ private long cacheSize;
+
+ static void checkArgNotNull(Object value, String name) {
+ if(value==null) {
+ throw new IllegalArgumentException("The "+name+" argument cannot be null");
+ }
+ }
+
+ public boolean createIfMissing()
+ {
+ return createIfMissing;
+ }
+
+ public Options createIfMissing(boolean createIfMissing)
+ {
+ this.createIfMissing = createIfMissing;
+ return this;
+ }
+
+ public boolean errorIfExists()
+ {
+ return errorIfExists;
+ }
+
+ public Options errorIfExists(boolean errorIfExists)
+ {
+ this.errorIfExists = errorIfExists;
+ return this;
+ }
+
+ public int writeBufferSize()
+ {
+ return writeBufferSize;
+ }
+
+ public Options writeBufferSize(int writeBufferSize)
+ {
+ this.writeBufferSize = writeBufferSize;
+ return this;
+ }
+
+ public int maxOpenFiles()
+ {
+ return maxOpenFiles;
+ }
+
+ public Options maxOpenFiles(int maxOpenFiles)
+ {
+ this.maxOpenFiles = maxOpenFiles;
+ return this;
+ }
+
+ public int blockRestartInterval()
+ {
+ return blockRestartInterval;
+ }
+
+ public Options blockRestartInterval(int blockRestartInterval)
+ {
+ this.blockRestartInterval = blockRestartInterval;
+ return this;
+ }
+
+ public int blockSize()
+ {
+ return blockSize;
+ }
+
+ public Options blockSize(int blockSize)
+ {
+ this.blockSize = blockSize;
+ return this;
+ }
+
+ public CompressionType compressionType()
+ {
+ return compressionType;
+ }
+
+ public Options compressionType(CompressionType compressionType)
+ {
+ checkArgNotNull(compressionType, "compressionType");
+ this.compressionType = compressionType;
+ return this;
+ }
+
+ public boolean verifyChecksums()
+ {
+ return verifyChecksums;
+ }
+
+ public Options verifyChecksums(boolean verifyChecksums)
+ {
+ this.verifyChecksums = verifyChecksums;
+ return this;
+ }
+
+
+ public long cacheSize() {
+ return cacheSize;
+ }
+
+ public Options cacheSize(long cacheSize) {
+ this.cacheSize = cacheSize;
+ return this;
+ }
+
+ public DBComparator comparator() {
+ return comparator;
+ }
+
+ public Options comparator(DBComparator comparator) {
+ this.comparator = comparator;
+ return this;
+ }
+
+ public Logger logger() {
+ return logger;
+ }
+
+ public Options logger(Logger logger) {
+ this.logger = logger;
+ return this;
+ }
+
+ public boolean paranoidChecks() {
+ return paranoidChecks;
+ }
+
+ public Options paranoidChecks(boolean paranoidChecks) {
+ this.paranoidChecks = paranoidChecks;
+ return this;
+ }
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Range.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Range.java
new file mode 100644
index 000000000..1d0e5ebd5
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Range.java
@@ -0,0 +1,43 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+/**
+ * @author Hiram Chirino
+ */
+public class Range {
+
+ final private byte[] start;
+ final private byte[] limit;
+
+ public byte[] limit() {
+ return limit;
+ }
+
+ public byte[] start() {
+ return start;
+ }
+
+ public Range(byte[] start, byte[] limit) {
+ Options.checkArgNotNull(start, "start");
+ Options.checkArgNotNull(limit, "limit");
+ this.limit = limit;
+ this.start = start;
+ }
+
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/ReadOptions.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/ReadOptions.java
new file mode 100644
index 000000000..d0ea59671
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/ReadOptions.java
@@ -0,0 +1,54 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+public class ReadOptions
+{
+ private boolean verifyChecksums = false;
+ private boolean fillCache = true;
+ private Snapshot snapshot;
+
+ public Snapshot snapshot()
+ {
+ return snapshot;
+ }
+
+ public ReadOptions snapshot(Snapshot snapshot)
+ {
+ this.snapshot = snapshot;
+ return this;
+ }
+
+ public boolean fillCache() {
+ return fillCache;
+ }
+
+ public ReadOptions fillCache(boolean fillCache) {
+ this.fillCache = fillCache;
+ return this;
+ }
+
+ public boolean verifyChecksums() {
+ return verifyChecksums;
+ }
+
+ public ReadOptions verifyChecksums(boolean verifyChecksums) {
+ this.verifyChecksums = verifyChecksums;
+ return this;
+ }
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Snapshot.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Snapshot.java
new file mode 100644
index 000000000..e11928565
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/Snapshot.java
@@ -0,0 +1,24 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+import java.io.Closeable;
+
+public interface Snapshot extends Closeable {
+
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/WriteBatch.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/WriteBatch.java
new file mode 100644
index 000000000..960a5f959
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/WriteBatch.java
@@ -0,0 +1,29 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+import java.io.Closeable;
+
+/**
+ * @author Hiram Chirino
+ */
+public interface WriteBatch extends Closeable {
+
+ public WriteBatch put(byte[] key, byte[] value);
+ public WriteBatch delete(byte[] key);
+}
diff --git a/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/WriteOptions.java b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/WriteOptions.java
new file mode 100644
index 000000000..2d1876c6b
--- /dev/null
+++ b/java/leveldb/leveldb-api/src/main/java/org/iq80/leveldb/WriteOptions.java
@@ -0,0 +1,46 @@
+/**
+ * Copyright (C) 2011 the original author or authors.
+ * See the notice.md file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * 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 org.iq80.leveldb;
+
+public class WriteOptions
+{
+ private boolean sync;
+ private boolean snapshot;
+
+
+ public boolean sync()
+ {
+ return sync;
+ }
+
+ public WriteOptions sync(boolean sync)
+ {
+ this.sync = sync;
+ return this;
+ }
+
+ public boolean snapshot() {
+ return snapshot;
+ }
+
+ public WriteOptions snapshot(boolean snapshot) {
+ this.snapshot = snapshot;
+ return this;
+ }
+
+}
diff --git a/java/leveldb/license-header.txt b/java/leveldb/license-header.txt
new file mode 100644
index 000000000..0d35f5c69
--- /dev/null
+++ b/java/leveldb/license-header.txt
@@ -0,0 +1,15 @@
+Copyright (C) 2011 the original author or authors.
+See the notice.md file distributed with this work for additional
+information regarding copyright ownership.
+
+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.
diff --git a/java/leveldb/license.txt b/java/leveldb/license.txt
new file mode 100755
index 000000000..6b0b1270f
--- /dev/null
+++ b/java/leveldb/license.txt
@@ -0,0 +1,203 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ 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.
+
diff --git a/java/leveldb/notice.md b/java/leveldb/notice.md
new file mode 100644
index 000000000..f21e15880
--- /dev/null
+++ b/java/leveldb/notice.md
@@ -0,0 +1,5 @@
+LevelDB Copyright Notices
+=========================
+
+* Copyright 2011 Dain Sundstrom
+* Copyright 2011 FuseSource Corp. http://fusesource.com
diff --git a/java/leveldb/pom.xml b/java/leveldb/pom.xml
new file mode 100644
index 000000000..22cfd8778
--- /dev/null
+++ b/java/leveldb/pom.xml
@@ -0,0 +1,386 @@
+
+
+
+ 4.0.0
+
+ org.iq80.leveldb
+ leveldb-project
+ 0.4-SNAPSHOT
+ pom
+
+ ${project.artifactId}
+
+ Port of LevelDB to Java
+ http://github.com/dain/leveldb
+
+
+ leveldb-api
+ leveldb
+
+
+ 2011
+
+
+
+ Apache License 2.0
+ http://www.apache.org/licenses/LICENSE-2.0.html
+ repo
+
+
+
+
+
+ dain
+ Dain Sundstrom
+ dain@iq80.com
+
+
+ chirino
+ Hiram Chirino
+ hiram@hiramchirino.com
+ http://hiramchirino.com
+ -5
+
+
+
+
+ UTF-8
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
+ scm:git:git://github.com/dain/leveldb.git
+ scm:git:git@github.com:dain/leveldb.git
+ http://github.com/dain/leveldb/tree/master
+
+
+
+ 3.0
+
+
+
+
+ sonatype-nexus-snapshots
+ Sonatype Nexus Snapshots
+ https://oss.sonatype.org/content/repositories/snapshots
+
+ false
+
+
+ true
+
+
+
+
+
+
+ sonatype-nexus-snapshots
+ Sonatype Nexus Snapshots
+ ${sonatypeOssDistMgmtSnapshotsUrl}
+
+
+ sonatype-nexus-staging
+ Nexus Release Repository
+ https://oss.sonatype.org/service/local/staging/deploy/maven2/
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-enforcer-plugin
+ 1.0
+
+
+ enforce-versions
+
+ enforce
+
+
+
+
+ 3.0.0
+
+
+ 1.6
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-source-plugin
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ 2.8.1
+
+
+
+ org.apache.maven.plugins
+ maven-source-plugin
+ 2.1.2
+
+ true
+
+
+
+ create-source-jar
+
+ jar-no-fork
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 2.3.2
+
+
+ 1.6
+
+
+
+
+ org.codehaus.mojo
+ findbugs-maven-plugin
+ 2.3.2
+
+ true
+ true
+ true
+
+
+
+
+ org.codehaus.mojo
+ cobertura-maven-plugin
+ 2.4
+
+
+ xml
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-install-plugin
+ 2.3.1
+
+
+
+ org.apache.maven.plugins
+ maven-resources-plugin
+ 2.4.3
+
+
+
+ org.apache.maven.plugins
+ maven-deploy-plugin
+ 2.5
+
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+ 2.7
+
+
+ com.google.doclava
+ doclava
+ 1.0.3
+
+ com.google.doclava.Doclava
+
+ ${sun.boot.class.path}
+
+ -quiet
+
+
+ -hdf project.name "${project.name}"
+ -d ${project.build.directory}/apidocs
+
+ false
+
+ -J-Xmx1024m
+
+
+
+ attach-javadocs
+
+ jar
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-release-plugin
+ 2.2.1
+
+ forked-path
+ false
+ -Psonatype-oss-release
+ false
+ true
+ @{project.version}
+
+
+
+
+
+ com.mycila.maven-license-plugin
+ maven-license-plugin
+ 1.9.0
+
+ license-header.txt
+
+ **/README.txt
+ **/config.properties
+ **/log.properties
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-site-plugin
+ 3.0
+
+
+ attach-descriptor
+
+ attach-descriptor
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-project-info-reports-plugin
+ 2.4
+
+ false
+ false
+
+
+
+ index
+ dependencies
+ issue-tracking
+ license
+ mailing-list
+ modules
+ project-team
+ plugin-management
+ plugins
+ scm
+
+
+
+
+ org.apache.maven.plugins
+ maven-jxr-plugin
+ 2.3
+
+
+ UTF-8
+ UTF-8
+ true
+ ${project.name} Source Xref (${project.version})
+ ${project.name} Source Xref (${project.version})
+
+
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+ 2.7
+
+
+ com.google.doclava
+ doclava
+ 1.0.3
+
+ com.google.doclava.Doclava
+
+ ${sun.boot.class.path}
+
+ -quiet
+
+
+ -hdf project.name "${project.name}"
+ -d ${project.build.directory}/site/apidocs
+
+ false
+
+ -J-Xmx1024m
+
+
+
+
+
+
+
+
+
+
+
+ sonatype-oss-release
+
+
+
+ org.apache.maven.plugins
+ maven-gpg-plugin
+ 1.1
+
+
+ sign-artifacts
+ verify
+
+ sign
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+
+
+
+
+
+
diff --git a/java/leveldb/src/site/site.xml b/java/leveldb/src/site/site.xml
new file mode 100644
index 000000000..e32fcc506
--- /dev/null
+++ b/java/leveldb/src/site/site.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+ com.googlecode.fluido-skin
+ fluido-skin
+ 1.3
+
+
+
+
+
+
+
+
+
+
+