![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java JavaScript Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Tcl) curl How Known Variables Reduce Execution StepsSee more CURL ExamplesThis example demonstrates how previously resolved values can simplify future executions. When As each command runs, any defined output variables are stored in the If another In other words, each call to This demonstrates that dependency resolution is dynamic and incremental: only missing inputs trigger additional steps, while previously computed values are reused automatically. Note: This example requires Chilkat v11.5.0 or greater. For more information, see https://www.chilkatsoft.com/curl_dependency_engine.asp
load ./chilkat.dll set success 0 set success 0 # ----------------------------------------------------------------------------- # NOTE: # This example builds on the earlier multi-step dependency example, where the # execution plan required multiple curl commands (getSite → getDrives → target). # # If you have not seen that example, refer to it here: curl Multi-Step Dependency # # # In this example, we demonstrate how previously resolved variables (site_id, # drive_id, etc.) are reused across multiple calls to DoYourThing, resulting # in simpler execution plans for subsequent requests. # ----------------------------------------------------------------------------- set httpCurl [new_CkHttpCurl] # The final curl command we want to execute. # It depends on {{drive_id}}, which may or may not already be known. set targetCurl "curl -X GET https://graph.microsoft.com/v1.0/drives/{{drive_id}}/root/children" # Define helper function to get drives (produces drive_id, requires site_id) set fnName "getDrives" CkHttpCurl_AddFunction $httpCurl $fnName "curl -X GET https://graph.microsoft.com/v1.0/sites/{{site_id}}/drives" set jsonPath "value[0].id" CkHttpCurl_AddOutput $httpCurl $fnName $jsonPath "drive_id" # Define helper function to get site (produces site_id, requires site_name) set fnName "getSite" CkHttpCurl_AddFunction $httpCurl $fnName "GET https://graph.microsoft.com/v1.0/sites/root:/sites/{{site_name}}" set jsonPath "id" CkHttpCurl_AddOutput $httpCurl $fnName $jsonPath "site_id" # Provide the initial known input. CkHttpCurl_SetVar $httpCurl "site_name" "test" # Configure OAuth2 authentication (client credentials with secrets) set jsonOAuth2 [new_CkJsonObject] CkJsonObject_put_EnableSecrets $jsonOAuth2 1 CkJsonObject_UpdateString $jsonOAuth2 "oauth2.client_id" "!!sharepoint|oauth2|client_id" CkJsonObject_UpdateString $jsonOAuth2 "oauth2.client_secret" "!!sharepoint|oauth2|client_secret" CkJsonObject_UpdateString $jsonOAuth2 "oauth2.scope" "https://graph.microsoft.com/.default" CkJsonObject_UpdateString $jsonOAuth2 "oauth2.token_endpoint" "!!sharepoint|oauth2|token_endpoint" CkHttpCurl_SetAuth $httpCurl $jsonOAuth2 # ----------------------------------------------------------------------------- # EXAMINE THE EXECUTION PLAN (BEFORE RUNNING): # At this point, drive_id and site_id are NOT known. # We can inspect the plan that will be executed without sending any requests. # ----------------------------------------------------------------------------- set planJson [new_CkJsonObject] CkJsonObject_put_EmitCompact $planJson 0 set success [CkHttpCurl_ExaminePlan $httpCurl $targetCurl $planJson] puts "Execution plan before first call:" puts [CkJsonObject_emit $planJson] # Expected output: # # { # "plan": [{ # "function": "getSite", # "inputs": ["site_name"], # "outputs": ["site_id"] # },{ # "function": "getDrives", # "inputs": ["site_id"], # "outputs": ["drive_id"] # },{ # "function": "targetCurl", # "inputs": ["drive_id"], # "outputs": [] # }] # } # ----------------------------------------------------------------------------- # FIRST CALL: # At this point, drive_id and site_id are NOT known. # The execution plan will include all required steps: # # 1) getSite → produces site_id # 2) getDrives → produces drive_id # 3) targetCurl → uses drive_id # ----------------------------------------------------------------------------- set success [CkHttpCurl_DoYourThing $httpCurl $targetCurl] if {$success == 0} then { puts [CkHttpCurl_lastErrorText $httpCurl] delete_CkHttpCurl $httpCurl delete_CkJsonObject $jsonOAuth2 delete_CkJsonObject $planJson exit } puts "First call completed." puts "site_id = [CkHttpCurl_getVar $httpCurl site_id]" puts "drive_id = [CkHttpCurl_getVar $httpCurl drive_id]" # ----------------------------------------------------------------------------- # SECOND CALL (DIFFERENT TARGET): # Now that site_id is already known, we can run another curl command that # depends only on site_id. No need to call getSite again. # # Execution plan: # # 1) targetCurl2 → uses existing site_id # ----------------------------------------------------------------------------- set targetCurl2 "curl -X GET https://graph.microsoft.com/v1.0/sites/{{site_id}}" set success [CkHttpCurl_ExaminePlan $httpCurl $targetCurl2 $planJson] puts puts [CkJsonObject_emit $planJson] # Expected output: # # { # "plan": [{ # "function": "targetCurl", # "inputs": ["site_id"], # "outputs": [] # }] # } set success [CkHttpCurl_DoYourThing $httpCurl $targetCurl] if {$success == 0} then { puts [CkHttpCurl_lastErrorText $httpCurl] delete_CkHttpCurl $httpCurl delete_CkJsonObject $jsonOAuth2 delete_CkJsonObject $planJson exit } puts "Second call completed (used existing site_id)." # ----------------------------------------------------------------------------- # THIRD CALL (ORIGINAL TARGET AGAIN): # drive_id is already known from the first call. # Therefore, no helper functions are needed this time. # # Execution plan: # # 1) targetCurl → uses existing drive_id # ----------------------------------------------------------------------------- set success [CkHttpCurl_ExaminePlan $httpCurl $targetCurl $planJson] puts puts [CkJsonObject_emit $planJson] # Expected output: # # { # "plan": [{ # "function": "targetCurl", # "inputs": ["drive_id"], # "outputs": [] # }] # } set success [CkHttpCurl_DoYourThing $httpCurl $targetCurl] if {$success == 0} then { puts [CkHttpCurl_lastErrorText $httpCurl] delete_CkHttpCurl $httpCurl delete_CkJsonObject $jsonOAuth2 delete_CkJsonObject $planJson exit } puts "Third call completed." puts "No dependency resolution was needed because all inputs were already known." delete_CkHttpCurl $httpCurl delete_CkJsonObject $jsonOAuth2 delete_CkJsonObject $planJson |
||||
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.