PKG_DIR = 'pkgs'
CHUNK_SIZE = 8192
+def get_pkg(json_file):
+ with open(json_file, mode='r') as f:
+ pkg = json.load(f)
+ basename = os.path.basename(json_file)
+ package_name = os.path.splitext(basename)[0]
+ pkg['package_name'] = package_name
+ f.close()
+ return pkg
+
+ return None
+
def process_all(path, cb):
listing = glob.glob(os.path.join(path, '*.json'))
for json_file in listing:
- with open(json_file, mode='r') as f:
- pkg = json.load(f)
- basename = os.path.basename(json_file)
- package_name = os.path.splitext(basename)[0]
- pkg['package_name'] = package_name
- cb(pkg)
- f.close()
+ pkg = get_pkg(json_file)
+ if not pkg:
+ sys.stderr.write("Error: cannot get a pkg for: %s\n" % json_file)
+ continue
+ cb(pkg)
def show(pkg):
print 'Package: ', pkg['package_name']