level0.py 8.22 KB
Newer Older
Wei Shoulin's avatar
c3  
Wei Shoulin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import os
import logging
import time, datetime
import shutil

from ..common.db import DBClient
from ..common.utils import *
from csst_dfs_commons.models import Result
from csst_dfs_commons.models.facility import Level0Record
from csst_dfs_commons.models.common import from_dict_list

log = logging.getLogger('csst')

class Level0DataApi(object):
    def __init__(self):
        self.root_dir = os.getenv("CSST_LOCAL_FILE_ROOT", "/opt/temp/csst")
        self.db = DBClient()

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

        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
23
            obs_id: [str]
Wei Shoulin's avatar
c3  
Wei Shoulin committed
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
            detector_no: [str]
            obs_type: [str]
            obs_time : (start, end),
            qc0_status : [int],
            prc_status : [int],
            file_name: [str]
            limit: limits returns the number of records,default 0:no-limit

        return: csst_dfs_common.models.Result
        '''
        try:
            obs_id = get_parameter(kwargs, "obs_id")
            detector_no = get_parameter(kwargs, "detector_no")
            obs_type = get_parameter(kwargs, "obs_type")
            exp_time_start = get_parameter(kwargs, "obs_time", [None, None])[0]
            exp_time_end = get_parameter(kwargs, "obs_time", [None, None])[1]
            qc0_status = get_parameter(kwargs, "qc0_status")
            prc_status = get_parameter(kwargs, "prc_status")
            file_name = get_parameter(kwargs, "file_name")
            limit = get_parameter(kwargs, "limit", 0)

            sql_count = "select count(*) as c from t_level0_data where 1=1"
            sql_data = f"select * from t_level0_data where 1=1"

            sql_condition = "" 
Wei Shoulin's avatar
Wei Shoulin committed
49
50
            if obs_id:
                sql_condition = f"{sql_condition} and obs_id='{obs_id}'"              
Wei Shoulin's avatar
c3  
Wei Shoulin committed
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
            if detector_no:
                sql_condition = f"{sql_condition} and detector_no='{detector_no}'"
            if obs_type:
                sql_condition = f"{sql_condition} and obs_type='{obs_type}'"
            if exp_time_start:
                sql_condition = f"{sql_condition} and obs_time >='{exp_time_start}'"
            if exp_time_end:
                sql_condition = f"{sql_condition} and obs_time <='{exp_time_end}'"
            if qc0_status:
                sql_condition = f"{sql_condition} and qc0_status={qc0_status}"
            if prc_status:
                sql_condition = f"{sql_condition} and prc_status={prc_status}"   
            if file_name:
                sql_condition = f" and filename='{file_name}'"  

            sql_count = f"{sql_count} {sql_condition}"
            sql_data = f"{sql_data} {sql_condition}"

            if limit > 0:
                sql_data = f"{sql_data} limit {limit}"   

            totalCount = self.db.select_one(sql_count)
            _, records = self.db.select_many(sql_data)

            return Result.ok_data(data=from_dict_list(Level0Record, records)).append("totalCount", totalCount['c'])

        except Exception as e:
            return Result.error(message=str(e))

    def get(self, **kwargs):
        '''  fetch a record from database

        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
84
85
            id : [int],
            level0_id : [str]
Wei Shoulin's avatar
c3  
Wei Shoulin committed
86
87
88

        return csst_dfs_common.models.Result
        '''
Wei Shoulin's avatar
Wei Shoulin committed
89
90
91
92
93
94
95
96
97
98
99
100
        id = get_parameter(kwargs, "id", 0)
        level0_id = get_parameter(kwargs, "level0_id", "")

        if id == 0 and level0_id == "":
            return Result.error(message="at least define id or level0_id") 

        if id != 0: 
            return self.get_by_id(id)
        if level0_id != "": 
            return self.get_by_level0_id(level0_id)

    def get_by_id(self, id: int):
Wei Shoulin's avatar
c3  
Wei Shoulin committed
101
102
        try:
            r = self.db.select_one(
Wei Shoulin's avatar
Wei Shoulin committed
103
                "select * from t_level0_data where id=?", (id,))
Wei Shoulin's avatar
c3  
Wei Shoulin committed
104
105
106
            if r:
                return Result.ok_data(data=Level0Record().from_dict(r))
            else:
Wei Shoulin's avatar
Wei Shoulin committed
107
                return Result.error(message=f"id:{id} not found")  
Wei Shoulin's avatar
c3  
Wei Shoulin committed
108
109
        except Exception as e:
            log.error(e)
Wei Shoulin's avatar
Wei Shoulin committed
110
111
112
113
114
115
116
117
118
119
120
121
122
            return Result.error(message=str(e))  

    def get_by_level0_id(self, level0_id: str):
        try:
            r = self.db.select_one(
                "select * from t_level0_data where level0_id=?", (level0_id,))
            if r:
                return Result.ok_data(data=Level0Record().from_dict(r))
            else:
                return Result.error(message=f"level0_id:{level0_id} not found")  
        except Exception as e:
            log.error(e)
            return Result.error(message=str(e))  
Wei Shoulin's avatar
c3  
Wei Shoulin committed
123
124
125
126
127

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

        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
128
129
            id : [int],
            level0_id : [str],
Wei Shoulin's avatar
c3  
Wei Shoulin committed
130
131
132
133
            status : [int]

        return csst_dfs_common.models.Result
        '''
Wei Shoulin's avatar
Wei Shoulin committed
134
135
136
137
138
139
140
141
        id = get_parameter(kwargs, "id")
        level0_id = get_parameter(kwargs, "level0_id")
        result = self.get(id = id, level0_id = level0_id)

        if not result.success:
            return Result.error(message="not found")

        id = result.data.id
Wei Shoulin's avatar
c3  
Wei Shoulin committed
142
143
144
145
        status = get_parameter(kwargs, "status")
        try:
            self.db.execute(
                'update t_level0_data set prc_status=?, prc_time=? where id=?',
Wei Shoulin's avatar
Wei Shoulin committed
146
                (status, format_time_ms(time.time()), id)
Wei Shoulin's avatar
c3  
Wei Shoulin committed
147
148
149
150
151
152
153
154
155
156
157
158
            )  
            self.db.end() 
            return Result.ok_data()
           
        except Exception as e:
            log.error(e)
            return Result.error(message=str(e))

    def update_qc0_status(self, **kwargs):
        ''' update the status of QC0
        
        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
159
160
            id : [int],
            level0_id : [str],
Wei Shoulin's avatar
c3  
Wei Shoulin committed
161
162
            status : [int]
        '''        
Wei Shoulin's avatar
Wei Shoulin committed
163
164
165
166
167
168
169
170
        id = get_parameter(kwargs, "id")
        level0_id = get_parameter(kwargs, "level0_id")
        result = self.get(id = id, level0_id = level0_id)

        if not result.success:
            return Result.error(message="not found")

        id = result.data.id
Wei Shoulin's avatar
c3  
Wei Shoulin committed
171
172
173
174
        status = get_parameter(kwargs, "status")
        try:
            self.db.execute(
                'update t_level0_data set qc0_status=?, qc0_time=? where id=?',
Wei Shoulin's avatar
Wei Shoulin committed
175
                (status, format_time_ms(time.time()), id)
Wei Shoulin's avatar
c3  
Wei Shoulin committed
176
177
178
179
180
181
182
183
184
185
186
187
            )  
            self.db.end() 
            return Result.ok_data()
           
        except Exception as e:
            log.error(e)
            return Result.error(message=str(e))

    def write(self, **kwargs):
        ''' insert a level0 data record into database
 
        parameter kwargs:
Wei Shoulin's avatar
Wei Shoulin committed
188
            obs_id = [str]
Wei Shoulin's avatar
c3  
Wei Shoulin committed
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
            detector_no = [str]
            obs_type = [str]        
            obs_time = [str]
            exp_time = [int]
            detector_status_id = [int]
            filename = [str]
            file_path = [str]
        return: csst_dfs_common.models.Result
        '''          
        rec = Level0Record(
            obs_id = get_parameter(kwargs, "obs_id"),
            detector_no = get_parameter(kwargs, "detector_no"),
            obs_type = get_parameter(kwargs, "obs_type"),
            obs_time = get_parameter(kwargs, "obs_time"),
            exp_time = get_parameter(kwargs, "exp_time"),
            detector_status_id = get_parameter(kwargs, "detector_status_id"),
            filename = get_parameter(kwargs, "filename"),
            file_path = get_parameter(kwargs, "file_path")
        )
Wei Shoulin's avatar
Wei Shoulin committed
208
        rec.level0_id = f"{rec.obs_id}{rec.detector_no}"
Wei Shoulin's avatar
c3  
Wei Shoulin committed
209
210
211
212
213
214
215
216
217
218
        try:
            existed = self.db.exists(
                    "select * from t_level0_data where filename=?",
                    (rec.filename,)
                )
            if existed:
                log.warning('%s existed' %(rec.filename, ))
                return Result.error(message ='%s existed' %(rec.filename, ))

            self.db.execute(
Wei Shoulin's avatar
Wei Shoulin committed
219
220
221
                'INSERT INTO t_level0_data (level0_id, obs_id, detector_no, obs_type, obs_time, exp_time,detector_status_id, filename, file_path,qc0_status, prc_status,create_time) \
                    VALUES(?,?,?,?,?,?,?,?,?,?,?,?)',
                (rec.level0_id, rec.obs_id, rec.detector_no, rec.obs_type, rec.obs_time, rec.exp_time, rec.detector_status_id, rec.filename, rec.file_path,-1,-1,format_time_ms(time.time()))
Wei Shoulin's avatar
c3  
Wei Shoulin committed
222
223
224
225
226
227
228
229
230
231
232
            )
            self.db.end()
            rec.id = self.db.last_row_id()

            return Result.ok_data(data=rec)

        except Exception as e:
            log.error(e)
            return Result.error(message=str(e))