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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License.

use serde::{Deserialize, Serialize};
use std::convert::From;

pub enum ECallCommand {
    StartService,
    InitEnclave,
    FinalizeEnclave,
    RunTest,
    Raw,
    Unimplemented,
}

impl From<u32> for ECallCommand {
    #[inline]
    fn from(cmd: u32) -> ECallCommand {
        match cmd {
            0x0000_1000 => ECallCommand::StartService,
            0x0000_1001 => ECallCommand::InitEnclave,
            0x0000_1002 => ECallCommand::FinalizeEnclave,
            0x0000_1003 => ECallCommand::RunTest,
            0x0000_1004 => ECallCommand::Raw,
            _ => ECallCommand::Unimplemented,
        }
    }
}

impl From<ECallCommand> for u32 {
    #[inline]
    fn from(cmd: ECallCommand) -> u32 {
        match cmd {
            ECallCommand::StartService => 0x0000_1000,
            ECallCommand::InitEnclave => 0x0000_1001,
            ECallCommand::FinalizeEnclave => 0x0000_1002,
            ECallCommand::RunTest => 0x0000_1003,
            ECallCommand::Raw => 0x0000_1004,
            ECallCommand::Unimplemented => 0xffff_ffff,
        }
    }
}

#[derive(Serialize, Deserialize, Debug)]
pub struct StartServiceInput {
    pub config: teaclave_config::RuntimeConfig,
}

impl StartServiceInput {
    pub fn new(config: teaclave_config::RuntimeConfig) -> Self {
        Self { config }
    }
}

#[derive(Serialize, Deserialize, Debug)]
pub struct StartServiceOutput;

#[derive(Serialize, Deserialize, Debug)]
pub struct InitEnclaveInput;

#[derive(Serialize, Deserialize, Debug)]
pub struct InitEnclaveOutput;

#[derive(Serialize, Deserialize, Debug)]
pub struct FinalizeEnclaveInput;

#[derive(Serialize, Deserialize, Debug)]
pub struct FinalizeEnclaveOutput;

#[derive(Default, Serialize, Deserialize, Debug)]
pub struct RunTestInput {
    pub test_names: Vec<String>,
}

impl RunTestInput {
    pub fn new(test_names: Vec<String>) -> Self {
        Self { test_names }
    }
}

#[derive(Serialize, Deserialize, Debug)]
pub struct RunTestOutput;

#[derive(Default, Serialize, Deserialize, Debug)]
pub struct RawJsonInput {
    pub json: String,
}

impl RawJsonInput {
    pub fn new(json: impl ToString) -> Self {
        Self {
            json: json.to_string(),
        }
    }
}

#[derive(Default, Serialize, Deserialize, Debug)]
pub struct RawJsonOutput {
    pub json: String,
}