observation.py 5.31 KB
Newer Older
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
1
2
3
4
5
6
7
8
9
10
import grpc

from csst_dfs_commons.models import Result
from csst_dfs_proto.facility.observation import observation_pb2, observation_pb2_grpc

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

class ObservationApi(object):
Wei Shoulin's avatar
c3    
Wei Shoulin committed
11
12
13
    """
    Observation Operation Class
    """    
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
14
15
16
17
18
19
20
21
22
    def __init__(self):
        self.stub = observation_pb2_grpc.ObservationSrvStub(ServiceProxy().channel())

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

        parameter kwargs:
            module_id: [str]
            obs_type: [str]
Wei Shoulin's avatar
c3    
Wei Shoulin committed
23
            obs_time : (start, end),
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
24
25
26
27
28
29
30
31
32
33
            qc0_status : [int],
            prc_status : [int],
            limit: limits returns the number of records,default 0:no-limit

        return: csst_dfs_common.models.Result
        '''
        try:
            resp, _ =  self.stub.Find.with_call(observation_pb2.FindObservationReq(
                module_id = get_parameter(kwargs, "module_id"),
                obs_type = get_parameter(kwargs, "obs_type"),
Wei Shoulin's avatar
c3    
Wei Shoulin committed
34
35
                exp_time_start = get_parameter(kwargs, "obs_time", [None, None])[0],
                exp_time_end = get_parameter(kwargs, "obs_time", [None, None])[1],
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
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
115
116
117
118
119
                qc0_status = get_parameter(kwargs, "qc0_status"),
                prc_status = get_parameter(kwargs, "prc_status"),
                limit = get_parameter(kwargs, "limit", 0),
                other_conditions = {"test":"cnlab.test"}
            ),metadata = get_auth_headers())

            if resp.success:
                return Result.ok_data(data=resp.records).append("totalCount", resp.totalCount)
            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:
            obs_id : [int] 

        return csst_dfs_common.models.Result
        '''
        try:
            obs_id = get_parameter(kwargs, "obs_id")
            resp, _ =  self.stub.Get.with_call(observation_pb2.GetObservationReq(
                obs_id = obs_id
            ),metadata = get_auth_headers())

            if resp.observation is None:
                return Result.error(message=f"obs_id:{obs_id} not found")  

            return Result.ok_data(data=resp.observation)
           
        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:
            obs_id : [int],
            status : [int]

        return csst_dfs_common.models.Result
        '''
        obs_id = get_parameter(kwargs, "obs_id")
        status = get_parameter(kwargs, "status")
        try:
            resp,_ = self.stub.UpdateProcStatus.with_call(
                observation_pb2.UpdateProcStatusReq(obs_id=obs_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_qc0_status(self, **kwargs):
        ''' update the status of QC0
        
        parameter kwargs:
            obs_id : [int],
            status : [int]
        '''        
        obs_id = get_parameter(kwargs, "obs_id")
        status = get_parameter(kwargs, "status")
        try:
            resp,_ = self.stub.UpdateQc0Status.with_call(
                observation_pb2.UpdateQc0StatusReq(obs_id=obs_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 observational record into database
 
        parameter kwargs:
Wei Shoulin's avatar
c3    
Wei Shoulin committed
120
121
122
123
124
125
126
            obs_time = [str]
            exp_time = [int]
            module_id = [str]
            obs_type = [str]
            facility_status_id = [int]
            module_status_id = [int]
        return: csst_dfs_common.models.Result
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
127
        '''   
Wei Shoulin's avatar
c3    
Wei Shoulin committed
128
129
130
131
132
133
134
135
136
137

        rec = observation_pb2.Observation(
            obs_time = get_parameter(kwargs, "obs_time"),
            exp_time = get_parameter(kwargs, "exp_time"),
            module_id = get_parameter(kwargs, "module_id"),
            obs_type = get_parameter(kwargs, "obs_type"),
            facility_status_id = get_parameter(kwargs, "facility_status_id"),
            module_status_id = get_parameter(kwargs, "module_status_id")
        )
        req = observation_pb2.WriteObservationReq(record = rec)
Wei Shoulin's avatar
leve0  
Wei Shoulin committed
138
139
140
141
142
143
144
145
146
147
148
149
        try:
            resp,_ = self.stub.Write.with_call(req,metadata = get_auth_headers())
            if resp.success:
                return Result.ok_data(data=resp.record)
            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))