/gremgoser

A fast, efficient, and easy-to-use Go client for the Apache TinkerPop graph database stack that supports serializing and de-serializing interfaces in/out of a graph

Primary LanguageGoMIT LicenseMIT

gremgoser

GoDoc Build Status Coverage Status

gremgoser is a fast, efficient, and easy-to-use client for the TinkerPop graph database stack. It is a Gremlin language driver which uses WebSockets to interface with Gremlin Server and has a strong emphasis on concurrency and scalability. gremgoser started as a fork of gremgo. The main difference is gremgoser supports serializing and de-serializing interfaces in/out of a graph as well as Vertex and edge creation from Go interfaces. Please keep in mind that gremgoser is still under heavy development and might change until v1.0 release. gremgoser also fixes all panics that could happen in gremgo.

Current code coverage is: 87.1%

Installation

go get github.com/intwinelabs/gremgoser

Documentation

Project Management

Contributing

  • Reporting Issues - When reporting issues on GitHub please include your host OS (Ubuntu 12.04, Fedora 19, etc) sudo lsb_release -a, the output of uname -a, go version, tinkerpop server and version. Please include the steps required to reproduce the problem. This info will help us review and fix your issue faster.
  • We welcome your pull requests - We are always thrilled to receive pull requests, and do our best to process them as fast as possible.
    • Not sure if that typo is worth a pull request? Do it! We will appreciate it.
    • If your pull request is not accepted on the first try, don't be discouraged! We will do our berst to give you feedback on what to improve.
    • We're trying very hard to keep gremgoser lean and focused. We don't want it to do everything for everybody. This means that we might decide against incorporating a new feature. However, we encourage you to fork our repo and implement it on top of gremgoser.
    • Any changes or improvements should be documented as a GitHub issue before we add it to the project anbd anybody starts working on it.
  • Please check for existing issues first - If it does add a quick "+1". This will help prioritize the most common problems and requests.

Example

This is a example of a secure connection with authentication. The example also shows the ability to pass a interface to create a Vertex in the graph as well as the ability to create Edges between interfaces. This also shows de-serialization of interface from the graph.

package main

import (
	"fmt"
	"log"

	"github.com/davecgh/go-spew/spew"
	"github.com/google/uuid"
	"github.com/intwinelabs/gremgoser"
)

type X float32

type Person struct {
	Id     uuid.UUID `graph:"id,string"`
	PID    string    `graph:"pid,string"`
	Name   string    `graph:"name,string"`
	Age    int       `graph:"age,number"`
	Active bool      `graph:"active,bool"`
	Vect   []float32 `graph:"vect,[]number"`
	Test   []string  `graph:"test,[]string"`
	Foo    X         `graph:"foo,other"`
}

func main() {
	errs := make(chan error)
	go func(chan error) {
		err := <-errs
		log.Fatal("Lost connection to the database: " + err.Error())
	}(errs) // Example of connection error handling logic

	host := "wss://gremlin.server:443/"
	user := "username"
	pass := "password"
	conf := gremgoser.SetAuthentication(user, pass)
	dialer := gremgoser.NewDialer(host, conf) // Returns a WebSocket dialer to connect to Gremlin Server
	g, err := gremgoser.Dial(dialer, errs)    // Returns a gremgoser client to interact with
	if err != nil {
		fmt.Println(err)
		return
	}
	res, err := g.Execute( // Sends a query to Gremlin Server with bindings
		"g.V()",
		map[string]string{},
		map[string]string{},
	)

	if err != nil {
		fmt.Println(err)
		return
	}

	spew.Dump(res)

	// Add a person
	p := Person{
		Id:   uuid.New(),
		PID:  "testID",
		Name: "Ted",
		Age:  48,
		Vect: []float32{1.566864, 0.234},
		Test: []string{"one", "two", "three", "four"},
		Foo:  0.233,
	}

	res2, err := g.AddV("person", p)

	if err != nil {
		fmt.Println(err)
		return
	}

	spew.Dump(res2)

	// Add a person
	p2 := Person{
		Id:   uuid.New(),
		PID:  "testID",
		Name: "Donald",
		Age:  72,
	}

	res3, err := g.AddV("person", p2)

	if err != nil {
		fmt.Println(err)
		return
	}

	spew.Dump(res3)

	// Ted Likes Donald
	res4, err := g.AddE("likes", p, p2)
	if err != nil {
		fmt.Println(err)
		return
	}

	spew.Dump(res4)

	// Lets ask the graph for p back as a new instance of a Person
	id := p.Id.String()
	p3 := []Person{}
	q := fmt.Sprintf("g.V('%s')", id)
	//q = "g.V()"
	fmt.Println(q)
	err = g.Get(q, &p3)
	if err != nil {
		fmt.Println(err)
		return
	}
	spew.Dump(p3)
}

License

Copyright (c) 2018 Intwine Labs, Inc.

Copyright (c) 2016 Marcus Engvall

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.