config_utils.py 5.1 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
24
# 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
import shutil
25
from .constants import NNICTL_HOME_DIR
SparkSnail's avatar
SparkSnail committed
26
from .common_utils import print_error
Deshui Yu's avatar
Deshui Yu committed
27
28
29

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

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

    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 {}
69
70
71
72
73
74
75
76

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

SparkSnail's avatar
SparkSnail committed
77
    def add_experiment(self, id, port, time, file_name, platform):
78
        '''set {key:value} paris to self.experiment'''
79
80
81
82
        self.experiments[id] = {}
        self.experiments[id]['port'] = port
        self.experiments[id]['startTime'] = time
        self.experiments[id]['endTime'] = 'N/A'
83
        self.experiments[id]['status'] = 'INITIALIZED'
84
        self.experiments[id]['fileName'] = file_name
SparkSnail's avatar
SparkSnail committed
85
        self.experiments[id]['platform'] = platform
86
87
        self.write_file()
    
88
89
90
91
92
93
94
95
    def update_experiment(self, id, key, value):
        '''Update experiment'''
        if id not in self.experiments:
            return False
        self.experiments[id][key] = value
        self.write_file()
        return True
    
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
    def remove_experiment(self, id):
        '''remove an experiment by id'''
        if id in self.experiments:
            self.experiments.pop(id)
        self.write_file()
        
    def get_all_experiments(self):
        '''return all of experiments'''
        return self.experiments
    
    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)
            return

    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 {}
SparkSnail's avatar
SparkSnail committed
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
        return {} 

class HDFSConfig:
    '''manage hdfs configuration'''
    def __init__(self):
        os.makedirs(NNICTL_HOME_DIR, exist_ok=True)
        self.hdfs_config_file = os.path.join(NNICTL_HOME_DIR, '.hdfs')
    
    def get_config(self):
        if os.path.exists(self.hdfs_config_file):
            try:
                with open(self.hdfs_config_file, 'r') as file:
                    return json.load(file)
            except Exception as exception:
                print_error(exception)
                return None
        else:
            return None

    def set_config(self, host, user_name):
        with open(self.hdfs_config_file, 'w') as file:
            json.dump({'host':host, 'userName': user_name}, file)