parent
ad692d2913
commit
79fd75bc9d
@ -1,45 +1,180 @@
|
|||||||
"""
|
"""
|
||||||
This class refactors the default parsing class (better & streamlined implementation)
|
This class refactors the default parsing class (better & streamlined implementation)
|
||||||
|
The class will rely on the new plug/play architectural style perform parsing
|
||||||
"""
|
"""
|
||||||
from multiprocessing import Process, RLock
|
from multiprocessing import Process, RLock
|
||||||
import os
|
import os
|
||||||
import json
|
import json
|
||||||
|
# from healthcareio.x12.util
|
||||||
|
from healthcareio import x12
|
||||||
|
import numpy as np
|
||||||
|
import transport
|
||||||
|
import copy
|
||||||
|
# from healthcareio.x12.util import file as File, document as Document
|
||||||
|
|
||||||
|
|
||||||
|
import time
|
||||||
|
class BasicParser (Process) :
|
||||||
|
def __init__(self,**_args):
|
||||||
|
super().__init__()
|
||||||
|
self._plugins = _args['plugins']
|
||||||
|
self._parents = _args['parents']
|
||||||
|
self._files = _args['files']
|
||||||
|
self._store = _args['store']
|
||||||
|
|
||||||
class parser (Process) :
|
def apply(self,**_args):
|
||||||
_CONFIGURATION = {}
|
_content = _args['content']
|
||||||
def __init__(self,path=None) :
|
_filetype = _args['x12']
|
||||||
if not parser._CONFIGURATION :
|
_doc = _args['document'] #{}
|
||||||
_path = path if path else os.sep.join([os.environ['HOME'],'.healthcareio/config.json'])
|
_documentHandler = x12.util.document.Builder(plugins = self._plugins,parents=self._parents)
|
||||||
#
|
try:
|
||||||
# @TODO: Load custom configuration just in case we need to do further processing
|
|
||||||
config = json.loads(open(path).read())
|
for _row in _content :
|
||||||
parser._CONFIGURATION = config['parser']
|
# _data = None
|
||||||
|
|
||||||
|
_data,_meta = _documentHandler.bind(row=_row,x12=_filetype)
|
||||||
|
|
||||||
|
if _data and _meta :
|
||||||
|
_doc = _documentHandler.build(data=_data,document=_doc,meta=_meta,row=_row)
|
||||||
|
# print (['*** ',_doc])
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
#
|
#
|
||||||
# do we have a custom configuration in this location
|
# Log something here ....
|
||||||
|
print (_row)
|
||||||
|
print (e)
|
||||||
|
# print (_row,_doc.keys())
|
||||||
|
pass
|
||||||
|
return _doc
|
||||||
|
def run(self):
|
||||||
|
_handleContent = x12.util.file.Content()
|
||||||
|
_handleDocument = x12.util.document.Builder(plugins = self._plugins,parents=self._parents)
|
||||||
|
_template = _plugins,_parents = x12.util.template(plugins=self._plugins)
|
||||||
|
for _absolute_path in self._files :
|
||||||
|
try:
|
||||||
|
|
||||||
|
_content = _handleContent.read(filename=_absolute_path)
|
||||||
|
_content,_filetype = _handleContent.split(_content)
|
||||||
|
|
||||||
#
|
#
|
||||||
_custompath = _path.replace('config.json','')
|
# The first row is the header (it will be common to all claims)
|
||||||
_custompath = _custompath if not _custompath.endswith(os.sep) else _custompath[:-1]
|
_header = copy.deepcopy(_template[_filetype])
|
||||||
_custompath = os.sep.join([_custompath,'custom'])
|
_header = self.apply(content=_content[0],x12=_filetype, document=_header)
|
||||||
if os.exists(_custompath) :
|
_docs = []
|
||||||
files = os.listdir(_custompath)
|
|
||||||
if files :
|
|
||||||
_filename = os.sep.join([_custompath,files[0]])
|
for _rawclaim in _content[1:] :
|
||||||
_customconf = json.loads(open(_filename).read())
|
|
||||||
|
_document = copy.deepcopy(_header) #copy.deepcopy(_template[_filetype])
|
||||||
|
# _document = dict(_document,**_header)
|
||||||
|
if type(_absolute_path) == str:
|
||||||
|
_document['filename'] = _absolute_path
|
||||||
|
_doc = self.apply(content=_rawclaim,x12=_filetype, document=_document)
|
||||||
|
if _doc :
|
||||||
#
|
#
|
||||||
# merge with existing configuration
|
# @TODO: Make sure the test here is the existence of the primary key
|
||||||
|
# _doc = _handleDocument.merge(_doc,_header)
|
||||||
|
|
||||||
|
|
||||||
|
_docs.append(_doc)
|
||||||
else:
|
else:
|
||||||
|
# print (['wtf ...',_rawclaim])
|
||||||
pass
|
pass
|
||||||
|
|
||||||
#
|
#
|
||||||
|
# Let us submit the batch we have thus far
|
||||||
#
|
#
|
||||||
class getter :
|
|
||||||
def value(self,) :
|
self.post(documents=_docs,type=_filetype)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
|
||||||
|
print (e)
|
||||||
|
def post(self,**_args):
|
||||||
pass
|
pass
|
||||||
class setter :
|
class X12Parser(BasicParser):
|
||||||
def files(self,files):
|
def __init__(self,**_args):
|
||||||
|
super().__init__(**_args)
|
||||||
|
self._store = _args['store']
|
||||||
|
def post(self,**_args):
|
||||||
|
"""
|
||||||
|
Writing the files to a persistent storage in JSON format (hopefully)
|
||||||
|
"""
|
||||||
|
|
||||||
|
_documents = _args['documents']
|
||||||
|
if _documents :
|
||||||
|
_store = copy.copy(self._store,**{})
|
||||||
|
TABLE = 'claims' if _args['type'] in ['837','claims'] else 'remits'
|
||||||
|
_store['table'] = TABLE
|
||||||
|
|
||||||
|
_writer = transport.factory.instance(**_store)
|
||||||
|
_writer.write(_documents)
|
||||||
|
if getattr(_writer,'close') :
|
||||||
|
_writer.close()
|
||||||
|
|
||||||
|
|
||||||
|
def instance (**_args):
|
||||||
|
"""
|
||||||
|
:path
|
||||||
|
"""
|
||||||
|
# _files = x12.util.Files.get(_args['file'])
|
||||||
|
|
||||||
|
# #
|
||||||
|
# # We can split these files (multi-processing)
|
||||||
|
# #
|
||||||
|
# _jobCount = 1 if 'jobs' not in _args else int (_args['jobs'])
|
||||||
|
# _files = np.array_split(_files,_jobCount)
|
||||||
|
# PATH = os.sep.join([os.environ['HOME'],'.healthcareio','config.json'])
|
||||||
|
# if 'config' in _args :
|
||||||
|
# PATH = _args['config']
|
||||||
|
# f = open(PATH)
|
||||||
|
# _config = json.loads(f.read())
|
||||||
|
# f.close()
|
||||||
|
# jobs = []
|
||||||
|
# for _batch in _files :
|
||||||
|
# pthread = Parser(files=_batch,config=_config)
|
||||||
|
# pthread.start()
|
||||||
|
# jobs.append(pthread)
|
||||||
|
# time.sleep(1)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
# class parser (Process) :
|
||||||
|
# _CONFIGURATION = {}
|
||||||
|
# def __init__(self,path=None) :
|
||||||
|
# if not parser._CONFIGURATION :
|
||||||
|
# _path = path if path else os.sep.join([os.environ['HOME'],'.healthcareio/config.json'])
|
||||||
|
# #
|
||||||
|
# # @TODO: Load custom configuration just in case we need to do further processing
|
||||||
|
# config = json.loads(open(path).read())
|
||||||
|
# parser._CONFIGURATION = config['parser']
|
||||||
|
# #
|
||||||
|
# # do we have a custom configuration in this location
|
||||||
|
# #
|
||||||
|
# _custompath = _path.replace('config.json','')
|
||||||
|
# _custompath = _custompath if not _custompath.endswith(os.sep) else _custompath[:-1]
|
||||||
|
# _custompath = os.sep.join([_custompath,'custom'])
|
||||||
|
# if os.exists(_custompath) :
|
||||||
|
# files = os.listdir(_custompath)
|
||||||
|
# if files :
|
||||||
|
# _filename = os.sep.join([_custompath,files[0]])
|
||||||
|
# _customconf = json.loads(open(_filename).read())
|
||||||
|
# #
|
||||||
|
# # merge with existing configuration
|
||||||
|
|
||||||
|
|
||||||
|
# else:
|
||||||
|
# pass
|
||||||
|
|
||||||
|
# #
|
||||||
|
# #
|
||||||
|
# class getter :
|
||||||
|
# def value(self,) :
|
||||||
|
# pass
|
||||||
|
# class setter :
|
||||||
|
# def files(self,files):
|
||||||
|
# pass
|
||||||
|
|
Loading…
Reference in new issue