This is an automated email from the ASF dual-hosted git repository.
dimuthuupe pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airavata.git
from c50760df01 Showing image data in cell output
new 6c4fdcde76 add airavata-fuse starter implementation
new 9728b62711 update README
new b768da924c add license headers
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
modules/agent-framework/airavata-fuse/.gitignore | 3 +
modules/agent-framework/airavata-fuse/Makefile | 25 +
modules/agent-framework/airavata-fuse/README.md | 18 +
.../agent-framework/airavata-fuse/data/foo/bar.txt | 1 +
.../agent-framework/airavata-fuse/data/hello.txt | 1 +
.../airavata-fuse/src/grpcfs/adapters.go | 81 +
.../agent-framework/airavata-fuse/src/grpcfs/fs.go | 249 +++
.../airavata-fuse/src/grpcfs/go.mod | 16 +
.../airavata-fuse/src/grpcfs/go.sum | 18 +
.../airavata-fuse/src/grpcfs/grpc.go | 129 ++
.../airavata-fuse/src/grpcfs/inode.go | 166 ++
.../airavata-fuse/src/grpcfs/pb/grpcfs.pb.go | 2253 ++++++++++++++++++++
.../airavata-fuse/src/grpcfs/pb/grpcfs_grpc.pb.go | 380 ++++
.../airavata-fuse/src/grpcfs_client/go.mod | 19 +
.../airavata-fuse/src/grpcfs_client/go.sum | 18 +
.../airavata-fuse/src/grpcfs_client/main.go | 82 +
.../airavata-fuse/src/grpcfs_server/go.mod | 18 +
.../airavata-fuse/src/grpcfs_server/go.sum | 14 +
.../airavata-fuse/src/grpcfs_server/main.go | 239 +++
.../airavata-fuse/src/proto/grpcfs.proto | 137 ++
20 files changed, 3867 insertions(+)
create mode 100644 modules/agent-framework/airavata-fuse/.gitignore
create mode 100644 modules/agent-framework/airavata-fuse/Makefile
create mode 100644 modules/agent-framework/airavata-fuse/README.md
create mode 100644 modules/agent-framework/airavata-fuse/data/foo/bar.txt
create mode 100644 modules/agent-framework/airavata-fuse/data/hello.txt
create mode 100644 modules/agent-framework/airavata-fuse/src/grpcfs/adapters.go
create mode 100644 modules/agent-framework/airavata-fuse/src/grpcfs/fs.go
create mode 100644 modules/agent-framework/airavata-fuse/src/grpcfs/go.mod
create mode 100644 modules/agent-framework/airavata-fuse/src/grpcfs/go.sum
create mode 100644 modules/agent-framework/airavata-fuse/src/grpcfs/grpc.go
create mode 100644 modules/agent-framework/airavata-fuse/src/grpcfs/inode.go
create mode 100644
modules/agent-framework/airavata-fuse/src/grpcfs/pb/grpcfs.pb.go
create mode 100644
modules/agent-framework/airavata-fuse/src/grpcfs/pb/grpcfs_grpc.pb.go
create mode 100644
modules/agent-framework/airavata-fuse/src/grpcfs_client/go.mod
create mode 100644
modules/agent-framework/airavata-fuse/src/grpcfs_client/go.sum
create mode 100644
modules/agent-framework/airavata-fuse/src/grpcfs_client/main.go
create mode 100644
modules/agent-framework/airavata-fuse/src/grpcfs_server/go.mod
create mode 100644
modules/agent-framework/airavata-fuse/src/grpcfs_server/go.sum
create mode 100644
modules/agent-framework/airavata-fuse/src/grpcfs_server/main.go
create mode 100644 modules/agent-framework/airavata-fuse/src/proto/grpcfs.proto