config_utils.py 3.46 KB
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
Deshui Yu's avatar
Deshui Yu committed
3
4
5

import os
import json
6
from .constants import NNICTL_HOME_DIR
Deshui Yu's avatar
Deshui Yu committed
7
8
9

class Config:
    '''a util class to load and save config'''
10
11
    def __init__(self, file_path):
        config_path = os.path.join(NNICTL_HOME_DIR, str(file_path))
goooxu's avatar
goooxu committed
12
13
        os.makedirs(config_path, exist_ok=True)
        self.config_file = os.path.join(config_path, '.config')
Deshui Yu's avatar
Deshui Yu committed
14
15
16
17
        self.config = self.read_file()

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

    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 {}
49
50
51
52
53
54
55
56

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()

57
    def add_experiment(self, expId, port, startTime, file_name, platform, experiment_name, endTime='N/A', status='INITIALIZED'):
58
        '''set {key:value} paris to self.experiment'''
chicm-ms's avatar
chicm-ms committed
59
60
        self.experiments[expId] = {}
        self.experiments[expId]['port'] = port
61
62
63
        self.experiments[expId]['startTime'] = startTime
        self.experiments[expId]['endTime'] = endTime
        self.experiments[expId]['status'] = status
chicm-ms's avatar
chicm-ms committed
64
65
        self.experiments[expId]['fileName'] = file_name
        self.experiments[expId]['platform'] = platform
66
        self.experiments[expId]['experimentName'] = experiment_name
67
        self.write_file()
68

chicm-ms's avatar
chicm-ms committed
69
    def update_experiment(self, expId, key, value):
70
        '''Update experiment'''
chicm-ms's avatar
chicm-ms committed
71
        if expId not in self.experiments:
72
            return False
chicm-ms's avatar
chicm-ms committed
73
        self.experiments[expId][key] = value
74
75
        self.write_file()
        return True
76

chicm-ms's avatar
chicm-ms committed
77
    def remove_experiment(self, expId):
78
        '''remove an experiment by id'''
79
        if expId in self.experiments:
chicm-ms's avatar
chicm-ms committed
80
            self.experiments.pop(expId)
81
        self.write_file()
82

83
84
85
    def get_all_experiments(self):
        '''return all of experiments'''
        return self.experiments
86

87
88
89
90
91
92
93
    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
94
            return ''
95
96
97
98
99
100
101
102
103

    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
104
        return {}