Chilkat Online Tools

BatchGetReports C Example

AWS CodeBuild

#include <C_CkRest.h>
#include <C_CkAuthAws.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>

void ChilkatSample(void)
    {
    HCkRest rest;
    BOOL success;
    HCkAuthAws authAws;
    HCkJsonObject json;
    HCkStringBuilder sbRequestBody;
    HCkStringBuilder sbResponseBody;
    int respStatusCode;
    HCkJsonObject jResp;
    const char *arn;
    int BranchCoveragePercentage;
    int BranchesCovered;
    int BranchesMissed;
    int LineCoveragePercentage;
    int LinesCovered;
    int LinesMissed;
    int created;
    const char *executionId;
    int expired;
    const char *ExportConfigType;
    const char *Bucket;
    const char *BucketOwner;
    int EncryptionDisabled;
    const char *EncryptionKey;
    const char *Packaging;
    const char *Path;
    const char *name;
    const char *reportGroupArn;
    const char *status;
    int DurationInNanoSeconds;
    int v_String;
    int Total;
    int truncated;
    const char *v_type;
    const char *strVal;
    int i;
    int count_i;

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

    rest = CkRest_Create();

    authAws = CkAuthAws_Create();
    CkAuthAws_putAccessKey(authAws,"AWS_ACCESS_KEY");
    CkAuthAws_putSecretKey(authAws,"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.)
    CkAuthAws_putRegion(authAws,"us-west-2");
    CkAuthAws_putServiceName(authAws,"codebuild");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    CkRest_SetAuthAws(rest,authAws);

    // URL: https://codebuild.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = CkRest_Connect(rest,"codebuild.us-west-2.amazonaws.com",443,TRUE,TRUE);
    if (success != TRUE) {
        printf("ConnectFailReason: %d\n",CkRest_getConnectFailReason(rest));
        printf("%s\n",CkRest_lastErrorText(rest));
        CkRest_Dispose(rest);
        CkAuthAws_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 = CkJsonObject_Create();
    CkJsonObject_UpdateString(json,"reportArns[0]","string");

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

    // {
    //   "reportArns": [
    //     "string"
    //   ]
    // }

    CkRest_AddHeader(rest,"Content-Type","application/x-amz-json-1.1");
    CkRest_AddHeader(rest,"X-Amz-Target","CodeBuild_20161006.BatchGetReports");

    sbRequestBody = CkStringBuilder_Create();
    CkJsonObject_EmitSb(json,sbRequestBody);
    sbResponseBody = CkStringBuilder_Create();
    success = CkRest_FullRequestSb(rest,"POST","/",sbRequestBody,sbResponseBody);
    if (success != TRUE) {
        printf("%s\n",CkRest_lastErrorText(rest));
        CkRest_Dispose(rest);
        CkAuthAws_Dispose(authAws);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbRequestBody);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    respStatusCode = CkRest_getResponseStatusCode(rest);
    printf("response status code = %d\n",respStatusCode);
    if (respStatusCode != 200) {
        printf("Response Header:\n");
        printf("%s\n",CkRest_responseHeader(rest));
        printf("Response Body:\n");
        printf("%s\n",CkStringBuilder_getAsString(sbResponseBody));
        CkRest_Dispose(rest);
        CkAuthAws_Dispose(authAws);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbRequestBody);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    jResp = CkJsonObject_Create();
    CkJsonObject_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.

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"reports");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        arn = CkJsonObject_stringOf(jResp,"reports[i].arn");
        BranchCoveragePercentage = CkJsonObject_IntOf(jResp,"reports[i].codeCoverageSummary.branchCoveragePercentage");
        BranchesCovered = CkJsonObject_IntOf(jResp,"reports[i].codeCoverageSummary.branchesCovered");
        BranchesMissed = CkJsonObject_IntOf(jResp,"reports[i].codeCoverageSummary.branchesMissed");
        LineCoveragePercentage = CkJsonObject_IntOf(jResp,"reports[i].codeCoverageSummary.lineCoveragePercentage");
        LinesCovered = CkJsonObject_IntOf(jResp,"reports[i].codeCoverageSummary.linesCovered");
        LinesMissed = CkJsonObject_IntOf(jResp,"reports[i].codeCoverageSummary.linesMissed");
        created = CkJsonObject_IntOf(jResp,"reports[i].created");
        executionId = CkJsonObject_stringOf(jResp,"reports[i].executionId");
        expired = CkJsonObject_IntOf(jResp,"reports[i].expired");
        ExportConfigType = CkJsonObject_stringOf(jResp,"reports[i].exportConfig.exportConfigType");
        Bucket = CkJsonObject_stringOf(jResp,"reports[i].exportConfig.s3Destination.bucket");
        BucketOwner = CkJsonObject_stringOf(jResp,"reports[i].exportConfig.s3Destination.bucketOwner");
        EncryptionDisabled = CkJsonObject_IntOf(jResp,"reports[i].exportConfig.s3Destination.encryptionDisabled");
        EncryptionKey = CkJsonObject_stringOf(jResp,"reports[i].exportConfig.s3Destination.encryptionKey");
        Packaging = CkJsonObject_stringOf(jResp,"reports[i].exportConfig.s3Destination.packaging");
        Path = CkJsonObject_stringOf(jResp,"reports[i].exportConfig.s3Destination.path");
        name = CkJsonObject_stringOf(jResp,"reports[i].name");
        reportGroupArn = CkJsonObject_stringOf(jResp,"reports[i].reportGroupArn");
        status = CkJsonObject_stringOf(jResp,"reports[i].status");
        DurationInNanoSeconds = CkJsonObject_IntOf(jResp,"reports[i].testSummary.durationInNanoSeconds");
        v_String = CkJsonObject_IntOf(jResp,"reports[i].testSummary.statusCounts.string");
        Total = CkJsonObject_IntOf(jResp,"reports[i].testSummary.total");
        truncated = CkJsonObject_IntOf(jResp,"reports[i].truncated");
        v_type = CkJsonObject_stringOf(jResp,"reports[i].type");
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"reportsNotFound");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        strVal = CkJsonObject_stringOf(jResp,"reportsNotFound[i]");
        i = i + 1;
    }

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

    // {
    //   "reports": [
    //     {
    //       "arn": "string",
    //       "codeCoverageSummary": {
    //         "branchCoveragePercentage": number,
    //         "branchesCovered": number,
    //         "branchesMissed": number,
    //         "lineCoveragePercentage": number,
    //         "linesCovered": number,
    //         "linesMissed": number
    //       },
    //       "created": number,
    //       "executionId": "string",
    //       "expired": number,
    //       "exportConfig": {
    //         "exportConfigType": "string",
    //         "s3Destination": {
    //           "bucket": "string",
    //           "bucketOwner": "string",
    //           "encryptionDisabled": boolean,
    //           "encryptionKey": "string",
    //           "packaging": "string",
    //           "path": "string"
    //         }
    //       },
    //       "name": "string",
    //       "reportGroupArn": "string",
    //       "status": "string",
    //       "testSummary": {
    //         "durationInNanoSeconds": number,
    //         "statusCounts": {
    //           "string": number
    //         },
    //         "total": number
    //       },
    //       "truncated": boolean,
    //       "type": "string"
    //     }
    //   ],
    //   "reportsNotFound": [
    //     "string"
    //   ]
    // }


    CkRest_Dispose(rest);
    CkAuthAws_Dispose(authAws);
    CkJsonObject_Dispose(json);
    CkStringBuilder_Dispose(sbRequestBody);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }