StopJob C++ Example
#include <CkRest.h>
#include <CkAuthAws.h>
#include <CkJsonObject.h>
#include <CkStringBuilder.h>
void ChilkatSample(void)
{
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkRest rest;
bool success;
CkAuthAws authAws;
authAws.put_AccessKey("AWS_ACCESS_KEY");
authAws.put_SecretKey("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.)
authAws.put_Region("us-west-2");
authAws.put_ServiceName("devicefarm");
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws);
// URL: https://devicefarm.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("devicefarm.us-west-2.amazonaws.com",443,true,true);
if (success != true) {
std::cout << "ConnectFailReason: " << rest.get_ConnectFailReason() << "\r\n";
std::cout << rest.lastErrorText() << "\r\n";
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
CkJsonObject json;
json.UpdateString("arn","string");
// The JSON request body created by the above code:
// {
// "arn": "string"
// }
rest.AddHeader("Content-Type","application/x-amz-json-1.1");
rest.AddHeader("X-Amz-Target","DeviceFarm_20150623.StopJob");
CkStringBuilder sbRequestBody;
json.EmitSb(sbRequestBody);
CkStringBuilder sbResponseBody;
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody);
if (success != true) {
std::cout << rest.lastErrorText() << "\r\n";
return;
}
int respStatusCode = rest.get_ResponseStatusCode();
std::cout << "response status code = " << respStatusCode << "\r\n";
if (respStatusCode != 200) {
std::cout << "Response Header:" << "\r\n";
std::cout << rest.responseHeader() << "\r\n";
std::cout << "Response Body:" << "\r\n";
std::cout << sbResponseBody.getAsString() << "\r\n";
return;
}
CkJsonObject jResp;
jResp.LoadSb(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.
const char *arn = 0;
const char *deviceArn = 0;
const char *instanceProfileArn = 0;
const char *Description = 0;
const char *instanceProfileName = 0;
int PackageCleanup;
int RebootAfterUse;
const char *status = 0;
const char *udid = 0;
int j;
int count_j;
const char *strVal = 0;
const char *Arn = jResp.stringOf("job.arn");
int Errored = jResp.IntOf("job.counters.errored");
int Failed = jResp.IntOf("job.counters.failed");
int Passed = jResp.IntOf("job.counters.passed");
int Skipped = jResp.IntOf("job.counters.skipped");
int Stopped = jResp.IntOf("job.counters.stopped");
int Total = jResp.IntOf("job.counters.total");
int Warned = jResp.IntOf("job.counters.warned");
int Created = jResp.IntOf("job.created");
const char *DeviceArn = jResp.stringOf("job.device.arn");
const char *Availability = jResp.stringOf("job.device.availability");
const char *Carrier = jResp.stringOf("job.device.carrier");
const char *Architecture = jResp.stringOf("job.device.cpu.architecture");
int Clock = jResp.IntOf("job.device.cpu.clock");
const char *Frequency = jResp.stringOf("job.device.cpu.frequency");
const char *FleetName = jResp.stringOf("job.device.fleetName");
const char *FleetType = jResp.stringOf("job.device.fleetType");
const char *FormFactor = jResp.stringOf("job.device.formFactor");
int HeapSize = jResp.IntOf("job.device.heapSize");
const char *Image = jResp.stringOf("job.device.image");
const char *Manufacturer = jResp.stringOf("job.device.manufacturer");
int Memory = jResp.IntOf("job.device.memory");
const char *Model = jResp.stringOf("job.device.model");
const char *ModelId = jResp.stringOf("job.device.modelId");
const char *Name = jResp.stringOf("job.device.name");
const char *Os = jResp.stringOf("job.device.os");
const char *Platform = jResp.stringOf("job.device.platform");
const char *Radio = jResp.stringOf("job.device.radio");
int RemoteAccessEnabled = jResp.IntOf("job.device.remoteAccessEnabled");
int RemoteDebugEnabled = jResp.IntOf("job.device.remoteDebugEnabled");
int Height = jResp.IntOf("job.device.resolution.height");
int Width = jResp.IntOf("job.device.resolution.width");
int Metered = jResp.IntOf("job.deviceMinutes.metered");
int DeviceMinutesTotal = jResp.IntOf("job.deviceMinutes.total");
int Unmetered = jResp.IntOf("job.deviceMinutes.unmetered");
const char *InstanceArn = jResp.stringOf("job.instanceArn");
const char *Message = jResp.stringOf("job.message");
const char *jobName = jResp.stringOf("job.name");
const char *Result = jResp.stringOf("job.result");
int Started = jResp.IntOf("job.started");
const char *Status = jResp.stringOf("job.status");
int jobStopped = jResp.IntOf("job.stopped");
const char *v_Type = jResp.stringOf("job.type");
int VideoCapture = jResp.IntOf("job.videoCapture");
const char *VideoEndpoint = jResp.stringOf("job.videoEndpoint");
int i = 0;
int count_i = jResp.SizeOfArray("job.device.instances");
while (i < count_i) {
jResp.put_I(i);
arn = jResp.stringOf("job.device.instances[i].arn");
deviceArn = jResp.stringOf("job.device.instances[i].deviceArn");
instanceProfileArn = jResp.stringOf("job.device.instances[i].instanceProfile.arn");
Description = jResp.stringOf("job.device.instances[i].instanceProfile.description");
instanceProfileName = jResp.stringOf("job.device.instances[i].instanceProfile.name");
PackageCleanup = jResp.IntOf("job.device.instances[i].instanceProfile.packageCleanup");
RebootAfterUse = jResp.IntOf("job.device.instances[i].instanceProfile.rebootAfterUse");
status = jResp.stringOf("job.device.instances[i].status");
udid = jResp.stringOf("job.device.instances[i].udid");
j = 0;
count_j = jResp.SizeOfArray("job.device.instances[i].instanceProfile.excludeAppPackagesFromCleanup");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf("job.device.instances[i].instanceProfile.excludeAppPackagesFromCleanup[j]");
j = j + 1;
}
j = 0;
count_j = jResp.SizeOfArray("job.device.instances[i].labels");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf("job.device.instances[i].labels[j]");
j = j + 1;
}
i = i + 1;
}
// A sample JSON response body parsed by the above code:
// {
// "job": {
// "arn": "string",
// "counters": {
// "errored": number,
// "failed": number,
// "passed": number,
// "skipped": number,
// "stopped": number,
// "total": number,
// "warned": number
// },
// "created": number,
// "device": {
// "arn": "string",
// "availability": "string",
// "carrier": "string",
// "cpu": {
// "architecture": "string",
// "clock": number,
// "frequency": "string"
// },
// "fleetName": "string",
// "fleetType": "string",
// "formFactor": "string",
// "heapSize": number,
// "image": "string",
// "instances": [
// {
// "arn": "string",
// "deviceArn": "string",
// "instanceProfile": {
// "arn": "string",
// "description": "string",
// "excludeAppPackagesFromCleanup": [
// "string"
// ],
// "name": "string",
// "packageCleanup": boolean,
// "rebootAfterUse": boolean
// },
// "labels": [
// "string"
// ],
// "status": "string",
// "udid": "string"
// }
// ],
// "manufacturer": "string",
// "memory": number,
// "model": "string",
// "modelId": "string",
// "name": "string",
// "os": "string",
// "platform": "string",
// "radio": "string",
// "remoteAccessEnabled": boolean,
// "remoteDebugEnabled": boolean,
// "resolution": {
// "height": number,
// "width": number
// }
// },
// "deviceMinutes": {
// "metered": number,
// "total": number,
// "unmetered": number
// },
// "instanceArn": "string",
// "message": "string",
// "name": "string",
// "result": "string",
// "started": number,
// "status": "string",
// "stopped": number,
// "type": "string",
// "videoCapture": boolean,
// "videoEndpoint": "string"
// }
// }
}