Skip to content

Commit

Permalink
feat(bindings/go): add writer operation
Browse files Browse the repository at this point in the history
Signed-off-by: Hanchin Hsieh <[email protected]>
  • Loading branch information
yuchanns committed Sep 24, 2024
1 parent af2ce27 commit ab9bbae
Show file tree
Hide file tree
Showing 2 changed files with 183 additions and 0 deletions.
21 changes: 21 additions & 0 deletions bindings/go/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,15 @@ var (
}[0],
}

typeResultWriterWrite = ffi.Type{

Check failure on line 92 in bindings/go/types.go

View workflow job for this annotation

GitHub Actions / lint

var `typeResultWriterWrite` is unused (unused)
Type: ffi.Struct,
Elements: &[]*ffi.Type{
&ffi.TypePointer,
&ffi.TypePointer,
nil,
}[0],
}

typeResultReaderRead = ffi.Type{
Type: ffi.Struct,
Elements: &[]*ffi.Type{
Expand Down Expand Up @@ -209,6 +218,18 @@ type resultOperatorReader struct {
error *opendalError
}

type opendalWriter struct{}

type resultOperatorWriter struct {

Check failure on line 223 in bindings/go/types.go

View workflow job for this annotation

GitHub Actions / lint

type `resultOperatorWriter` is unused (unused)
writer *opendalWriter
error *opendalError
}

type resultWriterWrite struct {

Check failure on line 228 in bindings/go/types.go

View workflow job for this annotation

GitHub Actions / lint

type `resultWriterWrite` is unused (unused)
size uint
error *opendalError
}

type resultReaderRead struct {
size uint
error *opendalError
Expand Down
162 changes: 162 additions & 0 deletions bindings/go/write.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ package opendal

import (
"context"
"io"
"unsafe"

"github.com/jupiterrider/ffi"
Expand Down Expand Up @@ -98,6 +99,94 @@ func (op *Operator) CreateDir(path string) error {
return createDir(op.inner, path)
}

// Writer returns a new Writer for the specified path.
//
// Writer is a wrapper around the C-binding function `opendal_operator_writer`.
// It provides a way to obtain a writer for writing data to the storage system.
//
// # Parameters
//
// - path: The destination path where data will be written.
//
// # Returns
//
// - *Writer: A pointer to a Writer instance, or an error if the operation fails.
//
// # Example
//
// func exampleWriter(op *opendal.Operator) {
// writer, err := op.Writer("test/")
// if err != nil {
// log.Fatal(err)
// }
// defer writer.Close()
// _, err = writer.Write([]byte("Hello opendal writer!"))
// if err != nil {
// log.Fatal(err)
// }
// }
//
// Note: This example assumes proper error handling and import statements.
func (op *Operator) Writer(path string) (*Writer, error) {
getWriter := getFFI[operatorWriter](op.ctx,
symOperatorWriter)
inner, err := getWriter(op.inner, path)
if err != nil {
return nil, err
}
writer := &Writer{
inner: inner,
ctx: op.ctx,
}
return writer, nil
}

type Writer struct {
inner *opendalWriter
ctx context.Context
}

// Write writes the given bytes to the specified path.
//
// Write is a wrapper around the C-binding function `opendal_operator_write`. It provides a simplified
// interface for writing data to the storage. Write can be called multiple times to write
// additional data to the same path.
//
// # Parameters
//
// - path: The destination path where the bytes will be written.
// - data: The byte slice containing the data to be written.
//
// # Returns
//
// - error: An error if the write operation fails, or nil if successful.
//
// # Example
//
// func exampleWrite(op *opendal.Operator) {
// err = op.Write("test", []byte("Hello opendal go binding!"))
// if err != nil {
// log.Fatal(err)
// }
// }
//
// Note: This example assumes proper error handling and import statements.
func (w *Writer) Write(p []byte) (n int, err error) {
write := getFFI[writerWrite](w.ctx, symWriterWrite)
return write(w.inner, p)
}

// Close finishes the write and releases the resources associated with the Writer.
// It is important to call Close after writing all the data to ensure that the data is
// properly flushed and written to the storage.
func (w *Writer) Close() error {
free := getFFI[writerFree](w.ctx, symWriterFree)
free(w.inner)
return nil
}

var _ io.WriteCloser = (*Writer)(nil)

const symOperatorWrite = "opendal_operator_write"

type operatorWrite func(op *opendalOperator, path string, data []byte) error
Expand Down Expand Up @@ -150,3 +239,76 @@ var withOperatorCreateDir = withFFI(ffiOpts{
return parseError(ctx, e)
}
})

const symOperatorWriter = "opendal_operator_writer"

type operatorWriter func(op *opendalOperator, path string) (*opendalWriter, error)

var withOperatorWriter = withFFI(ffiOpts{

Check failure on line 247 in bindings/go/write.go

View workflow job for this annotation

GitHub Actions / lint

var `withOperatorWriter` is unused (unused)
sym: symOperatorWriter,
rType: &ffi.TypePointer,
aTypes: []*ffi.Type{&ffi.TypePointer, &ffi.TypePointer},
}, func(ctx context.Context, ffiCall func(rValue unsafe.Pointer, aValues ...unsafe.Pointer)) operatorWriter {
return func(op *opendalOperator, path string) (*opendalWriter, error) {
bytePath, err := unix.BytePtrFromString(path)
if err != nil {
return nil, err
}
var result resultOperatorWriter
ffiCall(
unsafe.Pointer(&result),
unsafe.Pointer(&op),
unsafe.Pointer(&bytePath),
)
if result.error != nil {
return nil, parseError(ctx, result.error)
}
return result.writer, nil
}
})

const symWriterFree = "opendal_writer_free"

type writerFree func(w *opendalWriter)

var withWriterFree = withFFI(ffiOpts{

Check failure on line 274 in bindings/go/write.go

View workflow job for this annotation

GitHub Actions / lint

var `withWriterFree` is unused (unused)
sym: symWriterFree,
rType: &ffi.TypeVoid,
aTypes: []*ffi.Type{&ffi.TypePointer},
}, func(ctx context.Context, ffiCall func(rValue unsafe.Pointer, aValues ...unsafe.Pointer)) writerFree {
return func(r *opendalWriter) {
ffiCall(
nil,
unsafe.Pointer(&r),
)
}
})

const symWriterWrite = "opendal_writer_write"

type writerWrite func(r *opendalWriter, buf []byte) (size int, err error)

var withWriterWrite = withFFI(ffiOpts{

Check failure on line 291 in bindings/go/write.go

View workflow job for this annotation

GitHub Actions / lint

var `withWriterWrite` is unused (unused)
sym: symWriterWrite,
rType: &typeResultWriterWrite,
aTypes: []*ffi.Type{&ffi.TypePointer, &ffi.TypePointer, &ffi.TypePointer},
}, func(ctx context.Context, ffiCall func(rValue unsafe.Pointer, aValues ...unsafe.Pointer)) writerWrite {
return func(r *opendalWriter, buf []byte) (size int, err error) {
var length = len(buf)
if length == 0 {
return 0, nil
}
bytePtr := &buf[0]
var result resultWriterWrite
ffiCall(
unsafe.Pointer(&result),
unsafe.Pointer(&r),
unsafe.Pointer(&bytePtr),
unsafe.Pointer(&length),
)
if result.error != nil {
return 0, parseError(ctx, result.error)
}
return int(result.size), nil
}
})

0 comments on commit ab9bbae

Please sign in to comment.