1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use proto::vms::{
    vm_service_server, VirtualMachine, VmServiceCreateRequest,
    VmServiceCreateResponse, VmServiceFreeRequest, VmServiceFreeResponse,
    VmServiceStartRequest, VmServiceStartResponse, VmServiceStopRequest,
    VmServiceStopResponse,
};
use std::sync::Arc;
use tokio::sync::Mutex;
use tonic::{Request, Response, Status};

#[derive(Debug, Clone)]
pub struct VmService {
    _vms: Arc<Mutex<VirtualMachine>>,
}

#[tonic::async_trait]
impl vm_service_server::VmService for VmService {
    async fn create(
        &self,
        _request: Request<VmServiceCreateRequest>,
    ) -> Result<Response<VmServiceCreateResponse>, Status> {
        todo!()
    }

    async fn free(
        &self,
        _request: Request<VmServiceFreeRequest>,
    ) -> Result<Response<VmServiceFreeResponse>, Status> {
        todo!()
    }

    async fn start(
        &self,
        _request: Request<VmServiceStartRequest>,
    ) -> Result<Response<VmServiceStartResponse>, Status> {
        todo!()
    }

    async fn stop(
        &self,
        _request: Request<VmServiceStopRequest>,
    ) -> Result<Response<VmServiceStopResponse>, Status> {
        todo!()
    }
}