level1prc.py 1.45 KB
Newer Older
Wei Shoulin's avatar
Wei Shoulin committed
1
2
3
4
5
6
7
8

from ..common.delegate import Delegate

class Level1PrcApi(object):
    """
    Level 0 Data Operation API
    """
    def __init__(self):
Wei Shoulin's avatar
Wei Shoulin committed
9
        self.pymodule = Delegate().load(sub_module = "facility")
Wei Shoulin's avatar
Wei Shoulin committed
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
        self.stub = getattr(self.pymodule, "Level1PrcApi")()
        
    def find(self, **kwargs):
        ''' retrieve level1 procedure records from database

        :param kwargs: Parameter dictionary, key items support:
            level1_id: [int]
            pipeline_id: [str]
            prc_module: [str]
            prc_status : [int]
        
        :returns: csst_dfs_common.models.Result
        '''
        return self.stub.find(**kwargs)

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

        :param kwargs: Parameter dictionary, key items support:
            id : [int],
            status : [int]
        
        :returns: csst_dfs_common.models.Result
        '''
        return self.stub.update_proc_status(**kwargs)

    def write(self, **kwargs):
        ''' insert a level1 procedure record into database
 
        :param kwargs: Parameter dictionary, key items support:
            level1_id : [int]
            pipeline_id : [str]
            prc_module : [str]
            params_file_path : [str]
            prc_status : [int]
            prc_time : [str]
            result_file_path : [str]
        
        :returns: csst_dfs_common.models.Result
        '''  
        return self.stub.write(**kwargs)