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

CURL.PerformAsync

Perform a curl transfer asynchronously.

Component Version macOS Windows Linux Server iOS SDK
CURL 5.2 ✅ Yes ✅ Yes ✅ Yes ❌ No ✅ Yes
MBS( "CURL.PerformAsync"; curl )   More

Parameters

Parameter Description Example
curl The CURL session handle. $curl

Result

Returns OK or error.

Description

Perform a curl transfer asynchronously.
The query is enqueued and run by the plugin in background.
When transfer is finished, a script is triggered if you set one with CURL.SetFinishedScript function.
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 CURL.Perform 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.

While transfer is running, your FileMaker application is not blocked. It's useful to show progress with using CURL.SetUpdateProgressDialog. 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.

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

We run the transfer on the main thread and continue processing when FileMaker is idle. Transfers can timeout when a dialog blocks processing for a minute. Async is more efficient with lots of transfers compared to CURL.PerformInBackground, but the later can run when dialogs are open. Please use CURL.PerformInBackground on server side scripts.

Version 14.0 enables this function for server use in a limited environment. You need to loop and make script pauses for the transfers to run. This runs all asynchronous transfers together while a pause happens, while CURL.PerformInBackground has a thread per request to do it independent in background. Server side we do not trigger scripts to notify about finished state or progress.

Examples

Start a few transfers:

Go to Record/Request/Page [First]
Loop
    Set Variable [$curl; Value:MBS("CURL.New")]
    Set Variable [$r; Value:MBS("CURL.SetFinishedScript"; $curl; Get(FileName); "DownloadFinished")]
    Set Variable [$r; Value:MBS("CURL.SetProgressScript"; $curl; Get(FileName); "ProgressScript")]
    Set Variable [$r; Value:MBS("CURL.SetOptionURL"; $curl; Download Async::URL)]
    Set Variable [$r; Value:MBS("CURL.SetTag"; $curl; Get(RecordID))]
    Set Field [Download Async::Progress; 0]
    Set Field [Download Async::CURL Handle; $curl]
    Set Variable [$r; Value:MBS("CURL.PerformAsync"; $curl)]
    If [MBS("IsError")]
        Show Custom Dialog ["CURL Error"; $r]
    End If
    Commit Records/Requests [Skip data entry validation; No dialog]
    Go to Record/Request/Page [Next; Exit after last]
End Loop

See also

Example Databases

Blog Entries

This function checks for a license.

Created 12nd July 2015, last changed 21st December 2023


CURL.Perform - CURL.PerformInBackground