level0prc.py 3.71 KB
Newer Older
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
1
2
3
import grpc

from csst_dfs_commons.models import Result
Wei Shoulin's avatar
Wei Shoulin committed
4
from csst_dfs_commons.models.common import from_proto_model_list
Wei Shoulin's avatar
brick    
Wei Shoulin committed
5
from csst_dfs_commons.models.sls import Level0PrcRecord
Wei Shoulin's avatar
Wei Shoulin committed
6

Wei Shoulin's avatar
brick    
Wei Shoulin committed
7
from csst_dfs_proto.sls.level0prc import level0prc_pb2, level0prc_pb2_grpc
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
8
9
10
11
12
13
14
15
16
17
18
19

from ..common.service import ServiceProxy
from ..common.utils import *

class Level0PrcApi(object):
    def __init__(self):
        self.stub = level0prc_pb2_grpc.Level0PrcSrvStub(ServiceProxy().channel())

    def find(self, **kwargs):
        ''' retrieve level0 procedure records from database

        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
20
            level0_id: [str]
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
            pipeline_id: [str]
            prc_module: [str]
            prc_status : [int]

        return: csst_dfs_common.models.Result
        '''
        try:
            resp, _ =  self.stub.Find.with_call(level0prc_pb2.FindLevel0PrcReq(
                level0_id = get_parameter(kwargs, "level0_id"),
                pipeline_id = get_parameter(kwargs, "pipeline_id"),
                prc_module = get_parameter(kwargs, "prc_module"),
                prc_status = get_parameter(kwargs, "prc_status"),
                other_conditions = {"test":"cnlab.test"}
            ),metadata = get_auth_headers())

            if resp.success:
Wei Shoulin's avatar
Wei Shoulin committed
37
                return Result.ok_data(data = from_proto_model_list(Level0PrcRecord, resp.records)).append("totalCount", resp.totalCount)
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
38
            else:
Wei Shoulin's avatar
c3    
Wei Shoulin committed
39
                return Result.error(message = str(resp.error.detail))
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
40
41
42
43
44
45
46
47

        except grpc.RpcError as e:
            return Result.error(message="%s:%s" % (e.code().value, e.details))

    def update_proc_status(self, **kwargs):
        ''' update the status of reduction

        parameter kwargs:
Wei Shoulin's avatar
c3    
Wei Shoulin committed
48
            id : [int],
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
            status : [int]

        return csst_dfs_common.models.Result
        '''
        id = get_parameter(kwargs, "id")
        status = get_parameter(kwargs, "status")

        try:
            resp,_ = self.stub.UpdateProcStatus.with_call(
                level0prc_pb2.UpdateProcStatusReq(id=id, status=status),
                metadata = get_auth_headers()
            )
            if resp.success:
                return Result.ok_data()
            else:
                return Result.error(message = str(resp.error.detail))
        except grpc.RpcError as e:
            return Result.error(message="%s:%s" % (e.code().value, e.details))

    def write(self, **kwargs):
        ''' insert a level0 procedure record into database
 
        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
72
            level0_id : [str]
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
73
74
            pipeline_id : [str]
            prc_module : [str]
Wei Shoulin's avatar
Wei Shoulin committed
75
            params_file_path : [str]
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
76
77
            prc_status : [int]
            prc_time : [str]
Wei Shoulin's avatar
Wei Shoulin committed
78
            result_file_path : [str]
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
79
80
81
82
83
84
85
86
        return csst_dfs_common.models.Result
        '''   

        rec = level0prc_pb2.Level0PrcRecord(
            id = 0,
            level0_id = get_parameter(kwargs, "level0_id"),
            pipeline_id = get_parameter(kwargs, "pipeline_id"),
            prc_module = get_parameter(kwargs, "prc_module"),
Wei Shoulin's avatar
Wei Shoulin committed
87
            params_file_path = get_parameter(kwargs, "params_file_path"),
Wei Shoulin's avatar
Wei Shoulin committed
88
            prc_status = get_parameter(kwargs, "prc_status", -1),
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
89
            prc_time = get_parameter(kwargs, "prc_time"),
Wei Shoulin's avatar
Wei Shoulin committed
90
            result_file_path = get_parameter(kwargs, "result_file_path")
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
91
92
93
94
95
        )
        req = level0prc_pb2.WriteLevel0PrcReq(record = rec)
        try:
            resp,_ = self.stub.Write.with_call(req,metadata = get_auth_headers())
            if resp.success:
Wei Shoulin's avatar
Wei Shoulin committed
96
                return Result.ok_data(data = Level0PrcRecord().from_proto_model(resp.record))
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
97
98
99
100
101
102
103
            else:
                return Result.error(message = str(resp.error.detail))
        except grpc.RpcError as e:
            return Result.error(message="%s:%s" % (e.code().value, e.details))