Question
· Mar 26

File with JSON records

Is there a File Service (or a way to define a RecordMap) to intake a file that contains records that are JSON object?I would like to have my Service route each record(object) to a Process one at a time.

Product version: IRIS 2023.1
Discussion (4)2
Log in or sign up to continue

You can use...Embedded Python! You just need a business service EnsLib.File.PassthroughService to get the the json file and send it into a BP with a ClassMethod to get all the lines, here you can see an example:

https://www.geeksforgeeks.org/read-a-file-line-by-line-in-python/

You can save the object directly from the Embedded Python method or return a list of strings and map it into an Objectscript object.

Hello  @Michael Wood,

here are several approaches you can take to handle this. One option is to create a file service that reads the file as a stream and sends it to a custom business process. You can then convert that stream into a JSON object and iterate through each DynamicObject entry. Alternatively, you could send the stream to BPL and process the JSON there

Simplified sample of process the JSON. 


Class Samples.Introp.JSONFileService Extends Ens.BusinessService
{

Parameter ADAPTER = "EnsLib.File.InboundAdapter";

Method OnProcessInput(pInput As %Stream.Object, Output pOutput As %RegisteredObject) As %Status
{
	Do ..SendRequestSync("JSONFileProcess",pInput,pOutput)
	Quit $$$OK
}

}

Class Samples.Introp.JSONFileProcess Extends Ens.BusinessProcess [ ClassType = persistent ]
{

Method OnRequest(pRequest As Ens.Request, Output pResponse As Ens.Response) As %Status
{
	Set json = {}.%FromJSON(pRequest)
	
	Set iter = json.%GetIterator()
	
	while iter.%GetNext(.key,.val)
	{
		s ^test($Classname(),$NOW(),key)=val.%ToJSON()
	}

	Quit $$$OK
}
}

Thanks!

You could use a Record Map with a single field. Just make sure you set MAXLEN to a big enough value to hold the entire line.  That would send each line in the file to your Process as text, ignoring that it's actually JSON.  Your Process could convert it to a Dynamic Object if necessary.  That doesn't seem to add much value over just having your Process read the file though.