Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

CURL.PerformInBackground

Perform a file transfer in background.

Component Version macOS Windows Linux Server iOS SDK
CURL 2.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "CURL.PerformInBackground"; curl )   More

Parameters

Parameter Description Example
curl The CURL session handle. $curl

Result

Error code. 0 means everything was ok, non-zero means an error occurred.

Description

Perform a file transfer in background.
This function is called after the init and all the options are set, and will perform the transfer as described in the options. It must be called with the same handle as input as the CURL.New call returned.

You can do any amount of calls to PerformInBackground while using the same handle. If you intend to transfer more than one file, you are even encouraged to do so. CURL will then attempt to re-use the same connection for the following transfers, thus making the operations faster, less CPU intense and using less network resources. Just note that you will have to use the option functions between the invokes to set options for the following CURL.Perform.

You must never call this function simultaneously from two places using the same handle. Let the transfer finish first before invoking it another time. If you want parallel transfers, you must use several curl handles.

Internal buffer for output, debug and header data is cleared before the perform.

While transfer is running, your FileMaker application is not blocked. Be aware that transfer runs in background and you should query status with functions like CURL.IsRunning, CURL.GetProgressTotalDownload, CURL.GetProgressTotalUpload, CURL.GetProgressCurrentDownload and CURL.GetProgressCurrentUpload.

The CURL.PerformInBackground allows you to run a transfer in the background on another thread. FileMaker can do whatever it likes (except quitting) and the transfer continues in the background. Your script can start a download and then use FileMaker script steps to do longer operations like an export of records. When finished, you can pick up the result or get a script triggered.
If you have a lot of parallel background transfers, better use CURL.PerformAsync as it is more efficient, but transfers can timeout if FileMaker is busy.

Examples

Run a query in background:

Set Variable [ $json ; Value: Get(ScriptParameter) ] 
Set Variable [ $URL ; Value: "https://yourdomain.com/yourscript.php" ] 

Set Variable [ $curl ; Value: MBS("CURL.New") ] 
# configure transfer
Set Variable [ $r ; Value: MBS("CURL.SetOptionURL"; $curl; $URL) ] 
Set Variable [ $r ; Value: MBS("CURL.SetOptionPostFields"; $curl; $json) ] 
Set Variable [ $r ; Value: MBS("CURL.SetOptionHTTPHeader"; $curl; "Content-Type: application/json") ] 

# Let the evaluate then free the transfer
# Set Variable [ $r ; Value: MBS("CURL.SetFinishedEvaluate"; $curl; "MBS(\"CURL.Release\"; $$ID$$)" ) ] 
# or run a script to handle result
Set Variable [ $r ; Value: MBS("CURL.SetFinishedScript"; $curl; Get(FileName); "Transfer Finished" ) ] 

# run in background thread asynchronously
Set Variable [ $r ; Value: MBS("CURL.PerformInBackground"; $curl) ]

SendLog(JSON) custom function to send message to log server:

Let([
      curl = MBS("CURL.New");
      r = MBS("CURL.SetOptionURL"; curl; "https://www.your-domain.com/filemaker/log.php");
      r = MBS("CURL.SetOptionHTTPHeader"; curl; "Content-Type: application/json");
      r = MBS("CURL.SetOptionPostFields"; curl; json);
      // in case of success, just release it.
      r = MBS("CURL.SetSucceededEvaluate"; curl; "MBS(\"CURL.Release\"; $$ID$$)" );
      // in case of failure, trigger script to log error
      r = MBS("CURL.SetFailedScript"; curl; Get(FileName); "Transfer Failed" );
      // start sending in background
      sent = MBS("CURL.PerformInBackground"; curl)
]; sent)

See also

Release notes

Example Databases

Blog Entries

This function checks for a license.

Created 18th August 2014, last changed 27th December 2023


CURL.PerformAsync - CURL.ProcessRelativeURL