f0c029d6e7
2.fix for python2
34 lines
No EOL
867 B
Python
34 lines
No EOL
867 B
Python
# -*- coding: utf-8 -*-
|
|
# above is for compatibility of python2
|
|
|
|
import json
|
|
import os
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class Tfstate(object):
|
|
def __init__(self, data=None):
|
|
self.tfstate_file = None
|
|
self.native_data = data
|
|
if data:
|
|
self.__dict__ = data
|
|
|
|
@staticmethod
|
|
def load_file(file_path):
|
|
"""
|
|
Read the tfstate file and load its contents, parses then as JSON and put the result into the object
|
|
"""
|
|
log.debug('read data from {0}'.format(file_path))
|
|
if os.path.exists(file_path):
|
|
with open(file_path) as f:
|
|
json_data = json.load(f)
|
|
|
|
tf_state = Tfstate(json_data)
|
|
tf_state.tfstate_file = file_path
|
|
return tf_state
|
|
|
|
log.warn('{0} is not exist'.format(file_path))
|
|
|
|
return Tfstate() |