Besa Fhir Help File |
Besa FHIR Client Getting StartedA light-weight and fast FHIR client. It use Indy's HTTP component (TIdHTTP) for connecting. For FHIR object model, with support for efficiently parsing and writing in JSON and XML format. This is the documentation of the the settings of the TbsFhirClient and the CRUD interactions you can perform with it. We will then give some examples of search interactions, and explain how to perform operations and transactions. Contents: General overview of the data flow in fhir: Load LibraryBefore you create a fhir client, you need to load the message library. This library contains FHIR definitions. A library was created for each FHIR version. Library names formatted as BSFHIRXXS.BSL, XX is FHIR release number. For FHIR STU 3 version library name BSFRSTU3.BSL. //Load library... procedure TForm1.FormCreate(Sender: TObject); begin BSFHIRLibrary.LoadFromFile('..\data\BSFRSTU3.BSL'); end;
Create a FHIR ClientBefore we can do any of the interactions, we have to create a new TbsFhirClient instance. This is done by passing the url of the FHIR server's endpoint as a parameter to the constructor: var client: TbsFHIRClient; begin client := TbsFHIRClient.Create('http://server.url/'); end;
FhirClient communication optionsTo specify the preferred format JSON or XML of the content to be used when communicating with the FHIR server, you can use the EncodingFormat attribute:
client.EncodingFormat := ffmtJSON; // JSON is default encoding format.
The FHIR client will send all requests in the specified format. The default setting for this field is JSON. When communicating the preferred format to the server, this can either be done by appending client.UseFormatParam := false;
CRUD interactionsA TbsFhirClient named client has been setup in the previous topic, now let's do something with it. Create a new resourceAssume we want to create a new resource instance and want to ask the server to store it for us. This is done using Create. var patient : TPatient; id : string; begin patient:=TPatient.Create; // ... // set up data // ... id := client.CreateResource(patient); end;
Sample Code: var client:TbsFHIRClient; patient:TPatient; id:string; begin client:=TbsFHIRClient.Create('http://server.url/'); client.IndyHttp:=IdHTTP1; patient:=TPatient.Create; patient.active:=True; patient.text:=TNarrative.Create; patient.text.status:='generated'; patient.identifier.Add; patient.identifier[0].system:='urn:system'; patient.identifier[0].value:='12345'; patient.name_.Add; //Adds new THumanName patient.name_[0].family:='James'; patient.name_[0].given[0]:='John'; Id:= client.CreateResource(patient); patient.Free; client.Free; end;
Reading an existing resourceTo read the data for a given resource instance from a server, you’ll need its technical id. You may have previously stored this after a Create, or you have found its address in a ResourceReference (e.g. Observation.Subject.Reference). The Read interaction on the TbsFhirClient has two overloads to cover both cases. Furthermore, it accepts both relative paths and absolute paths (as long as they are within the endpoint passed to the constructor of the TbsFhirClient). // Read the current version of a Patient resource with technical id '1' var client:TbsFHIRClient; patient:TPatient; begin client:=TbsFHIRClient.Create('http://server.url/'); client.IndyHttp:=IdHTTP1; patient:=TPatient( client.ReadResource('Patient','1')); patient.Free; client.Free; end;
Note that Read can be used to get the most recent version of a resource as well as a specific version, and thus covers the two ‘logical’ REST interactions ReadResource and ReadResourceV. Updating a resourceOnce you have retrieved a resource, you may edit its contents and send it back to the server. This is done using the Update interaction. It takes the resource instance previously retrieved as a parameter: var client:TbsFHIRClient; patient:TPatient; begin client:=TbsFHIRClient.Create('http://server.url/'); client.IndyHttp:=IdHTTP1; // Read patient info. patient:=TPatient( client.ReadResource('Patient',eId.Text)); // Add a name to the patient, and update patient.name_[0].family:='James1'; patient.name_[0].given[0]:='Given'; client.UpdateResource(patient); patient.Free; client.Free; end;
There’s always a chance that between retrieving the resource and sending an update, someone else has updated the resource as well. Servers supporting version-aware updates may refuse your update in this case and return a HTTP status code 409 (Conflict), which causes the Update interaction to throw a Exception with the same status code. Deleting a ResourceThe Delete interaction on the TbsFHIRClient deletes a resource from the server. It is up to the server to decide whether the resource is actually removed from storage, or whether previous versions are still available for retrieval. The Delete interaction has multiple overloads to allow you to delete based on a url or a resource instance: var client:TbsFHIRClient; //patient:TPatient; begin client:=TbsFHIRClient.Create('http://server.url/'); client.IndyHttp:=IdHTTP1; //patient:=TPatient( client.ReadResource('Patient','1')); //client.DeleteResource(patient); // or client.DeleteResource('Patient','1'); //Patient.Free client.Free; end;
The Delete interaction will fail and throw a Exception if the resource was already deleted or if the resource did not exist before deletion, and the server returned an error indicating that. Note that sending an update to a resource after it has been deleted is not considered an error and may effectively "undelete" it. Looking at LastResultAfter the TbsFhirClient has received a response from the server, you will usually work with the resource instance that was returned. If you still need to check the response from the server, for example to lookup the technical id or version id the server has assigned to your resource instance, you can do this by looking at the LastResponseCode property of the FhirClient. client.CreateResource(patient); if (client.LastResponseCode = 201) then begin ShowMessage('The response text for the resource is: ' + client.LastResponseText); end;
Searching for resourcesFHIR has extensive support for searching resources through the use of the REST interface. Describing all the possibilities is outside the scope of this document, but much more details can be found online in the specification.The FHIR client has a few operations to do basic search. Searching within a specific type of resourceclient.Search('Patient', LParams)The most basic search is the client@s var results:TBundle; begin results:= client.Search('Patient', 'family=James'); end;
The search will return a Bundle containing entries for each resource found. It is even possible to leave out all criteria, effectively resulting in a search that returns all resources of the given type. Sample code: var client:TbsFHIRClient; bundle:TBundle; i:integer; LParams:TStringList; begin client:=TbsFHIRClient.Create('http://server.url/'); client.IndyHttp:=IdHTTP1; LParams:=TStringList.Create; LParams.AddPair('family','James'); bundle :=TBundle(client.Search('Patient', LParams)); LParams.Free; ShowMessage('Total:'+IntToStr( bundle.total)); if bundle.total>0 then begin mLog.Lines.Append('--- id(s)---'); for i:=0 to bundle.entry.Count-1 do begin mLog.Lines.Add( TPatient(bundle.entry[i].resource).id ); end; end; bundle.Free; client.Free; end; Generated by PasDoc 0.15.0. |