"src/targets/vscode:/vscode.git/clone" did not exist on "f550f814ffffdf46582eae7bd83c70d9245e6ce5"
config_utils.py 3.83 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
import shutil
7
from .constants import NNICTL_HOME_DIR
8
from .command_utils import print_error
Deshui Yu's avatar
Deshui Yu committed
9
10
11

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

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

    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 {}
51
52
53

class Experiments:
    '''Maintain experiment list'''
SparkSnail's avatar
SparkSnail committed
54
55
56
    def __init__(self, home_dir=NNICTL_HOME_DIR):
        os.makedirs(home_dir, exist_ok=True)
        self.experiment_file = os.path.join(home_dir, '.experiment')
57
58
        self.experiments = self.read_file()

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

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

chicm-ms's avatar
chicm-ms committed
79
    def remove_experiment(self, expId):
80
        '''remove an experiment by id'''
81
        if expId in self.experiments:
82
83
84
85
86
87
88
            fileName = self.experiments.pop(expId).get('fileName')
            if fileName:
                logPath = os.path.join(NNICTL_HOME_DIR, fileName)
                try:
                    shutil.rmtree(logPath)
                except FileNotFoundError:
                    print_error('{0} does not exist.'.format(logPath))
89
        self.write_file()
90

91
92
93
    def get_all_experiments(self):
        '''return all of experiments'''
        return self.experiments
94

95
96
97
98
99
100
101
    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
102
            return ''
103
104
105
106
107
108
109
110
111

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