Unicode C
Unicode C
Wasabi List Bucket Objects
See more Wasabi Examples
Demonstrates how to download and parse XML for the list of objects in a bucket.Chilkat Unicode C Downloads
#include <C_CkHttpW.h>
#include <C_CkXmlW.h>
void ChilkatSample(void)
{
BOOL success;
HCkHttpW http;
const wchar_t *bucketName;
const wchar_t *strXml;
HCkXmlW xml;
const wchar_t *Key;
const wchar_t *LastModified;
const wchar_t *ETag;
const wchar_t *SizeDecimalStr;
const wchar_t *ID;
const wchar_t *DisplayName;
const wchar_t *StorageClass;
const wchar_t *ListBucketResult_xmlns;
const wchar_t *Name;
int MaxKeys;
const wchar_t *IsTruncated;
int i;
int count_i;
success = FALSE;
// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Insert your access key here:
CkHttpW_putAwsAccessKey(http,L"access-key");
// Insert your secret key here:
CkHttpW_putAwsSecretKey(http,L"secret-key");
// Use the endpoint matching the bucket's region.
CkHttpW_putAwsEndpoint(http,L"s3.us-west-1.wasabisys.com");
bucketName = L"chilkattest";
strXml = CkHttpW_s3_ListBucketObjects(http,bucketName);
if (CkHttpW_getLastMethodSuccess(http) != TRUE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
return;
}
wprintf(L"Response status code = %d\n",CkHttpW_getLastStatus(http));
xml = CkXmlW_Create();
success = CkXmlW_LoadXml(xml,strXml);
if (success != TRUE) {
wprintf(L"%s\n",CkXmlW_lastErrorText(xml));
CkHttpW_Dispose(http);
CkXmlW_Dispose(xml);
return;
}
// If the response status code was not 200, then the XML response is not a
// listing of objects, but instead contains error information.
if (CkHttpW_getLastStatus(http) != 200) {
wprintf(L"%s\n",CkXmlW_getXml(xml));
wprintf(L"Failed.\n");
CkHttpW_Dispose(http);
CkXmlW_Dispose(xml);
return;
}
// A sample response is shown below.
wprintf(L"%s\n",CkXmlW_getXml(xml));
wprintf(L"----\n");
// Use this online tool to generate parsing code from sample XML:
// Generate Parsing Code from XML
// <?xml version="1.0" encoding="UTF-8"?>
// <ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
// <Name>chilkattest</Name>
// <Prefix/>
// <Marker/>
// <MaxKeys>1000</MaxKeys>
// <IsTruncated>false</IsTruncated>
// <Contents>
// <Key>orchard.json</Key>
// <LastModified>2021-10-27T22:58:49.000Z</LastModified>
// <ETag>"303fb46cf341094fef6274b7789cd6aa"</ETag>
// <Size>22</Size>
// <Owner>
// <ID>1039F31570DBC320E89D391632FCA06FE6D10CBB2ADBD0BF6439BB1DA0C3FAD6</ID>
// <DisplayName>admin</DisplayName>
// </Owner>
// <StorageClass>STANDARD</StorageClass>
// </Contents>
// <Contents>
// <Key>seahorse.jpg</Key>
// <LastModified>2021-10-27T22:35:29.000Z</LastModified>
// <ETag>"a8551f0a5437f43a796fca7623ee9232"</ETag>
// <Size>24388</Size>
// <Owner>
// <ID>1039F31570DBC320E89D391632FCA06FE6D10CBB2ADBD0BF6439BB1DA0C3FAD6</ID>
// <DisplayName>admin</DisplayName>
// </Owner>
// <StorageClass>STANDARD</StorageClass>
// </Contents>
// <Contents>
// <Key>seahorse2.jpg</Key>
// <LastModified>2021-10-27T22:03:51.000Z</LastModified>
// <ETag>"a8551f0a5437f43a796fca7623ee9232"</ETag>
// <Size>24388</Size>
// <Owner>
// <ID>1039F31570DBC320E89D391632FCA06FE6D10CBB2ADBD0BF6439BB1DA0C3FAD6</ID>
// <DisplayName>admin</DisplayName>
// </Owner>
// <StorageClass>STANDARD</StorageClass>
// </Contents>
// </ListBucketResult>
ListBucketResult_xmlns = CkXmlW_getAttrValue(xml,L"xmlns");
Name = CkXmlW_getChildContent(xml,L"Name");
MaxKeys = CkXmlW_GetChildIntValue(xml,L"MaxKeys");
IsTruncated = CkXmlW_getChildContent(xml,L"IsTruncated");
i = 0;
count_i = CkXmlW_NumChildrenHavingTag(xml,L"Contents");
while (i < count_i) {
CkXmlW_putI(xml,i);
Key = CkXmlW_getChildContent(xml,L"Contents[i]|Key");
LastModified = CkXmlW_getChildContent(xml,L"Contents[i]|LastModified");
ETag = CkXmlW_getChildContent(xml,L"Contents[i]|ETag");
SizeDecimalStr = CkXmlW_getChildContent(xml,L"Contents[i]|Size");
ID = CkXmlW_getChildContent(xml,L"Contents[i]|Owner|ID");
DisplayName = CkXmlW_getChildContent(xml,L"Contents[i]|Owner|DisplayName");
StorageClass = CkXmlW_getChildContent(xml,L"Contents[i]|StorageClass");
wprintf(L"%d: %s\n",i,Key);
i = i + 1;
}
CkHttpW_Dispose(http);
CkXmlW_Dispose(xml);
}