HttpCurl Unicode C++ Reference Documentation

CkHttpCurlW

Current Version: 11.5.0

The Chilkat.HttpCurl class executes curl commands and can automatically resolve dependent values needed by a request.

Variables such as {{access_token}}, {{site_id}}, or {{drive_id}} may appear in URLs, headers, query parameters, or request bodies. If a variable is not yet known, HttpCurl builds an execution plan from previously defined curl functions, runs the required steps, extracts values from JSON responses, and then executes the final target request.

Use AddFunction with AddOutput or AddOutput2 to define how prerequisite values are obtained. Use SetVar to provide known values, ClearVar to invalidate them, and ExaminePlan to inspect the dependency plan before running it.

After DoYourThing completes, the response can be read as text, binary data, JSON, XML, or streamed directly to a file. Diagnostic properties such as StatusCode, FailReason, FailedCurl, and LastErrorText help troubleshoot failures.

Note: Chilkat's HttpCurl does not derived from curl/libcurl, and does not wrap libcurl.

See Also:
  • HttpCurl Overview — A more complete introduction to the HttpCurl class, including concepts, variable substitution, dependency resolution, and workflow examples.
  • Dependency Engine — Explains how HttpCurl automatically derives execution plans, resolves unknown variables, determines prerequisite requests, and manages cached variables.

Object Creation

// Local variable on the stack
CkHttpCurlW obj;

// Dynamically allocate/delete
CkHttpCurlW *pObj = new CkHttpCurlW();
// ...
delete pObj;

Properties

DebugLogFilePath
void get_DebugLogFilePath(CkString &str);
const wchar_t *debugLogFilePath(void);
void put_DebugLogFilePath(const wchar_t *str);

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
EnableBodyVars
bool get_EnableBodyVars(void);
void put_EnableBodyVars(bool newVal);
Introduced in version 11.5.0

Enables variable substitution in the body of the request. The default value is true.

top
FailedCurl
void get_FailedCurl(CkString &str);
const wchar_t *failedCurl(void);
Introduced in version 11.5.0

Set to the specific curl command in the execution plan that failed.

top
FailReason
int get_FailReason(void);
Introduced in version 11.5.0

Set to an integer value indicating the reason for failure for the methods DoYourThing and ExaminePlan

Possible values are:

  1. No error - the method succeeded or hasn't yet been called.
  2. curl command syntax error.
  3. HTTP response status code indidcates an authentication (401) or authorization (403) error.
  4. HTTP response status code indicates an error, but not an authentication or authorization error.
  5. HTTP communications failure.
  6. Impossible to derive an execution plan from defined outputs and inputs.
  7. A step in the execution plan did not resolve any dependency variables.
  8. Failed to get curl data from a local file source (see the note below).
  9. If we are within a Chilkat.Js context and don't have permission to read the local filesystem.
  10. Chilkat has not been successfully unlocked by previously and successfully calling UnlockBundle.
  11. Failed to open or create the local output file (if a curl option directed output to a file).

Note: curl can read data from a local file and send it in a request (usually POST/PUT) using special syntax:

  • -d @file.txt → reads the file and sends it as request body (form-style encoding).
  • --data-binary @file.bin → sends raw file contents exactly as-is.
  • -F "file=@file.txt" → uploads the file as multipart/form-data.

The @ tells curl to load the data from a local file instead of using a literal string.

top
HeartbeatMs
int get_HeartbeatMs(void);
void put_HeartbeatMs(int newVal);
Introduced in version 11.5.0

Specifies the interval, in milliseconds, between AbortCheck event callbacks.

This allows an application to periodically decide whether a long-running operation should be aborted.

The default value is 0, which means no AbortCheck callbacks are generated.

top
LastErrorHtml
void get_LastErrorHtml(CkString &str);
const wchar_t *lastErrorHtml(void);

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
void get_LastErrorText(CkString &str);
const wchar_t *lastErrorText(void);

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
void get_LastErrorXml(CkString &str);
const wchar_t *lastErrorXml(void);

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
bool get_LastMethodSuccess(void);
void put_LastMethodSuccess(bool newVal);

Indicates the success or failure of the most recent method call: true means success, false means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.

top
ResponseBodyStr
void get_ResponseBodyStr(CkString &str);
const wchar_t *responseBodyStr(void);
Introduced in version 11.5.0

Returns the HTTP response body from the last call to DoYourThing .

top
ResponseFilePath
void get_ResponseFilePath(CkString &str);
const wchar_t *responseFilePath(void);
void put_ResponseFilePath(const wchar_t *str);
Introduced in version 11.5.0

Set this property to the path of a file to stream the response body to a file. If the response is streamed to a file, it will not be available in ResponseBodyStr , GetResponseSb , or GetResponseBd .

top
StatusCode
int get_StatusCode(void);
Introduced in version 11.5.0

Returns the HTTP status code from the last call to DoYourThing. A value of 0 indicates no response header was received.

top
UncommonOptions
void get_UncommonOptions(CkString &str);
const wchar_t *uncommonOptions(void);
void put_UncommonOptions(const wchar_t *str);
Introduced in version 11.5.0

Provides a comma-separated list of uncommon option keywords.

This property defaults to an empty string and should normally remain empty.

top
VerboseLogging
bool get_VerboseLogging(void);
void put_VerboseLogging(bool newVal);

If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
void get_Version(CkString &str);
const wchar_t *version(void);

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

AddFunction
bool AddFunction(const wchar_t *funcName, const wchar_t *curl);
Introduced in version 11.5.0

Adds a named curl function that can be used in dependency resolution. Inputs required by the curl function are indicated by the variable names enclosed in {{ and }}. Outputs are defined in one or more calls to AddOutput .

Returns true for success, false for failure.

More Information and Examples
top
AddOutput
bool AddOutput(const wchar_t *funcName, const wchar_t *jsonPath, const wchar_t *varName);
Introduced in version 11.5.0

Adds or updates a defined output for a dependency resolution curl function previously defined by calling AddFunction. The jsonPath is the JSON path in the JSON response body where the varName's value is located. If either the funcName or jsonPath already exist for the funcName, then the output is updated.

Returns true for success, false for failure.

More Information and Examples
top
AddOutput2
bool AddOutput2(const wchar_t *funcName, const wchar_t *arrayPath, const wchar_t *wherePath, const wchar_t *whereValue, bool caseSensitive, const wchar_t *subPath, const wchar_t *varName);
Introduced in version 11.5.0

Adds or updates an output variable definition for a dependency-resolution curl function previously created by calling AddFunction. Use this method when the curl response is JSON containing an array of objects, and a value needs to be extracted from one specific array element.

The method searches the array located at arrayPath, finds the array element where the value at wherePath matches whereValue, and then extracts the value at subPath. The extracted value is assigned to the variable named by varName.

The wherePath and subPath values are paths relative to each individual array element. The comparison between whereValue and the JSON value found at wherePath is either case-sensitive or case-insensitive depending on the value of caseSensitive.

Parameters

  • funcName — The name of the curl function previously added by calling AddFunction. The output definition is associated with this function.
  • arrayPath — The JSON path identifying the array of records within the JSON response.
  • wherePath — A relative JSON path within each array element used to locate the matching record.
  • whereValue — The value to match against the JSON value found at wherePath.
  • caseSensitive — If true, the comparison between whereValue and the JSON value is case-sensitive. If false, the comparison is case-insensitive.
  • subPath — A relative JSON path within the matched array element identifying the value to extract.
  • varName — The name of the variable that will receive the extracted value.

Example

Given the following JSON response:

{
  "drives": [
    {
      "name": "Documents",
      "id": "A123"
    },
    {
      "name": "Shared",
      "id": "B456"
    }
  ]
}

The following call:

AddOutput2("GetDrive","drives","name","shared",false,"id","drive_id")

searches the drives array for the element whose name matches "shared" using case-insensitive comparison. The matching element is:

{
  "name": "Shared",
  "id": "B456"
}

The value of id is extracted and assigned to the variable drive_id, resulting in:

drive_id = "B456"

Returns true for success, false for failure.

top
AddTargetOutput
void AddTargetOutput(const wchar_t *jsonPath, const wchar_t *varName);
Introduced in version 11.5.0

Adds an automatically mapped variable for the target curl command. When a JSON response is received from a curl request, the value at the JSON path specified by jsonPath is extracted (if present) and assigned to the variable named by varName.

This is useful in common workflows where one request returns an identifier (such as an `id`) that must be reused in a subsequent curl request.

Returns true for success, false for failure.

More Information and Examples
top
ClearTargetOutput
void ClearTargetOutput(const wchar_t *varName);
Introduced in version 11.5.0

Clears (undefines) the target output for the specified varName. If varName equals "*", then all target outputs are cleared.

top
ClearVar
void ClearVar(const wchar_t *varName);
Introduced in version 11.5.0

Undefines the variable with the specified name. If varName equals "*", then all variables are cleared.

Returns true for success, false for failure.

top
DoYourThing
bool DoYourThing(const wchar_t *targetCurl);
Introduced in version 11.5.0

Runs a the targetCurl command specified in targetCurl. If the targetCurl contains variable names enclosed in {{ and }}, then an execution plan is constructed from defined functions and outputs to resolve unknown variables, and the execution plan is run. The final step in the execution plan is always the targetCurl command.

Returns success (true) if a response was received, in which case the response status code will be available in StatusCode and the content of the response body will be available in one of two places:

Assuming the HTTP response is JSON, the target outputs (variables) specified by prior calls to AddTargetOutput will be populated by applying each variable's JSON path to the response JSON.

Returns true for success, false for failure.

top
DoYourThingAsync (1)
CkTaskW *DoYourThingAsync(const wchar_t *targetCurl);
Introduced in version 11.5.0

Creates an asynchronous task to call the DoYourThing method with the arguments provided.

Note: Async method event callbacks happen in the background thread. Accessing and updating UI elements existing in the main thread may require special considerations.

Note: The application is responsible for deleting (via the C++ delete operator) the object returned by this method.

Returns NULL on failure

top
ExaminePlan
bool ExaminePlan(const wchar_t *curl, CkJsonObjectW &json);
Introduced in version 11.5.0

Used for debugging. Returns in json the plan of execution that would occur for the curl based on the variables that are either unknown or already known. The plan of execution is what would occur if DoYourThing was called with the current state of knowledge.

If no execution plan is possible with the current known inputs and outputs, then json provides information about what is missing and the method returns false.

Returns true for success, false for failure.

top
GetAllVars
void GetAllVars(CkJsonObjectW &json);
Introduced in version 11.5.0

Returns all defined variables in json.

More Information and Examples
top
GetResponseBd
bool GetResponseBd(CkBinDataW &bd);
Introduced in version 11.5.0

Appends to bd the HTTP response body from the last call to DoYourThing.

Returns true for success, false for failure.

top
GetResponseJarr
bool GetResponseJarr(CkJsonArrayW &jarr);
Introduced in version 11.5.0

Writes to jarr the HTTP response body from the last call to DoYourThing.

Returns true for success, false for failure.

top
GetResponseJson
bool GetResponseJson(CkJsonObjectW &json);
Introduced in version 11.5.0

Writes to json the HTTP response body from the last call to DoYourThing.

Returns true for success, false for failure.

top
GetResponseSb
bool GetResponseSb(CkStringBuilderW &sb);
Introduced in version 11.5.0

Appends to sb the HTTP response body from the last call to DoYourThing.

Returns true for success, false for failure.

top
GetResponseXml
bool GetResponseXml(CkXmlW &xml);
Introduced in version 11.5.0

Writes to xml the HTTP response body from the last call to DoYourThing.

Returns true for success, false for failure.

top
GetVar
bool GetVar(const wchar_t *varName, CkString &outStr);
const wchar_t *getVar(const wchar_t *varName);
Introduced in version 11.5.0

Retrieves the current value of the variable specified by varName.

Returns true for success, false for failure.

top
SetAuth
bool SetAuth(CkJsonObjectW &json);
Introduced in version 11.5.0

Sets authorization information that is applied to all calls to DoYourThing . See the examples below for details.

Returns true for success, false for failure.

top
SetVar
void SetVar(const wchar_t *varName, const wchar_t *varValue);
Introduced in version 11.5.0

Sets the value of a variable to be replaced in curl commands. Variable names are enclosed in {{ and }} and can occur in the path, query params, or the body of the request.

Returns true for success, false for failure.

top
ToRawRequest
bool ToRawRequest(const wchar_t *curlCommand, CkStringBuilderW &sb);
Introduced in version 11.5.0

Used for debugging purposes. This method behaves the same as DoYourThing , but only converts the curlCommand to an HTTP request message in sb containing the full structure:

  • start line
  • headers
  • optional body or multipart body

It does not actually send the HTTP request.

Returns true for success, false for failure.

top
VarDefined
bool VarDefined(const wchar_t *varName);
Introduced in version 11.5.0

Returns true if the varName is defined, otherwise returns false. Setting varName to "!" checks whether all target output variables have been defined. It returns true if every target output is set, and false if any are missing.

top

Events

To implement an event callback, your application would define and implement a class that inherits from CkBaseProgressW. Your application can implement methods to override some or all of the default/empty method implementations of the CkBaseProgressW base class.

For example:

  CkHttpCurlW httpcurl;

  MyHttpCurlProgressW callbackObj;

  httpcurl.put_EventCallbackObject(&callbackObj);

MyHttpCurlProgressW example:

#include "CkBaseProgressW.h"

class MyHttpCurlProgressW : public CkBaseProgressW {

  public:
    MyHttpCurlProgressW();
    virtual ~MyHttpCurlProgressW();

    void AbortCheck(bool  *abort);

    void PercentDone(int pctDone, bool  *abort);

    void ProgressInfo(const wchar_t *name, const wchar_t *value);

    void TaskCompleted(CkTaskW &task);

};
AbortCheck
void AbortCheck(bool *abort);

Enables a method call to be aborted by triggering the AbortCheck event at intervals defined by the HeartbeatMs property. If HeartbeatMs is set to its default value of 0, no events will occur. For instance, set HeartbeatMs to 200 to trigger 5 AbortCheck events per second.

More Information and Examples
top
PercentDone
void PercentDone(int pctDone, bool *abort);

This provides the percentage completion for any method involving network communications or time-consuming processing, assuming the progress can be measured as a percentage. This event is triggered only when it's possible and logical to express the operation's progress as a percentage. The pctDone argument will range from 1 to 100. For methods that finish quickly, the number of PercentDone callbacks may vary, but the final callback will have pctDone equal to 100. For longer operations, callbacks will not exceed one per percentage point (e.g., 1, 2, 3, ..., 98, 99, 100).

The PercentDone callback also acts as an AbortCheck event. For fast methods where PercentDone fires, an AbortCheck event may not trigger since the PercentDone callback already provides an opportunity to abort. For longer operations, where time between PercentDone callbacks is extended, AbortCheck callbacks enable more responsive operation termination.

To abort the operation, set the abort output argument to true. This will cause the method to terminate and return a failure status or corresponding failure value.

More Information and Examples
top
ProgressInfo
void ProgressInfo(const wchar_t *name, const wchar_t *value);

This event callback provides tag name/value pairs that detail what occurs during a method call. To discover existing tag names, create code to handle the event, emit the pairs, and review them. Most tag names are self-explanatory.

More Information and Examples
top
TaskCompleted
void TaskCompleted(CkTaskW &task);

Called from the background thread when an asynchronous task completes.

top