@@ -178,88 +178,113 @@ def show_config(config_path):
178
178
"""
179
179
Pretty print config from given config_path
180
180
"""
181
- try :
182
- with open (config_path ) as f :
183
- config = yaml .load (f )
184
- except FileNotFoundError :
185
- config = {}
186
-
181
+ config = get_current_config (config_path )
187
182
yaml .dump (config , sys .stdout )
188
183
189
184
190
185
def set_config_value (config_path , key_path , value , validate = True ):
191
186
"""
192
187
Set key at key_path in config_path to value
193
188
"""
194
- # FIXME: Have a file lock here
189
+ from filelock import FileLock , Timeout
190
+
191
+ lock_file = f"{ config_path } .lock"
192
+ lock = FileLock (lock_file )
195
193
try :
196
- with open (config_path ) as f :
197
- config = yaml .load (f )
198
- except FileNotFoundError :
199
- config = {}
200
- config = set_item_in_config (config , key_path , value )
194
+ with lock .acquire (timeout = 1 ):
195
+ config = get_current_config (config_path )
196
+ config = set_item_in_config (config , key_path , value )
197
+ validate_config (config , validate )
201
198
202
- validate_config (config , validate )
199
+ with open (config_path , "w" ) as f :
200
+ yaml .dump (config , f )
203
201
204
- with open (config_path , "w" ) as f :
205
- yaml .dump (config , f )
202
+ except Timeout :
203
+ print (f"Another instance of tljh-config holds the lock { lock_file } " )
204
+ exit (1 )
206
205
207
206
208
207
def unset_config_value (config_path , key_path , validate = True ):
209
208
"""
210
209
Unset key at key_path in config_path
211
210
"""
212
- # FIXME: Have a file lock here
211
+ from filelock import FileLock , Timeout
212
+
213
+ lock_file = f"{ config_path } .lock"
214
+ lock = FileLock (lock_file )
213
215
try :
214
- with open ( config_path ) as f :
215
- config = yaml . load ( f )
216
- except FileNotFoundError :
217
- config = {}
216
+ with lock . acquire ( timeout = 1 ) :
217
+ config = get_current_config ( config_path )
218
+ config = unset_item_from_config ( config , key_path )
219
+ validate_config ( config , validate )
218
220
219
- config = unset_item_from_config ( config , key_path )
220
- validate_config (config , validate )
221
+ with open ( config_path , "w" ) as f :
222
+ yaml . dump (config , f )
221
223
222
- with open (config_path , "w" ) as f :
223
- yaml .dump (config , f )
224
+ except Timeout :
225
+ print (f"Another instance of tljh-config holds the lock { lock_file } " )
226
+ exit (1 )
224
227
225
228
226
229
def add_config_value (config_path , key_path , value , validate = True ):
227
230
"""
228
231
Add value to list at key_path
229
232
"""
230
- # FIXME: Have a file lock here
233
+ from filelock import FileLock , Timeout
234
+
235
+ lock_file = f"{ config_path } .lock"
236
+ lock = FileLock (lock_file )
231
237
try :
232
- with open ( config_path ) as f :
233
- config = yaml . load ( f )
234
- except FileNotFoundError :
235
- config = {}
238
+ with lock . acquire ( timeout = 1 ) :
239
+ config = get_current_config ( config_path )
240
+ config = add_item_to_config ( config , key_path , value )
241
+ validate_config ( config , validate )
236
242
237
- config = add_item_to_config ( config , key_path , value )
238
- validate_config (config , validate )
243
+ with open ( config_path , "w" ) as f :
244
+ yaml . dump (config , f )
239
245
240
- with open (config_path , "w" ) as f :
241
- yaml .dump (config , f )
246
+ except Timeout :
247
+ print (f"Another instance of tljh-config holds the lock { lock_file } " )
248
+ exit (1 )
242
249
243
250
244
251
def remove_config_value (config_path , key_path , value , validate = True ):
245
252
"""
246
253
Remove value from list at key_path
247
254
"""
248
- # FIXME: Have a file lock here
255
+ from filelock import FileLock , Timeout
256
+
257
+ lock_file = f"{ config_path } .lock"
258
+ lock = FileLock (lock_file )
249
259
try :
250
- with open ( config_path ) as f :
251
- config = yaml . load ( f )
252
- except FileNotFoundError :
253
- config = {}
260
+ with lock . acquire ( timeout = 1 ) :
261
+ config = get_current_config ( config_path )
262
+ config = remove_item_from_config ( config , key_path , value )
263
+ validate_config ( config , validate )
254
264
255
- config = remove_item_from_config ( config , key_path , value )
256
- validate_config (config , validate )
265
+ with open ( config_path , "w" ) as f :
266
+ yaml . dump (config , f )
257
267
258
- with open (config_path , "w" ) as f :
259
- yaml .dump (config , f )
268
+ except Timeout :
269
+ print (f"Another instance of tljh-config holds the lock { lock_file } " )
270
+ exit (1 )
271
+
272
+
273
+ def get_current_config (config_path ):
274
+ """
275
+ Retrieve the current config at config_path
276
+ """
277
+ try :
278
+ with open (config_path ) as f :
279
+ return yaml .load (f )
280
+ except FileNotFoundError :
281
+ return {}
260
282
261
283
262
284
def check_hub_ready ():
285
+ """
286
+ Checks that hub is running.
287
+ """
263
288
from .configurer import load_config
264
289
265
290
base_url = load_config ()["base_url" ]
0 commit comments