config_utils.py 4.45 KB
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (c) Microsoft Corporation
# All rights reserved.
#
# MIT License
#
# Permission is hereby granted, free of charge,
# to any person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and
# to permit persons to whom the Software is furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
# BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


import os
import json
24
from .constants import NNICTL_HOME_DIR
Deshui Yu's avatar
Deshui Yu committed
25
26
27

class Config:
    '''a util class to load and save config'''
28
29
    def __init__(self, file_path):
        config_path = os.path.join(NNICTL_HOME_DIR, str(file_path))
goooxu's avatar
goooxu committed
30
31
        os.makedirs(config_path, exist_ok=True)
        self.config_file = os.path.join(config_path, '.config')
Deshui Yu's avatar
Deshui Yu committed
32
33
34
35
        self.config = self.read_file()

    def get_all_config(self):
        '''get all of config values'''
36
        return json.dumps(self.config, indent=4, sort_keys=True, separators=(',', ':'))
Deshui Yu's avatar
Deshui Yu committed
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

    def set_config(self, key, value):
        '''set {key:value} paris to self.config'''
        self.config = self.read_file()
        self.config[key] = value
        self.write_file()

    def get_config(self, key):
        '''get a value according to key'''
        return self.config.get(key)

    def write_file(self):
        '''save config to local file'''
        if self.config:
            try:
                with open(self.config_file, 'w') as file:
                    json.dump(self.config, file)
            except IOError as error:
                print('Error:', error)
                return

    def read_file(self):
        '''load config from local file'''
        if os.path.exists(self.config_file):
            try:
                with open(self.config_file, 'r') as file:
                    return json.load(file)
            except ValueError:
                return {}
        return {}
67
68
69
70
71
72
73
74

class Experiments:
    '''Maintain experiment list'''
    def __init__(self):
        os.makedirs(NNICTL_HOME_DIR, exist_ok=True)
        self.experiment_file = os.path.join(NNICTL_HOME_DIR, '.experiment')
        self.experiments = self.read_file()

75
    def add_experiment(self, expId, port, time, file_name, platform, experiment_name):
76
        '''set {key:value} paris to self.experiment'''
chicm-ms's avatar
chicm-ms committed
77
78
79
80
81
82
83
        self.experiments[expId] = {}
        self.experiments[expId]['port'] = port
        self.experiments[expId]['startTime'] = time
        self.experiments[expId]['endTime'] = 'N/A'
        self.experiments[expId]['status'] = 'INITIALIZED'
        self.experiments[expId]['fileName'] = file_name
        self.experiments[expId]['platform'] = platform
84
        self.experiments[expId]['experimentName'] = experiment_name
85
        self.write_file()
86

chicm-ms's avatar
chicm-ms committed
87
    def update_experiment(self, expId, key, value):
88
        '''Update experiment'''
chicm-ms's avatar
chicm-ms committed
89
        if expId not in self.experiments:
90
            return False
chicm-ms's avatar
chicm-ms committed
91
        self.experiments[expId][key] = value
92
93
        self.write_file()
        return True
94

chicm-ms's avatar
chicm-ms committed
95
    def remove_experiment(self, expId):
96
97
        '''remove an experiment by id'''
        if id in self.experiments:
chicm-ms's avatar
chicm-ms committed
98
            self.experiments.pop(expId)
99
        self.write_file()
100

101
102
103
    def get_all_experiments(self):
        '''return all of experiments'''
        return self.experiments
104

105
106
107
108
109
110
111
    def write_file(self):
        '''save config to local file'''
        try:
            with open(self.experiment_file, 'w') as file:
                json.dump(self.experiments, file)
        except IOError as error:
            print('Error:', error)
chicm-ms's avatar
chicm-ms committed
112
            return ''
113
114
115
116
117
118
119
120
121

    def read_file(self):
        '''load config from local file'''
        if os.path.exists(self.experiment_file):
            try:
                with open(self.experiment_file, 'r') as file:
                    return json.load(file)
            except ValueError:
                return {}
chicm-ms's avatar
chicm-ms committed
122
        return {}