Paul Hinze 8b5d4b8631
Update and address protobuf package deprecations
These changes address the following warning showing up on `go get`
operations:

    go: module github.com/golang/protobuf is deprecated: Use the
    "google.golang.org/protobuf" module instead.

All changes are made using the recommendations in the per-function
deprecation notices from the docs at
https://pkg.go.dev/github.com/golang/protobuf/ptypes
2022-06-08 11:51:19 -05:00

56 lines
1.3 KiB
Go

package singleprocess
import (
"context"
"github.com/hashicorp/vagrant/internal/server/proto/vagrant_server"
"google.golang.org/protobuf/types/known/emptypb"
)
func (s *service) UpsertBasis(
ctx context.Context,
req *vagrant_server.UpsertBasisRequest,
) (*vagrant_server.UpsertBasisResponse, error) {
result := req.Basis
if err := s.state.BasisPut(result); err != nil {
return nil, err
}
return &vagrant_server.UpsertBasisResponse{Basis: result}, nil
}
func (s *service) GetBasis(
ctx context.Context,
req *vagrant_server.GetBasisRequest,
) (*vagrant_server.GetBasisResponse, error) {
result, err := s.state.BasisGet(req.Basis)
if err != nil {
return nil, err
}
return &vagrant_server.GetBasisResponse{Basis: result}, nil
}
func (s *service) FindBasis(
ctx context.Context,
req *vagrant_server.FindBasisRequest,
) (*vagrant_server.FindBasisResponse, error) {
result, err := s.state.BasisFind(req.Basis)
if err != nil {
return nil, err
}
return &vagrant_server.FindBasisResponse{Basis: result}, nil
}
func (s *service) ListBasis(
ctx context.Context,
req *emptypb.Empty,
) (*vagrant_server.ListBasisResponse, error) {
result, err := s.state.BasisList()
if err != nil {
return nil, err
}
return &vagrant_server.ListBasisResponse{Basis: result}, nil
}