X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=manifold%2Fmetadata.py;h=08fdf61dea73339adf7149723d754df0503c9fbc;hb=d1197c134b70bda643a752bdaf891190cb5a15e7;hp=eb0e48a4c80dcd800c3e653623eb74a762e4b0c1;hpb=544e6ac78d490061f848f98adb0e08574b474371;p=myslice.git diff --git a/manifold/metadata.py b/manifold/metadata.py index eb0e48a4..08fdf61d 100644 --- a/manifold/metadata.py +++ b/manifold/metadata.py @@ -1,8 +1,11 @@ import json +import os.path from manifold.manifoldresult import ManifoldResult from manifold.manifoldapi import ManifoldAPI +from django.contrib import messages + debug=False debug=True @@ -14,47 +17,62 @@ class MetaData: def __init__ (self, auth): self.auth=auth - self.hash_by_subject={} - - # XXX Retrieve all metadata the first time we instanciate the class - self.fetch() + self.hash_by_object={} - def fetch (self): - offline_filename="offline-metadata.json" + def fetch (self, request): + offline_filename="%s/../offline-metadata.json"%os.path.dirname(__file__) if work_offline: try: with file(offline_metadata) as f: - self.hash_by_subject=json.loads(f.read()) + self.hash_by_object=json.loads(f.read()) return except: print "metadata.work_offline: failed to decode %s"%offline_filename manifold_api = ManifoldAPI(self.auth) - fields = ['table', 'column.column', - 'column.description','column.header', 'column.title', - 'column.unit', 'column.info_type', - 'column.resource_type', 'column.value_type', - 'column.allowed_values', 'column.platforms.platform', - 'column.platforms.platform_url'] - rows_result = manifold_api.Get({ - 'fact_table': 'local:objects', # proposed to replace metadata:table - 'fields': fields - }) -#old# rows_result = manifold_api.Get('metadata:table', [], [], fields) - rows = rows_result.ok_value() - if not rows: - print "Failed to retrieve metadata",rows_result.error() - rows=[] - self.hash_by_subject = dict ( [ (row['table'], row) for row in rows ] ) + fields = ['table', 'column.name', 'column.qualifier', 'column.type', + 'column.is_array', 'column.description', 'column.default', 'key', 'capability'] + #fields = ['table', 'column.column', + # 'column.description','column.header', 'column.title', + # 'column.unit', 'column.info_type', + # 'column.resource_type', 'column.value_type', + # 'column.allowed_values', 'column.platforms.platform', + # 'column.platforms.platform_url'] + request={ 'action': 'get', + 'object': 'local:object', # proposed to replace metadata:table + 'fields': fields , + } + result = manifold_api.forward(request) + + # xxx need a way to export error messages to the UI + if result['code'] == 1: # warning + # messages.warning(request, result['description']) + print ("METADATA WARNING -",request,result['description']) + elif result['code'] == 2: + # messages.error(request, result['description']) + print ("METADATA ERROR -",request,result['description']) + # XXX FAIL HERE XXX + return + + rows = result.ok_value() +# API errors will be handled by the outer logic +# if not rows: +# print "Failed to retrieve metadata",rows_result.error() +# rows=[] + self.hash_by_object = dict ( [ (row['table'], row) for row in rows ] ) # save for next time we use offline mode - if debug: + if debug and rows: with file(offline_filename,'w') as f: - f.write(json.dumps(self.hash_by_subject)) + f.write(json.dumps(self.hash_by_object)) def to_json(self): - return json.dumps(self.hash_by_subject) + return json.dumps(self.hash_by_object) + + def details_by_object (self, object): + return self.hash_by_object[object] - def details_by_subject (self, subject): - return self.hash_by_subject[subject] + def sorted_fields_by_object (self, object): + return self.hash_by_object[object]['column'].sort() - def sorted_fields_by_subject (self, subject): - return self.hash_by_subject[subject]['columns'].sort() + def get_field_type(self, object, field): + print "Temp fix for metadata::get_field_type() -> consider moving to manifold.core.metadata soon" + return field