level1.py 6.06 KB
Newer Older
Wei Shoulin's avatar
c3    
Wei Shoulin committed
1
import grpc
Wei Shoulin's avatar
Wei Shoulin committed
2
import datetime
Wei Shoulin's avatar
c3    
Wei Shoulin committed
3
4

from csst_dfs_commons.models import Result
Wei Shoulin's avatar
Wei Shoulin committed
5
6
7
from csst_dfs_commons.models.common import from_proto_model_list
from csst_dfs_commons.models.msc import Level1Record

Wei Shoulin's avatar
c3    
Wei Shoulin committed
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from csst_dfs_proto.msc.level1 import level1_pb2, level1_pb2_grpc

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

class Level1DataApi(object):
    """
    Level1 Data Operation Class
    """    
    def __init__(self):
        self.stub = level1_pb2_grpc.Level1SrvStub(ServiceProxy().channel())

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

        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
24
            level0_id: [str]
Wei Shoulin's avatar
c3    
Wei Shoulin committed
25
26
27
28
29
30
31
32
33
34
35
36
            data_type: [str]
            obs_type: [str]
            create_time : (start, end),
            qc1_status : [int],
            prc_status : [int],
            filename: [str]
            limit: limits returns the number of records,default 0:no-limit

        return: csst_dfs_common.models.Result
        '''
        try:
            resp, _ =  self.stub.Find.with_call(level1_pb2.FindLevel1Req(
Wei Shoulin's avatar
Wei Shoulin committed
37
                level0_id = get_parameter(kwargs, "level0_id"),
Wei Shoulin's avatar
c3    
Wei Shoulin committed
38
39
40
41
42
43
44
45
46
47
48
                data_type = get_parameter(kwargs, "data_type"),
                create_time_start = get_parameter(kwargs, "create_time", [None, None])[0],
                create_time_end = get_parameter(kwargs, "create_time", [None, None])[1],
                qc1_status = get_parameter(kwargs, "qc1_status"),
                prc_status = get_parameter(kwargs, "prc_status"),
                filename = get_parameter(kwargs, "filename"),
                limit = get_parameter(kwargs, "limit", 0),
                other_conditions = {"test":"cnlab.test"}
            ),metadata = get_auth_headers())

            if resp.success:
Wei Shoulin's avatar
Wei Shoulin committed
49
                return Result.ok_data(data=from_proto_model_list(Level1Record, resp.records)).append("totalCount", resp.totalCount)
Wei Shoulin's avatar
c3    
Wei Shoulin committed
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
            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 get(self, **kwargs):
        '''  fetch a record from database

        parameter kwargs:
            id : [int] 

        return csst_dfs_common.models.Result
        '''
        try:
            fits_id = get_parameter(kwargs, "id")
            resp, _ =  self.stub.Get.with_call(level1_pb2.GetLevel1Req(
                id = fits_id
            ),metadata = get_auth_headers())

Wei Shoulin's avatar
Wei Shoulin committed
70
            if resp.record is None or resp.record.id == 0:
Wei Shoulin's avatar
c3    
Wei Shoulin committed
71
72
                return Result.error(message=f"id:{id} not found")  

Wei Shoulin's avatar
Wei Shoulin committed
73
            return Result.ok_data(data = Level1Record().from_proto_model(resp.record))
Wei Shoulin's avatar
c3    
Wei Shoulin committed
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
115
116
117
118
119
120
121
122
123
124
125
           
        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:
            id : [int],
            status : [int]

        return csst_dfs_common.models.Result
        '''
        fits_id = get_parameter(kwargs, "id")
        status = get_parameter(kwargs, "status")
        try:
            resp,_ = self.stub.UpdateProcStatus.with_call(
                level1_pb2.UpdateProcStatusReq(id=fits_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 update_qc1_status(self, **kwargs):
        ''' update the status of QC0
        
        parameter kwargs:
            id : [int],
            status : [int]
        '''        
        fits_id = get_parameter(kwargs, "id")
        status = get_parameter(kwargs, "status")
        try:
            resp,_ = self.stub.UpdateQc1Status.with_call(
                level1_pb2.UpdateQc1StatusReq(id=fits_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 level1 record into database
 
        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
126
            level0_id : [str]
Wei Shoulin's avatar
c3    
Wei Shoulin committed
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
            data_type : [str]
            cor_sci_id : [int]
            prc_params : [str]
            flat_id : [int]
            dark_id : [int]
            bias_id : [int]
            filename : [str]
            file_path : [str]            
            prc_status : [int]
            prc_time : [str]
            pipeline_id : [str]

        return csst_dfs_common.models.Result
        '''   

        rec = level1_pb2.Level1Record(
            id = 0,
Wei Shoulin's avatar
Wei Shoulin committed
144
            level0_id = get_parameter(kwargs, "level0_id"),
Wei Shoulin's avatar
c3    
Wei Shoulin committed
145
146
147
148
149
150
151
152
            data_type = get_parameter(kwargs, "data_type"),
            cor_sci_id = get_parameter(kwargs, "cor_sci_id"),
            prc_params = get_parameter(kwargs, "prc_params"),
            flat_id = get_parameter(kwargs, "flat_id"),
            dark_id = get_parameter(kwargs, "dark_id"),
            bias_id = get_parameter(kwargs, "bias_id"),
            filename = get_parameter(kwargs, "filename"),
            file_path = get_parameter(kwargs, "file_path"),
Wei Shoulin's avatar
Wei Shoulin committed
153
            prc_status = get_parameter(kwargs, "prc_status", -1),
Wei Shoulin's avatar
Wei Shoulin committed
154
            prc_time = get_parameter(kwargs, "prc_time", format_datetime(datetime.now())),
Wei Shoulin's avatar
c3    
Wei Shoulin committed
155
156
157
158
159
160
            pipeline_id = get_parameter(kwargs, "pipeline_id")
        )
        req = level1_pb2.WriteLevel1Req(record = rec)
        try:
            resp,_ = self.stub.Write.with_call(req,metadata = get_auth_headers())
            if resp.success:
Wei Shoulin's avatar
Wei Shoulin committed
161
                return Result.ok_data(data=Level1Record().from_proto_model(resp.record))
Wei Shoulin's avatar
c3    
Wei Shoulin committed
162
163
164
165
            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))