goipcc

package module
v0.2.1-0...-940371f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 3, 2021 License: Apache-2.0, MIT Imports: 3 Imported by: 0

README

goipcc Build Status codecov Go Report Card PkgGoDev

A simple Unix IPC Socket client for Go.

NOTE: For more flexibility try joseluisq/gonetc instead.

Usage

package main

import (
    "log"
    "strings"

    "github.com/joseluisq/goipcc"
)

func main() {
    // Code for example purposes only

    // 1. Create a simple listening Unix socket with echo functionality
    // using the `socat` tool -> http://www.dest-unreach.org/socat/
    // Then execute the following commands on your terminal:
    //  rm -f /tmp/mysocket && socat UNIX-LISTEN:/tmp/mysocket,fork exec:'/bin/cat'

    // 2. Now just run this client code example in order to exchange data with current socket.
    //  go run examples/main.go

    // 2.1 Connect to the listening socket
    sock := goipcc.New("/tmp/mysocket")
    err := sock.Connect()
    if err != nil {
        log.Fatalln("unable to communicate with socket:", err)
    }

    // 2.2 Send some sequential data to current socket (example only)
    pangram := strings.Split("The quick brown fox jumps over the lazy dog", " ")
    for _, word := range pangram {
        log.Println("client data sent:", word)
        _, err := sock.Write([]byte(word), func(resp []byte, err error, done func()) {
            log.Println("client data received:", string(resp))
            // Finish the current write handling response if we are done
            done()
        })
        if err != nil {
            log.Fatalln("unable to write to socket:", err)
        }
    }

    sock.Close()

    // 3. Finally after running the client you'll see a similar output like:
    //
    // 2020/11/24 00:39:27 client data sent: The
    // 2020/11/24 00:39:27 client data received: The
    // 2020/11/24 00:39:28 client data sent: quick
    // 2020/11/24 00:39:28 client data received: quick
    // 2020/11/24 00:39:29 client data sent: brown
    // 2020/11/24 00:39:29 client data received: brown
    // 2020/11/24 00:39:30 client data sent: fox
    // 2020/11/24 00:39:30 client data received: fox
    // 2020/11/24 00:39:31 client data sent: jumps
    // 2020/11/24 00:39:31 client data received: jumps
    // 2020/11/24 00:39:32 client data sent: over
    // 2020/11/24 00:39:32 client data received: over
    // 2020/11/24 00:39:33 client data sent: the
    // 2020/11/24 00:39:33 client data received: the
    // 2020/11/24 00:39:34 client data sent: lazy
    // 2020/11/24 00:39:34 client data received: lazy
    // 2020/11/24 00:39:35 client data sent: dog
    // 2020/11/24 00:39:35 client data received: dog
}

Contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in current work by you, as defined in the Apache-2.0 license, shall be dual licensed as described below, without any additional terms or conditions.

Feel free to send some Pull request or issue.

License

This work is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).

© 2020-present Jose Quintana

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type IPCSockClient

type IPCSockClient struct {
	// contains filtered or unexported fields
}

IPCSockClient defines an Unix IPC socket client.

func New

func New(unixSocketFilePath string) *IPCSockClient

New creates a new Unix IPC socket client instance.

func (*IPCSockClient) Close

func (c *IPCSockClient) Close()

Close closes current socket client connection.

func (*IPCSockClient) Connect

func (c *IPCSockClient) Connect() error

Connect establishes a new Unix IPC socket connection.

func (*IPCSockClient) Write

func (c *IPCSockClient) Write(data []byte, respHandler func(data []byte, err error, done func())) (n int, err error)

Write writes bytes to current socket. It also provides an optional data response handler. When a `respHandler` function is provided then three params are provided: `data []byte`, `err error`, `done func()`. The `done()` function param acts as a callback completion in order to finish the current write execution.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL