Giter VIP home page Giter VIP logo

p9's Introduction

p9

CircleCI Go Report Card GoDoc

p9 is a Golang 9P2000.L client and server originally written for gVisor. p9 supports Windows, BSD, and Linux on most Go-available architectures.

Server Example

For how to start a server given a p9.Attacher implementation, see cmd/p9ufs.

For how to implement a p9.Attacher and p9.File, see as an example staticfs, a simple static file system. Boilerplate templates for p9.File implementations are in templatefs.

A test suite for server-side p9.Attacher and p9.File implementations is being built at fsimpl/test.

Client Example

import (
    "log"
    "net"

    "github.com/hugelgupf/p9/p9"
)

func main() {
  conn, err := net.Dial("tcp", "localhost:8000")
  if err != nil {
    log.Fatal(err)
  }

  // conn can be any net.Conn.
  client, err := p9.NewClient(conn)
  if err != nil {
    log.Fatal(err)
  }

  // root will be a p9.File and supports all those operations.
  root, err := client.Attach("/")
  if err != nil {
    log.Fatal(err)
  }

  // For example:
  _, _, attrs, err := root.GetAttr(p9.AttrMaskAll)
  if err != nil {
    log.Fatal(err)
  }

  log.Printf("Attrs of /: %v", attrs)
}

p9's People

Contributors

hugelgupf avatar sevki avatar rminnich avatar nmeum avatar djdv avatar stickler-ci avatar

Watchers

James Cloos 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.