Chilkat Online Tools

GetPipelineState unicodeC Example

AWS CodePipeline

#include <C_CkRestW.h>
#include <C_CkAuthAwsW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkRestW rest;
    BOOL success;
    HCkAuthAwsW authAws;
    HCkJsonObjectW json;
    HCkStringBuilderW sbRequestBody;
    HCkStringBuilderW sbResponseBody;
    int respStatusCode;
    HCkJsonObjectW jResp;
    const wchar_t *PipelineExecutionId;
    const wchar_t *Status;
    const wchar_t *DisabledReason;
    int Enabled;
    int LastChangedAt;
    const wchar_t *LastChangedBy;
    const wchar_t *latestExecutionPipelineExecutionId;
    const wchar_t *latestExecutionStatus;
    const wchar_t *stageName;
    int j;
    int count_j;
    const wchar_t *actionName;
    int Created;
    const wchar_t *RevisionChangeId;
    const wchar_t *RevisionId;
    const wchar_t *entityUrl;
    const wchar_t *ActionExecutionId;
    const wchar_t *Code;
    const wchar_t *Message;
    const wchar_t *ExternalExecutionId;
    const wchar_t *ExternalExecutionUrl;
    int LastStatusChange;
    const wchar_t *LastUpdatedBy;
    int PercentComplete;
    const wchar_t *Summary;
    const wchar_t *Token;
    const wchar_t *revisionUrl;
    int created;
    const wchar_t *pipelineName;
    int pipelineVersion;
    int updated;
    int i;
    int count_i;

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    rest = CkRestW_Create();

    authAws = CkAuthAwsW_Create();
    CkAuthAwsW_putAccessKey(authAws,L"AWS_ACCESS_KEY");
    CkAuthAwsW_putSecretKey(authAws,L"AWS_SECRET_KEY");

    // Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
    CkAuthAwsW_putRegion(authAws,L"us-west-2");
    CkAuthAwsW_putServiceName(authAws,L"codepipeline");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    CkRestW_SetAuthAws(rest,authAws);

    // URL: https://codepipeline.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = CkRestW_Connect(rest,L"codepipeline.us-west-2.amazonaws.com",443,TRUE,TRUE);
    if (success != TRUE) {
        wprintf(L"ConnectFailReason: %d\n",CkRestW_getConnectFailReason(rest));
        wprintf(L"%s\n",CkRestW_lastErrorText(rest));
        CkRestW_Dispose(rest);
        CkAuthAwsW_Dispose(authAws);
        return;
    }

    // The following code creates the JSON request body.
    // The JSON created by this code is shown below.

    // Use this online tool to generate code from sample JSON:
    // Generate Code to Create JSON

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"name",L"string");

    // The JSON request body created by the above code:

    // {
    //   "name": "string"
    // }

    CkRestW_AddHeader(rest,L"Content-Type",L"application/x-amz-json-1.1");
    CkRestW_AddHeader(rest,L"X-Amz-Target",L"CodePipeline_20150709.GetPipelineState");

    sbRequestBody = CkStringBuilderW_Create();
    CkJsonObjectW_EmitSb(json,sbRequestBody);
    sbResponseBody = CkStringBuilderW_Create();
    success = CkRestW_FullRequestSb(rest,L"POST",L"/",sbRequestBody,sbResponseBody);
    if (success != TRUE) {
        wprintf(L"%s\n",CkRestW_lastErrorText(rest));
        CkRestW_Dispose(rest);
        CkAuthAwsW_Dispose(authAws);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbRequestBody);
        CkStringBuilderW_Dispose(sbResponseBody);
        return;
    }

    respStatusCode = CkRestW_getResponseStatusCode(rest);
    wprintf(L"response status code = %d\n",respStatusCode);
    if (respStatusCode != 200) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkRestW_responseHeader(rest));
        wprintf(L"Response Body:\n");
        wprintf(L"%s\n",CkStringBuilderW_getAsString(sbResponseBody));
        CkRestW_Dispose(rest);
        CkAuthAwsW_Dispose(authAws);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbRequestBody);
        CkStringBuilderW_Dispose(sbResponseBody);
        return;
    }

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);

    // The following code parses the JSON response.
    // A sample JSON response is shown below the sample code.

    // Use this online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
    // See this example explaining how this memory should be used: const char * functions.

    created = CkJsonObjectW_IntOf(jResp,L"created");
    pipelineName = CkJsonObjectW_stringOf(jResp,L"pipelineName");
    pipelineVersion = CkJsonObjectW_IntOf(jResp,L"pipelineVersion");
    updated = CkJsonObjectW_IntOf(jResp,L"updated");
    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"stageStates");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        PipelineExecutionId = CkJsonObjectW_stringOf(jResp,L"stageStates[i].inboundExecution.pipelineExecutionId");
        Status = CkJsonObjectW_stringOf(jResp,L"stageStates[i].inboundExecution.status");
        DisabledReason = CkJsonObjectW_stringOf(jResp,L"stageStates[i].inboundTransitionState.disabledReason");
        Enabled = CkJsonObjectW_IntOf(jResp,L"stageStates[i].inboundTransitionState.enabled");
        LastChangedAt = CkJsonObjectW_IntOf(jResp,L"stageStates[i].inboundTransitionState.lastChangedAt");
        LastChangedBy = CkJsonObjectW_stringOf(jResp,L"stageStates[i].inboundTransitionState.lastChangedBy");
        latestExecutionPipelineExecutionId = CkJsonObjectW_stringOf(jResp,L"stageStates[i].latestExecution.pipelineExecutionId");
        latestExecutionStatus = CkJsonObjectW_stringOf(jResp,L"stageStates[i].latestExecution.status");
        stageName = CkJsonObjectW_stringOf(jResp,L"stageStates[i].stageName");
        j = 0;
        count_j = CkJsonObjectW_SizeOfArray(jResp,L"stageStates[i].actionStates");
        while (j < count_j) {
            CkJsonObjectW_putJ(jResp,j);
            actionName = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].actionName");
            Created = CkJsonObjectW_IntOf(jResp,L"stageStates[i].actionStates[j].currentRevision.created");
            RevisionChangeId = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].currentRevision.revisionChangeId");
            RevisionId = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].currentRevision.revisionId");
            entityUrl = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].entityUrl");
            ActionExecutionId = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.actionExecutionId");
            Code = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.errorDetails.code");
            Message = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.errorDetails.message");
            ExternalExecutionId = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.externalExecutionId");
            ExternalExecutionUrl = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.externalExecutionUrl");
            LastStatusChange = CkJsonObjectW_IntOf(jResp,L"stageStates[i].actionStates[j].latestExecution.lastStatusChange");
            LastUpdatedBy = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.lastUpdatedBy");
            PercentComplete = CkJsonObjectW_IntOf(jResp,L"stageStates[i].actionStates[j].latestExecution.percentComplete");
            latestExecutionStatus = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.status");
            Summary = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.summary");
            Token = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].latestExecution.token");
            revisionUrl = CkJsonObjectW_stringOf(jResp,L"stageStates[i].actionStates[j].revisionUrl");
            j = j + 1;
        }

        i = i + 1;
    }

    // A sample JSON response body parsed by the above code:

    // {
    //   "created": number,
    //   "pipelineName": "string",
    //   "pipelineVersion": number,
    //   "stageStates": [
    //     {
    //       "actionStates": [
    //         {
    //           "actionName": "string",
    //           "currentRevision": {
    //             "created": number,
    //             "revisionChangeId": "string",
    //             "revisionId": "string"
    //           },
    //           "entityUrl": "string",
    //           "latestExecution": {
    //             "actionExecutionId": "string",
    //             "errorDetails": {
    //               "code": "string",
    //               "message": "string"
    //             },
    //             "externalExecutionId": "string",
    //             "externalExecutionUrl": "string",
    //             "lastStatusChange": number,
    //             "lastUpdatedBy": "string",
    //             "percentComplete": number,
    //             "status": "string",
    //             "summary": "string",
    //             "token": "string"
    //           },
    //           "revisionUrl": "string"
    //         }
    //       ],
    //       "inboundExecution": {
    //         "pipelineExecutionId": "string",
    //         "status": "string"
    //       },
    //       "inboundTransitionState": {
    //         "disabledReason": "string",
    //         "enabled": boolean,
    //         "lastChangedAt": number,
    //         "lastChangedBy": "string"
    //       },
    //       "latestExecution": {
    //         "pipelineExecutionId": "string",
    //         "status": "string"
    //       },
    //       "stageName": "string"
    //     }
    //   ],
    //   "updated": number
    // }


    CkRestW_Dispose(rest);
    CkAuthAwsW_Dispose(authAws);
    CkJsonObjectW_Dispose(json);
    CkStringBuilderW_Dispose(sbRequestBody);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }