Giter Site home page Giter Site logo

rethinkjava's Introduction

rethinkjava

This is a refactored version of the Java/JVM Drivers for RethinkDB ( rethinkdb.com ) by dkhenry.

  • Support for JDK7 try-with-resources (AutoCloseable) on RqlConnection
  • Connection-Pooling for RqlConnections
  • Support for Date-Values

Status

This drivers are being worked on now and is currently in progress. I make no claims about the usability, stability, or safety of this code.

This driver is working with API version 1.0 ( RethinkDB 1.11)

Changelog

  • 0.1 (June 2013) Initial push of project and first support for Maven
  • 0.2 (June 2013) Added the rest of the Rql language to driver and provided method to deconstruct responces.
  • 0.3 (July 2013) Fixed Errors in Datum Encoding and RqlCursors. Added More testing
  • 0.4 (July 2013) Added the instance methods so API looks much like the python API. Further testing added.
  • 0.5 (September 2013) Modified the license to conform to the rest of the RethinkDB driver licenses
  • 0.6 (September 2013) Updated to latest version of The query language Protobuf. Added javadocs and source jar's to deployment

Using rethinkjava

Add the following to your pom.xml

<repository>
    <id>rethinkjava-mvn-repo</id>
    <url>https://raw.github.com/dkhenry/rethinkjava/mvn-repo/</url>
    <snapshots>
        <enabled>true</enabled>
        <updatePolicy>always</updatePolicy>
    </snapshots>
</repository>

Then in your dependencides section add the following

<dependency>
    <groupId>com.dkhenry</groupId>
    <artifactId>rethinkjava</artifactId>
    <version>0.1</version>
  </dependency>

Whats Working

Connecting, Reading, and Writing work as expected ( mostly )

Also The Database administration querys should be working ( db_create, db_drop, db_list, table_create, table_drop, table_list )

##Whats not working Authentication in the API

Using functions as arguments in any part of the API

Actualy testing of everything

Formal Examples.

How you can Help

Make the testing better ( This is actually really important )

Fork the repo and make pull requests

Submit defects and feature request

Create some kind of documentation ( java docs on all the instance methods would be awesome )

Converting the instance methods to actually take in parmaters ( this will help in finding compile time defects, and documentation )

Building From Source

Rethink Java uses Maven as its build system. If you want to build from source make sure you have maven installed as well as the procol buffer compiler for java. On fedora this should get you the required packages

yum install maven protobuf protobuf-java

Once you have the required packages and the source checked out you can build Rethink Java and install it to your local maven cache by running

mvn clean install 

If you get a new ql2.proto file you must add the package definition to the top of it ( package com.rethinkdb;)

Rethink Java also ships with a test suite which can be ran with the test target. You must be running a instance of rethink-db on localhost to run the tests

mvn test 

If your interested in the code coverage jacoco is configured to run a code coverage report after testing its located here

target/site/jacoco/index.html

Planned API

I want to keep this API as close to the official API's as I can. This is an example of what I will try to accomplish

RethinkDB r = RethinkDB.connect(hostname,port);
// Any use of db set the default db
r.db("test").table_create("characters");
// A simple Insert
r.db("test").table("characters").insert(Arrays.asList(
			    new HashMap() {{ put("name","Worf");put("show","Star Trek TNG"); }},
			    new HashMap() {{ put("name","Data");put("show","Star Trek TNG"); }},
			    new HashMap() {{ put("name","William Adama");put("show","Battlestar Galactica"); }}, 
			    new HashMap() {{ put("name","Homer Simpson");put("show","The Simpsons"); }}
			));

// Then a Simple Query
r.table("tv_shows")
  .filter(new HashMap() {{ put("name","Star Trek TNG"); }});
// Returns Array(HashMap( ("name","Worf") , ("show","Star Trek TNG") ),HashMap( ("name","Data") , ("show","Star Trek TNG") ))

License

rethinkjava - Java Drivers for RethinkDB

Copyright (C) 2013  D.K.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this product 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.

rethinkjava's People

Contributors

dani72 avatar dkhenry avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.