diff --git a/cmd/compute_api/api/domain.go b/cmd/compute_api/api/domain.go index 4f1ec41..cf958ab 100644 --- a/cmd/compute_api/api/domain.go +++ b/cmd/compute_api/api/domain.go @@ -3,6 +3,7 @@ package api import ( "context" "regexp" + "strconv" "time" "deevirt.fr/compute/cmd/compute_api/proto" @@ -16,11 +17,11 @@ type Domain struct { proto.UnimplementedDomainServer } -func (d *Domain) ListAll(ctx context.Context, in *proto.DomainListAllRequest) (*proto.DomainListAllResponse, error) { +func (d *Domain) List(ctx context.Context, in *proto.DomainListAllRequest) (*proto.DomainListAllResponse, error) { var domains = []*proto.DomainListResponse{} ctx_etcd, cancel := context.WithTimeout(context.Background(), 5*time.Second) - resp, _ := d.Etcd.Get(ctx_etcd, "/cluster/"+d.Config.ClusterID+"/domain", clientv3.WithPrefix()) + resp, _ := d.Etcd.Get(ctx_etcd, "/cluster/"+d.Config.ClusterID+"/domain", clientv3.WithPrefix(), clientv3.WithKeysOnly()) cancel() re := regexp.MustCompile(`domain/(?P[a-zA-Z1-9-]+)$`) @@ -32,14 +33,61 @@ func (d *Domain) ListAll(ctx context.Context, in *proto.DomainListAllRequest) (* matches := re.FindStringSubmatch(key) index := re.SubexpIndex("domainID") - domains = append(domains, &proto.DomainListResponse{ - DomainID: matches[index], + domain, _ := d.Get(context.Background(), &proto.DomainListRequest{ + DomainId: matches[index], }) - } + domains = append(domains, domain) + } } return &proto.DomainListAllResponse{ - All: domains, + Domains: domains, }, nil } + +func (d *Domain) Get(ctx context.Context, in *proto.DomainListRequest) (*proto.DomainListResponse, error) { + ctx_etcd, cancel := context.WithTimeout(context.Background(), 5*time.Second) + resp_config, _ := d.Etcd.Get(ctx_etcd, "/cluster/"+d.Config.ClusterID+"/domain/"+in.DomainId) + resp_state, _ := d.Etcd.Get(ctx_etcd, "/cluster/"+d.Config.ClusterID+"/domain/"+in.DomainId+"/state") + cancel() + + state, _ := strconv.ParseInt(string(resp_state.Kvs[0].Value), 10, 64) + + return &proto.DomainListResponse{ + DomainId: in.DomainId, + Config: string(resp_config.Kvs[0].Value), + State: state, + }, nil +} + +func (d *Domain) Create(ctx context.Context, in *proto.DomainCreateRequest) (*proto.DomainCreateResponse, error) { + ctx_etcd, cancel := context.WithTimeout(context.Background(), 5*time.Second) + resp_config, _ := d.Etcd.Get(ctx_etcd, "/cluster/"+d.Config.ClusterID) + cancel() + + println(string(resp_config.Kvs[0].Value)) + + /*if d.Config.LibvirtTLS { + libvirt_uri := "qemu+tls://"++"/system" + } + conn, err := libvirt.NewConnect("qemu:///system") + if err != nil { + log.Println("Connexion Error") + } + defer conn.Close()*/ + + /* + + async def Create(self, request, context): + yield domain_pb2.DomainCreateResponse(progress=40) + async with Libvirt() as libvirt: + if await libvirt.define(request.config.decode()): + yield domain_pb2.DomainCreateResponse(progress=100) + else: + context.set_code(grpc.StatusCode.ALREADY_EXISTS) + + */ + + return &proto.DomainCreateResponse{}, nil +} diff --git a/cmd/compute_api/proto/domain.pb.go b/cmd/compute_api/proto/domain.pb.go index edc3851..806319f 100644 --- a/cmd/compute_api/proto/domain.pb.go +++ b/cmd/compute_api/proto/domain.pb.go @@ -127,7 +127,7 @@ type DomainListAllResponse struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - All []*DomainListResponse `protobuf:"bytes,1,rep,name=all,proto3" json:"all,omitempty"` + Domains []*DomainListResponse `protobuf:"bytes,1,rep,name=domains,proto3" json:"domains,omitempty"` } func (x *DomainListAllResponse) Reset() { @@ -162,25 +162,74 @@ func (*DomainListAllResponse) Descriptor() ([]byte, []int) { return file_proto_domain_proto_rawDescGZIP(), []int{1} } -func (x *DomainListAllResponse) GetAll() []*DomainListResponse { +func (x *DomainListAllResponse) GetDomains() []*DomainListResponse { if x != nil { - return x.All + return x.Domains } return nil } +type DomainListRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + DomainId string `protobuf:"bytes,1,opt,name=domain_id,json=domainId,proto3" json:"domain_id,omitempty"` +} + +func (x *DomainListRequest) Reset() { + *x = DomainListRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_proto_domain_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *DomainListRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DomainListRequest) ProtoMessage() {} + +func (x *DomainListRequest) ProtoReflect() protoreflect.Message { + mi := &file_proto_domain_proto_msgTypes[2] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use DomainListRequest.ProtoReflect.Descriptor instead. +func (*DomainListRequest) Descriptor() ([]byte, []int) { + return file_proto_domain_proto_rawDescGZIP(), []int{2} +} + +func (x *DomainListRequest) GetDomainId() string { + if x != nil { + return x.DomainId + } + return "" +} + type DomainListResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - DomainID string `protobuf:"bytes,1,opt,name=domainID,json=domain_id,proto3" json:"domainID,omitempty"` + DomainId string `protobuf:"bytes,1,opt,name=domain_id,json=domainId,proto3" json:"domain_id,omitempty"` + Config string `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"` + State int64 `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"` } func (x *DomainListResponse) Reset() { *x = DomainListResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[2] + mi := &file_proto_domain_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193,7 +242,7 @@ func (x *DomainListResponse) String() string { func (*DomainListResponse) ProtoMessage() {} func (x *DomainListResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[2] + mi := &file_proto_domain_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206,28 +255,43 @@ func (x *DomainListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainListResponse.ProtoReflect.Descriptor instead. func (*DomainListResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{2} + return file_proto_domain_proto_rawDescGZIP(), []int{3} } -func (x *DomainListResponse) GetDomainID() string { +func (x *DomainListResponse) GetDomainId() string { if x != nil { - return x.DomainID + return x.DomainId } return "" } +func (x *DomainListResponse) GetConfig() string { + if x != nil { + return x.Config + } + return "" +} + +func (x *DomainListResponse) GetState() int64 { + if x != nil { + return x.State + } + return 0 +} + type DomainCreateRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Config []byte `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"` + NodeId string `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"` + Config string `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"` } func (x *DomainCreateRequest) Reset() { *x = DomainCreateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[3] + mi := &file_proto_domain_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -240,7 +304,7 @@ func (x *DomainCreateRequest) String() string { func (*DomainCreateRequest) ProtoMessage() {} func (x *DomainCreateRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[3] + mi := &file_proto_domain_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -253,14 +317,21 @@ func (x *DomainCreateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainCreateRequest.ProtoReflect.Descriptor instead. func (*DomainCreateRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{3} + return file_proto_domain_proto_rawDescGZIP(), []int{4} } -func (x *DomainCreateRequest) GetConfig() []byte { +func (x *DomainCreateRequest) GetNodeId() string { + if x != nil { + return x.NodeId + } + return "" +} + +func (x *DomainCreateRequest) GetConfig() string { if x != nil { return x.Config } - return nil + return "" } type DomainCreateResponse struct { @@ -274,7 +345,7 @@ type DomainCreateResponse struct { func (x *DomainCreateResponse) Reset() { *x = DomainCreateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[4] + mi := &file_proto_domain_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -287,7 +358,7 @@ func (x *DomainCreateResponse) String() string { func (*DomainCreateResponse) ProtoMessage() {} func (x *DomainCreateResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[4] + mi := &file_proto_domain_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -300,7 +371,7 @@ func (x *DomainCreateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainCreateResponse.ProtoReflect.Descriptor instead. func (*DomainCreateResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{4} + return file_proto_domain_proto_rawDescGZIP(), []int{5} } func (x *DomainCreateResponse) GetProgress() int64 { @@ -321,7 +392,7 @@ type DomainUpdateRequest struct { func (x *DomainUpdateRequest) Reset() { *x = DomainUpdateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[5] + mi := &file_proto_domain_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -334,7 +405,7 @@ func (x *DomainUpdateRequest) String() string { func (*DomainUpdateRequest) ProtoMessage() {} func (x *DomainUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[5] + mi := &file_proto_domain_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -347,7 +418,7 @@ func (x *DomainUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainUpdateRequest.ProtoReflect.Descriptor instead. func (*DomainUpdateRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{5} + return file_proto_domain_proto_rawDescGZIP(), []int{6} } func (x *DomainUpdateRequest) GetVmId() string { @@ -366,7 +437,7 @@ type DomainUpdateResponse struct { func (x *DomainUpdateResponse) Reset() { *x = DomainUpdateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[6] + mi := &file_proto_domain_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -379,7 +450,7 @@ func (x *DomainUpdateResponse) String() string { func (*DomainUpdateResponse) ProtoMessage() {} func (x *DomainUpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[6] + mi := &file_proto_domain_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -392,7 +463,7 @@ func (x *DomainUpdateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainUpdateResponse.ProtoReflect.Descriptor instead. func (*DomainUpdateResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{6} + return file_proto_domain_proto_rawDescGZIP(), []int{7} } type DomainDeleteRequest struct { @@ -406,7 +477,7 @@ type DomainDeleteRequest struct { func (x *DomainDeleteRequest) Reset() { *x = DomainDeleteRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[7] + mi := &file_proto_domain_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -419,7 +490,7 @@ func (x *DomainDeleteRequest) String() string { func (*DomainDeleteRequest) ProtoMessage() {} func (x *DomainDeleteRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[7] + mi := &file_proto_domain_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -432,7 +503,7 @@ func (x *DomainDeleteRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainDeleteRequest.ProtoReflect.Descriptor instead. func (*DomainDeleteRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{7} + return file_proto_domain_proto_rawDescGZIP(), []int{8} } func (x *DomainDeleteRequest) GetVmId() string { @@ -451,7 +522,7 @@ type DomainDeleteResponse struct { func (x *DomainDeleteResponse) Reset() { *x = DomainDeleteResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[8] + mi := &file_proto_domain_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -464,7 +535,7 @@ func (x *DomainDeleteResponse) String() string { func (*DomainDeleteResponse) ProtoMessage() {} func (x *DomainDeleteResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[8] + mi := &file_proto_domain_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -477,7 +548,7 @@ func (x *DomainDeleteResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainDeleteResponse.ProtoReflect.Descriptor instead. func (*DomainDeleteResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{8} + return file_proto_domain_proto_rawDescGZIP(), []int{9} } type DomainPowerRequest struct { @@ -492,7 +563,7 @@ type DomainPowerRequest struct { func (x *DomainPowerRequest) Reset() { *x = DomainPowerRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[9] + mi := &file_proto_domain_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -505,7 +576,7 @@ func (x *DomainPowerRequest) String() string { func (*DomainPowerRequest) ProtoMessage() {} func (x *DomainPowerRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[9] + mi := &file_proto_domain_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -518,7 +589,7 @@ func (x *DomainPowerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainPowerRequest.ProtoReflect.Descriptor instead. func (*DomainPowerRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{9} + return file_proto_domain_proto_rawDescGZIP(), []int{10} } func (x *DomainPowerRequest) GetVmId() []byte { @@ -544,7 +615,7 @@ type DomainPowerResponse struct { func (x *DomainPowerResponse) Reset() { *x = DomainPowerResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[10] + mi := &file_proto_domain_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -557,7 +628,7 @@ func (x *DomainPowerResponse) String() string { func (*DomainPowerResponse) ProtoMessage() {} func (x *DomainPowerResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[10] + mi := &file_proto_domain_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -570,7 +641,7 @@ func (x *DomainPowerResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainPowerResponse.ProtoReflect.Descriptor instead. func (*DomainPowerResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{10} + return file_proto_domain_proto_rawDescGZIP(), []int{11} } type DomainDevicesGraphicsConsoleRequest struct { @@ -584,7 +655,7 @@ type DomainDevicesGraphicsConsoleRequest struct { func (x *DomainDevicesGraphicsConsoleRequest) Reset() { *x = DomainDevicesGraphicsConsoleRequest{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[11] + mi := &file_proto_domain_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -597,7 +668,7 @@ func (x *DomainDevicesGraphicsConsoleRequest) String() string { func (*DomainDevicesGraphicsConsoleRequest) ProtoMessage() {} func (x *DomainDevicesGraphicsConsoleRequest) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[11] + mi := &file_proto_domain_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -610,7 +681,7 @@ func (x *DomainDevicesGraphicsConsoleRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use DomainDevicesGraphicsConsoleRequest.ProtoReflect.Descriptor instead. func (*DomainDevicesGraphicsConsoleRequest) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{11} + return file_proto_domain_proto_rawDescGZIP(), []int{12} } func (x *DomainDevicesGraphicsConsoleRequest) GetVmId() []byte { @@ -631,7 +702,7 @@ type DomainDevicesGraphicsConsoleResponse struct { func (x *DomainDevicesGraphicsConsoleResponse) Reset() { *x = DomainDevicesGraphicsConsoleResponse{} if protoimpl.UnsafeEnabled { - mi := &file_proto_domain_proto_msgTypes[12] + mi := &file_proto_domain_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -644,7 +715,7 @@ func (x *DomainDevicesGraphicsConsoleResponse) String() string { func (*DomainDevicesGraphicsConsoleResponse) ProtoMessage() {} func (x *DomainDevicesGraphicsConsoleResponse) ProtoReflect() protoreflect.Message { - mi := &file_proto_domain_proto_msgTypes[12] + mi := &file_proto_domain_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -657,7 +728,7 @@ func (x *DomainDevicesGraphicsConsoleResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use DomainDevicesGraphicsConsoleResponse.ProtoReflect.Descriptor instead. func (*DomainDevicesGraphicsConsoleResponse) Descriptor() ([]byte, []int) { - return file_proto_domain_proto_rawDescGZIP(), []int{12} + return file_proto_domain_proto_rawDescGZIP(), []int{13} } func (x *DomainDevicesGraphicsConsoleResponse) GetUri() string { @@ -673,83 +744,94 @@ var file_proto_domain_proto_rawDesc = []byte{ 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x22, 0x45, 0x0a, 0x15, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, - 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2c, 0x0a, - 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x64, 0x6f, 0x6d, + 0x75, 0x65, 0x73, 0x74, 0x22, 0x4d, 0x0a, 0x15, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, + 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x34, 0x0a, + 0x07, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, + 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, + 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x07, 0x64, 0x6f, 0x6d, 0x61, + 0x69, 0x6e, 0x73, 0x22, 0x30, 0x0a, 0x11, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, + 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x6f, 0x6d, 0x61, + 0x69, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x6f, 0x6d, + 0x61, 0x69, 0x6e, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x12, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, + 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, + 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, + 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, + 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x46, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, + 0x07, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, + 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x32, + 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, + 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, + 0x73, 0x73, 0x22, 0x2a, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, + 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, + 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x76, 0x6d, 0x49, 0x64, 0x22, 0x16, + 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, + 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, + 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x76, 0x6d, + 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, + 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0x0a, 0x12, 0x44, 0x6f, + 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, + 0x04, 0x76, 0x6d, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x13, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, + 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x22, 0x15, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, + 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x23, 0x44, 0x6f, 0x6d, + 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, + 0x63, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, + 0x04, 0x76, 0x6d, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x24, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, + 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, + 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, + 0x03, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x69, 0x2a, + 0x70, 0x0a, 0x0b, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x12, 0x0d, + 0x0a, 0x09, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, + 0x05, 0x53, 0x54, 0x41, 0x52, 0x54, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x52, 0x45, 0x42, 0x4f, + 0x4f, 0x54, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x48, 0x55, 0x54, 0x44, 0x4f, 0x57, 0x4e, + 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x41, 0x55, 0x53, 0x45, 0x10, 0x04, 0x12, 0x0a, 0x0a, + 0x06, 0x52, 0x45, 0x53, 0x55, 0x4d, 0x45, 0x10, 0x05, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x45, 0x53, + 0x45, 0x54, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x45, 0x53, 0x54, 0x52, 0x4f, 0x59, 0x10, + 0x07, 0x32, 0xa8, 0x03, 0x0a, 0x06, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x45, 0x0a, 0x04, + 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, + 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, + 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x03, 0x47, 0x65, 0x74, 0x12, 0x19, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x22, 0x31, 0x0a, 0x12, 0x44, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x12, 0x1b, 0x0a, 0x08, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x69, 0x64, 0x22, 0x2d, - 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x32, 0x0a, - 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, - 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, - 0x73, 0x22, 0x2a, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, - 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x76, 0x6d, 0x49, 0x64, 0x22, 0x16, 0x0a, - 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, - 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, - 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x76, 0x6d, 0x49, - 0x64, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, 0x74, - 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 0x0a, 0x12, 0x44, 0x6f, 0x6d, - 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, - 0x76, 0x6d, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0e, 0x32, 0x13, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, - 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x22, 0x15, 0x0a, 0x13, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x23, 0x44, 0x6f, 0x6d, 0x61, - 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, - 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x13, 0x0a, 0x05, 0x76, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, - 0x76, 0x6d, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x24, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, 0x6e, - 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, - 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x69, 0x2a, 0x70, - 0x0a, 0x0b, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x12, 0x0d, 0x0a, - 0x09, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, - 0x53, 0x54, 0x41, 0x52, 0x54, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x52, 0x45, 0x42, 0x4f, 0x4f, - 0x54, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x48, 0x55, 0x54, 0x44, 0x4f, 0x57, 0x4e, 0x10, - 0x03, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x41, 0x55, 0x53, 0x45, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, - 0x52, 0x45, 0x53, 0x55, 0x4d, 0x45, 0x10, 0x05, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x45, 0x53, 0x45, - 0x54, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x45, 0x53, 0x54, 0x52, 0x4f, 0x59, 0x10, 0x07, - 0x32, 0xed, 0x02, 0x0a, 0x06, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x48, 0x0a, 0x07, 0x4c, - 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x12, 0x1c, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, - 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, - 0x6d, 0x61, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, - 0x1b, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x64, - 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x45, - 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, - 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, - 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x06, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, - 0x1b, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, - 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x64, - 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, - 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x05, - 0x50, 0x6f, 0x77, 0x65, 0x72, 0x12, 0x1a, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, - 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x1b, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, - 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, - 0x32, 0x7f, 0x0a, 0x15, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x12, 0x66, 0x0a, 0x07, 0x43, 0x6f, 0x6e, - 0x73, 0x6f, 0x6c, 0x65, 0x12, 0x2b, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, - 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, - 0x69, 0x63, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x2c, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, - 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, - 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x00, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x2e, + 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x64, 0x6f, 0x6d, + 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x06, 0x55, 0x70, + 0x64, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, + 0x6d, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x1c, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, + 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, + 0x00, 0x12, 0x45, 0x0a, 0x06, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x1b, 0x2e, 0x64, 0x6f, + 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, 0x74, + 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, + 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x05, 0x50, 0x6f, 0x77, 0x65, + 0x72, 0x12, 0x1a, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, + 0x6e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, + 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x50, 0x6f, 0x77, + 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x32, 0x7f, 0x0a, 0x15, + 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, + 0x70, 0x68, 0x69, 0x63, 0x73, 0x12, 0x66, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, + 0x12, 0x2b, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, + 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, + 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, + 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x44, 0x65, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x43, 0x6f, 0x6e, 0x73, + 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x09, 0x5a, + 0x07, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -765,40 +847,43 @@ func file_proto_domain_proto_rawDescGZIP() []byte { } var file_proto_domain_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_proto_domain_proto_msgTypes = make([]protoimpl.MessageInfo, 13) +var file_proto_domain_proto_msgTypes = make([]protoimpl.MessageInfo, 14) var file_proto_domain_proto_goTypes = []interface{}{ (DomainPower)(0), // 0: domain.DomainPower (*DomainListAllRequest)(nil), // 1: domain.DomainListAllRequest (*DomainListAllResponse)(nil), // 2: domain.DomainListAllResponse - (*DomainListResponse)(nil), // 3: domain.DomainListResponse - (*DomainCreateRequest)(nil), // 4: domain.DomainCreateRequest - (*DomainCreateResponse)(nil), // 5: domain.DomainCreateResponse - (*DomainUpdateRequest)(nil), // 6: domain.DomainUpdateRequest - (*DomainUpdateResponse)(nil), // 7: domain.DomainUpdateResponse - (*DomainDeleteRequest)(nil), // 8: domain.DomainDeleteRequest - (*DomainDeleteResponse)(nil), // 9: domain.DomainDeleteResponse - (*DomainPowerRequest)(nil), // 10: domain.DomainPowerRequest - (*DomainPowerResponse)(nil), // 11: domain.DomainPowerResponse - (*DomainDevicesGraphicsConsoleRequest)(nil), // 12: domain.DomainDevicesGraphicsConsoleRequest - (*DomainDevicesGraphicsConsoleResponse)(nil), // 13: domain.DomainDevicesGraphicsConsoleResponse + (*DomainListRequest)(nil), // 3: domain.DomainListRequest + (*DomainListResponse)(nil), // 4: domain.DomainListResponse + (*DomainCreateRequest)(nil), // 5: domain.DomainCreateRequest + (*DomainCreateResponse)(nil), // 6: domain.DomainCreateResponse + (*DomainUpdateRequest)(nil), // 7: domain.DomainUpdateRequest + (*DomainUpdateResponse)(nil), // 8: domain.DomainUpdateResponse + (*DomainDeleteRequest)(nil), // 9: domain.DomainDeleteRequest + (*DomainDeleteResponse)(nil), // 10: domain.DomainDeleteResponse + (*DomainPowerRequest)(nil), // 11: domain.DomainPowerRequest + (*DomainPowerResponse)(nil), // 12: domain.DomainPowerResponse + (*DomainDevicesGraphicsConsoleRequest)(nil), // 13: domain.DomainDevicesGraphicsConsoleRequest + (*DomainDevicesGraphicsConsoleResponse)(nil), // 14: domain.DomainDevicesGraphicsConsoleResponse } var file_proto_domain_proto_depIdxs = []int32{ - 3, // 0: domain.DomainListAllResponse.all:type_name -> domain.DomainListResponse + 4, // 0: domain.DomainListAllResponse.domains:type_name -> domain.DomainListResponse 0, // 1: domain.DomainPowerRequest.action:type_name -> domain.DomainPower - 1, // 2: domain.Domain.ListAll:input_type -> domain.DomainListAllRequest - 4, // 3: domain.Domain.Create:input_type -> domain.DomainCreateRequest - 6, // 4: domain.Domain.Update:input_type -> domain.DomainUpdateRequest - 8, // 5: domain.Domain.Delete:input_type -> domain.DomainDeleteRequest - 10, // 6: domain.Domain.Power:input_type -> domain.DomainPowerRequest - 12, // 7: domain.DomainDevicesGraphics.Console:input_type -> domain.DomainDevicesGraphicsConsoleRequest - 2, // 8: domain.Domain.ListAll:output_type -> domain.DomainListAllResponse - 5, // 9: domain.Domain.Create:output_type -> domain.DomainCreateResponse - 7, // 10: domain.Domain.Update:output_type -> domain.DomainUpdateResponse - 9, // 11: domain.Domain.Delete:output_type -> domain.DomainDeleteResponse - 11, // 12: domain.Domain.Power:output_type -> domain.DomainPowerResponse - 13, // 13: domain.DomainDevicesGraphics.Console:output_type -> domain.DomainDevicesGraphicsConsoleResponse - 8, // [8:14] is the sub-list for method output_type - 2, // [2:8] is the sub-list for method input_type + 1, // 2: domain.Domain.List:input_type -> domain.DomainListAllRequest + 3, // 3: domain.Domain.Get:input_type -> domain.DomainListRequest + 5, // 4: domain.Domain.Create:input_type -> domain.DomainCreateRequest + 7, // 5: domain.Domain.Update:input_type -> domain.DomainUpdateRequest + 9, // 6: domain.Domain.Delete:input_type -> domain.DomainDeleteRequest + 11, // 7: domain.Domain.Power:input_type -> domain.DomainPowerRequest + 13, // 8: domain.DomainDevicesGraphics.Console:input_type -> domain.DomainDevicesGraphicsConsoleRequest + 2, // 9: domain.Domain.List:output_type -> domain.DomainListAllResponse + 4, // 10: domain.Domain.Get:output_type -> domain.DomainListResponse + 6, // 11: domain.Domain.Create:output_type -> domain.DomainCreateResponse + 8, // 12: domain.Domain.Update:output_type -> domain.DomainUpdateResponse + 10, // 13: domain.Domain.Delete:output_type -> domain.DomainDeleteResponse + 12, // 14: domain.Domain.Power:output_type -> domain.DomainPowerResponse + 14, // 15: domain.DomainDevicesGraphics.Console:output_type -> domain.DomainDevicesGraphicsConsoleResponse + 9, // [9:16] is the sub-list for method output_type + 2, // [2:9] is the sub-list for method input_type 2, // [2:2] is the sub-list for extension type_name 2, // [2:2] is the sub-list for extension extendee 0, // [0:2] is the sub-list for field type_name @@ -835,7 +920,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainListResponse); i { + switch v := v.(*DomainListRequest); i { case 0: return &v.state case 1: @@ -847,7 +932,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainCreateRequest); i { + switch v := v.(*DomainListResponse); i { case 0: return &v.state case 1: @@ -859,7 +944,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainCreateResponse); i { + switch v := v.(*DomainCreateRequest); i { case 0: return &v.state case 1: @@ -871,7 +956,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainUpdateRequest); i { + switch v := v.(*DomainCreateResponse); i { case 0: return &v.state case 1: @@ -883,7 +968,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainUpdateResponse); i { + switch v := v.(*DomainUpdateRequest); i { case 0: return &v.state case 1: @@ -895,7 +980,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainDeleteRequest); i { + switch v := v.(*DomainUpdateResponse); i { case 0: return &v.state case 1: @@ -907,7 +992,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainDeleteResponse); i { + switch v := v.(*DomainDeleteRequest); i { case 0: return &v.state case 1: @@ -919,7 +1004,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainPowerRequest); i { + switch v := v.(*DomainDeleteResponse); i { case 0: return &v.state case 1: @@ -931,7 +1016,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainPowerResponse); i { + switch v := v.(*DomainPowerRequest); i { case 0: return &v.state case 1: @@ -943,7 +1028,7 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DomainDevicesGraphicsConsoleRequest); i { + switch v := v.(*DomainPowerResponse); i { case 0: return &v.state case 1: @@ -955,6 +1040,18 @@ func file_proto_domain_proto_init() { } } file_proto_domain_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*DomainDevicesGraphicsConsoleRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_proto_domain_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DomainDevicesGraphicsConsoleResponse); i { case 0: return &v.state @@ -973,7 +1070,7 @@ func file_proto_domain_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_proto_domain_proto_rawDesc, NumEnums: 1, - NumMessages: 13, + NumMessages: 14, NumExtensions: 0, NumServices: 2, }, diff --git a/cmd/compute_api/proto/domain.proto b/cmd/compute_api/proto/domain.proto index d37713a..1fd4178 100644 --- a/cmd/compute_api/proto/domain.proto +++ b/cmd/compute_api/proto/domain.proto @@ -5,8 +5,9 @@ package domain; // The greeting service definition. service Domain { - rpc ListAll (DomainListAllRequest) returns (DomainListAllResponse) {} - rpc Create (DomainCreateRequest) returns (stream DomainCreateResponse) {} + rpc List (DomainListAllRequest) returns (DomainListAllResponse) {} + rpc Get (DomainListRequest) returns (DomainListResponse) {} + rpc Create (DomainCreateRequest) returns (DomainCreateResponse) {} rpc Update (DomainUpdateRequest) returns (DomainUpdateResponse) {} rpc Delete (DomainDeleteRequest) returns (DomainDeleteResponse) {} @@ -17,24 +18,33 @@ service Domain { message DomainListAllRequest {} message DomainListAllResponse { - repeated DomainListResponse all = 1; + repeated DomainListResponse domains = 1; +} + +message DomainListRequest { + string domain_id = 1; } message DomainListResponse { - string domainID = 1 [json_name="domain_id"]; + string domain_id = 1; + string config = 2; + int64 state = 3; +} + +message DomainCreateRequest { + string node_id = 1; + string config = 2; +} + +message DomainCreateResponse { + int64 progress = 1; } service DomainDevicesGraphics { rpc Console (DomainDevicesGraphicsConsoleRequest) returns (DomainDevicesGraphicsConsoleResponse) {} } -message DomainCreateRequest { - bytes config = 2; -} -message DomainCreateResponse { - int64 progress = 1; -} message DomainUpdateRequest { string vm_id = 1; diff --git a/cmd/compute_api/proto/domain_grpc.pb.go b/cmd/compute_api/proto/domain_grpc.pb.go index a80b459..488f471 100644 --- a/cmd/compute_api/proto/domain_grpc.pb.go +++ b/cmd/compute_api/proto/domain_grpc.pb.go @@ -19,11 +19,12 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - Domain_ListAll_FullMethodName = "/domain.Domain/ListAll" - Domain_Create_FullMethodName = "/domain.Domain/Create" - Domain_Update_FullMethodName = "/domain.Domain/Update" - Domain_Delete_FullMethodName = "/domain.Domain/Delete" - Domain_Power_FullMethodName = "/domain.Domain/Power" + Domain_List_FullMethodName = "/domain.Domain/List" + Domain_Get_FullMethodName = "/domain.Domain/Get" + Domain_Create_FullMethodName = "/domain.Domain/Create" + Domain_Update_FullMethodName = "/domain.Domain/Update" + Domain_Delete_FullMethodName = "/domain.Domain/Delete" + Domain_Power_FullMethodName = "/domain.Domain/Power" ) // DomainClient is the client API for Domain service. @@ -32,8 +33,9 @@ const ( // // The greeting service definition. type DomainClient interface { - ListAll(ctx context.Context, in *DomainListAllRequest, opts ...grpc.CallOption) (*DomainListAllResponse, error) - Create(ctx context.Context, in *DomainCreateRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[DomainCreateResponse], error) + List(ctx context.Context, in *DomainListAllRequest, opts ...grpc.CallOption) (*DomainListAllResponse, error) + Get(ctx context.Context, in *DomainListRequest, opts ...grpc.CallOption) (*DomainListResponse, error) + Create(ctx context.Context, in *DomainCreateRequest, opts ...grpc.CallOption) (*DomainCreateResponse, error) Update(ctx context.Context, in *DomainUpdateRequest, opts ...grpc.CallOption) (*DomainUpdateResponse, error) Delete(ctx context.Context, in *DomainDeleteRequest, opts ...grpc.CallOption) (*DomainDeleteResponse, error) Power(ctx context.Context, in *DomainPowerRequest, opts ...grpc.CallOption) (*DomainPowerResponse, error) @@ -47,34 +49,35 @@ func NewDomainClient(cc grpc.ClientConnInterface) DomainClient { return &domainClient{cc} } -func (c *domainClient) ListAll(ctx context.Context, in *DomainListAllRequest, opts ...grpc.CallOption) (*DomainListAllResponse, error) { +func (c *domainClient) List(ctx context.Context, in *DomainListAllRequest, opts ...grpc.CallOption) (*DomainListAllResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(DomainListAllResponse) - err := c.cc.Invoke(ctx, Domain_ListAll_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, Domain_List_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } -func (c *domainClient) Create(ctx context.Context, in *DomainCreateRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[DomainCreateResponse], error) { +func (c *domainClient) Get(ctx context.Context, in *DomainListRequest, opts ...grpc.CallOption) (*DomainListResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) - stream, err := c.cc.NewStream(ctx, &Domain_ServiceDesc.Streams[0], Domain_Create_FullMethodName, cOpts...) + out := new(DomainListResponse) + err := c.cc.Invoke(ctx, Domain_Get_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } - x := &grpc.GenericClientStream[DomainCreateRequest, DomainCreateResponse]{ClientStream: stream} - if err := x.ClientStream.SendMsg(in); err != nil { - return nil, err - } - if err := x.ClientStream.CloseSend(); err != nil { - return nil, err - } - return x, nil + return out, nil } -// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. -type Domain_CreateClient = grpc.ServerStreamingClient[DomainCreateResponse] +func (c *domainClient) Create(ctx context.Context, in *DomainCreateRequest, opts ...grpc.CallOption) (*DomainCreateResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(DomainCreateResponse) + err := c.cc.Invoke(ctx, Domain_Create_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} func (c *domainClient) Update(ctx context.Context, in *DomainUpdateRequest, opts ...grpc.CallOption) (*DomainUpdateResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) @@ -112,8 +115,9 @@ func (c *domainClient) Power(ctx context.Context, in *DomainPowerRequest, opts . // // The greeting service definition. type DomainServer interface { - ListAll(context.Context, *DomainListAllRequest) (*DomainListAllResponse, error) - Create(*DomainCreateRequest, grpc.ServerStreamingServer[DomainCreateResponse]) error + List(context.Context, *DomainListAllRequest) (*DomainListAllResponse, error) + Get(context.Context, *DomainListRequest) (*DomainListResponse, error) + Create(context.Context, *DomainCreateRequest) (*DomainCreateResponse, error) Update(context.Context, *DomainUpdateRequest) (*DomainUpdateResponse, error) Delete(context.Context, *DomainDeleteRequest) (*DomainDeleteResponse, error) Power(context.Context, *DomainPowerRequest) (*DomainPowerResponse, error) @@ -127,11 +131,14 @@ type DomainServer interface { // pointer dereference when methods are called. type UnimplementedDomainServer struct{} -func (UnimplementedDomainServer) ListAll(context.Context, *DomainListAllRequest) (*DomainListAllResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method ListAll not implemented") +func (UnimplementedDomainServer) List(context.Context, *DomainListAllRequest) (*DomainListAllResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method List not implemented") } -func (UnimplementedDomainServer) Create(*DomainCreateRequest, grpc.ServerStreamingServer[DomainCreateResponse]) error { - return status.Errorf(codes.Unimplemented, "method Create not implemented") +func (UnimplementedDomainServer) Get(context.Context, *DomainListRequest) (*DomainListResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") +} +func (UnimplementedDomainServer) Create(context.Context, *DomainCreateRequest) (*DomainCreateResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Create not implemented") } func (UnimplementedDomainServer) Update(context.Context, *DomainUpdateRequest) (*DomainUpdateResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Update not implemented") @@ -163,34 +170,59 @@ func RegisterDomainServer(s grpc.ServiceRegistrar, srv DomainServer) { s.RegisterService(&Domain_ServiceDesc, srv) } -func _Domain_ListAll_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { +func _Domain_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DomainListAllRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(DomainServer).ListAll(ctx, in) + return srv.(DomainServer).List(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: Domain_ListAll_FullMethodName, + FullMethod: Domain_List_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DomainServer).ListAll(ctx, req.(*DomainListAllRequest)) + return srv.(DomainServer).List(ctx, req.(*DomainListAllRequest)) } return interceptor(ctx, in, info, handler) } -func _Domain_Create_Handler(srv interface{}, stream grpc.ServerStream) error { - m := new(DomainCreateRequest) - if err := stream.RecvMsg(m); err != nil { - return err +func _Domain_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DomainListRequest) + if err := dec(in); err != nil { + return nil, err } - return srv.(DomainServer).Create(m, &grpc.GenericServerStream[DomainCreateRequest, DomainCreateResponse]{ServerStream: stream}) + if interceptor == nil { + return srv.(DomainServer).Get(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Domain_Get_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(DomainServer).Get(ctx, req.(*DomainListRequest)) + } + return interceptor(ctx, in, info, handler) } -// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. -type Domain_CreateServer = grpc.ServerStreamingServer[DomainCreateResponse] +func _Domain_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DomainCreateRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(DomainServer).Create(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Domain_Create_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(DomainServer).Create(ctx, req.(*DomainCreateRequest)) + } + return interceptor(ctx, in, info, handler) +} func _Domain_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DomainUpdateRequest) @@ -254,8 +286,16 @@ var Domain_ServiceDesc = grpc.ServiceDesc{ HandlerType: (*DomainServer)(nil), Methods: []grpc.MethodDesc{ { - MethodName: "ListAll", - Handler: _Domain_ListAll_Handler, + MethodName: "List", + Handler: _Domain_List_Handler, + }, + { + MethodName: "Get", + Handler: _Domain_Get_Handler, + }, + { + MethodName: "Create", + Handler: _Domain_Create_Handler, }, { MethodName: "Update", @@ -270,13 +310,7 @@ var Domain_ServiceDesc = grpc.ServiceDesc{ Handler: _Domain_Power_Handler, }, }, - Streams: []grpc.StreamDesc{ - { - StreamName: "Create", - Handler: _Domain_Create_Handler, - ServerStreams: true, - }, - }, + Streams: []grpc.StreamDesc{}, Metadata: "proto/domain.proto", } diff --git a/cmd/compute_qemu/metrics/compute.go b/cmd/compute_qemu/metrics/compute.go index 8d99dff..adf79a2 100644 --- a/cmd/compute_qemu/metrics/compute.go +++ b/cmd/compute_qemu/metrics/compute.go @@ -1,9 +1,8 @@ package metrics import ( - "log" + "strconv" - "deevirt.fr/compute/pkg/config" "github.com/prometheus/client_golang/prometheus" "libvirt.org/go/libvirt" ) @@ -13,22 +12,51 @@ var ( libvirtNodeCPUUsage = prometheus.NewDesc( prometheus.BuildFQName("libvirt", "node", "cpu_time_seconds_total"), "CPU usage of node", - []string{"cluster_id", "node_id", "node"}, + []string{"hostname"}, + nil) + + libvirtNodeCPUTotal = prometheus.NewDesc( + prometheus.BuildFQName("libvirt", "node", "cpu_threads"), + "CPU usage of node", + []string{"hostname"}, nil) libvirtNodeMemoryUsageBytes = prometheus.NewDesc( prometheus.BuildFQName("libvirt", "node", "memory_usage_bytes"), "Memory usage of the node, in bytes.", - []string{"cluster_id", "node_id", "node"}, + []string{"hostname", "total"}, + nil) + + libvirtNodeMemoryTotalBytes = prometheus.NewDesc( + prometheus.BuildFQName("libvirt", "node", "memory_total_bytes"), + "Memory total of the node, in bytes.", + []string{"hostname"}, nil) ) -func CollectNode(conn *libvirt.Connect, ch chan<- prometheus.Metric, hostname string) error { - config, err := config.NewConfig() +/*type AvgStat struct { + Load1 float64 + Load5 float64 + Load15 float64 +} + +func sysinfoAvgWithContext() (*AvgStat, error) { + var info syscall.Sysinfo_t + err := syscall.Sysinfo(&info) if err != nil { - log.Fatalln(err) + return nil, err } + const si_load_shift = 16 + return &AvgStat{ + Load1: float64(info.Loads[0]) / float64(1<