X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=tools%2Fio.py;fp=tools%2Fio.py;h=c09f9ceb40d95a1d1131f0ed10a6520e5f2922cc;hb=4ded4f2a805e9447be90751d7d4fb7e11552e545;hp=0000000000000000000000000000000000000000;hpb=3b1226294aa9e47692e15279e669d159675deeb9;p=ta%2Fbuild-tools.git diff --git a/tools/io.py b/tools/io.py new file mode 100755 index 0000000..c09f9ce --- /dev/null +++ b/tools/io.py @@ -0,0 +1,37 @@ +# Copyright 2019 Nokia +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import json +import logging + +from tools.convert import to_json + + +def write_to(file_path, data): + with open(file_path, 'w') as f: + f.write(data) + logging.debug('Wrote: {}'.format(file_path)) + + +def read_from(file_path): + with open(file_path, 'r') as f: + return f.read() + + +def write_json(file_path, data): + write_to(file_path, to_json(data)) + + +def read_json(file_path): + return json.loads(read_from(file_path))