Chilkat Online Tools

DescribeMergeConflicts Xojo Example

AWS CodeCommit

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

Dim rest As New Chilkat.Rest
Dim success As Boolean

Dim authAws As New Chilkat.AuthAws
authAws.AccessKey = "AWS_ACCESS_KEY"
authAws.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.Region = "us-west-2"
authAws.ServiceName = "codecommit"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
success = rest.SetAuthAws(authAws)

// URL: https://codecommit.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("codecommit.us-west-2.amazonaws.com",443,True,True)
If (success <> True) Then
    System.DebugLog("ConnectFailReason: " + Str(rest.ConnectFailReason))
    System.DebugLog(rest.LastErrorText)
    Return
End If

// 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

Dim json As New Chilkat.JsonObject
success = json.UpdateString("conflictDetailLevel","string")
success = json.UpdateString("conflictResolutionStrategy","string")
success = json.UpdateString("destinationCommitSpecifier","string")
success = json.UpdateString("filePath","string")
success = json.UpdateInt("maxMergeHunks",123)
success = json.UpdateString("mergeOption","string")
success = json.UpdateString("nextToken","string")
success = json.UpdateString("repositoryName","string")
success = json.UpdateString("sourceCommitSpecifier","string")

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

// {
//   "conflictDetailLevel": "string",
//   "conflictResolutionStrategy": "string",
//   "destinationCommitSpecifier": "string",
//   "filePath": "string",
//   "maxMergeHunks": number,
//   "mergeOption": "string",
//   "nextToken": "string",
//   "repositoryName": "string",
//   "sourceCommitSpecifier": "string"
// }

success = rest.AddHeader("Content-Type","application/x-amz-json-1.1")
success = rest.AddHeader("X-Amz-Target","CodeCommit_20150413.DescribeMergeConflicts")

Dim sbRequestBody As New Chilkat.StringBuilder
success = json.EmitSb(sbRequestBody)
Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody)
If (success <> True) Then
    System.DebugLog(rest.LastErrorText)
    Return
End If

Dim respStatusCode As Int32
respStatusCode = rest.ResponseStatusCode
System.DebugLog("response status code = " + Str(respStatusCode))
If (respStatusCode <> 200) Then
    System.DebugLog("Response Header:")
    System.DebugLog(rest.ResponseHeader)
    System.DebugLog("Response Body:")
    System.DebugLog(sbResponseBody.GetAsString())
    Return
End If

Dim jResp As New Chilkat.JsonObject
success = 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

Dim EndLine As Int32
Dim HunkContent As String
Dim StartLine As Int32
Dim destinationEndLine As Int32
Dim destinationHunkContent As String
Dim destinationStartLine As Int32
Dim isConflict As Int32
Dim sourceEndLine As Int32
Dim sourceHunkContent As String
Dim sourceStartLine As Int32

Dim baseCommitId As String
baseCommitId = jResp.StringOf("baseCommitId")
Dim ContentConflict As Int32
ContentConflict = jResp.IntOf("conflictMetadata.contentConflict")
Dim FileModeConflict As Int32
FileModeConflict = jResp.IntOf("conflictMetadata.fileModeConflict")
Dim Base As String
Base = jResp.StringOf("conflictMetadata.fileModes.base")
Dim Destination As String
Destination = jResp.StringOf("conflictMetadata.fileModes.destination")
Dim Source As String
Source = jResp.StringOf("conflictMetadata.fileModes.source")
Dim FilePath As String
FilePath = jResp.StringOf("conflictMetadata.filePath")
Dim FileSizesBase As Int32
FileSizesBase = jResp.IntOf("conflictMetadata.fileSizes.base")
Dim FileSizesDestination As Int32
FileSizesDestination = jResp.IntOf("conflictMetadata.fileSizes.destination")
Dim FileSizesSource As Int32
FileSizesSource = jResp.IntOf("conflictMetadata.fileSizes.source")
Dim IsBinaryFileBase As Int32
IsBinaryFileBase = jResp.IntOf("conflictMetadata.isBinaryFile.base")
Dim IsBinaryFileDestination As Int32
IsBinaryFileDestination = jResp.IntOf("conflictMetadata.isBinaryFile.destination")
Dim IsBinaryFileSource As Int32
IsBinaryFileSource = jResp.IntOf("conflictMetadata.isBinaryFile.source")
Dim MergeOperationsDestination As String
MergeOperationsDestination = jResp.StringOf("conflictMetadata.mergeOperations.destination")
Dim MergeOperationsSource As String
MergeOperationsSource = jResp.StringOf("conflictMetadata.mergeOperations.source")
Dim NumberOfConflicts As Int32
NumberOfConflicts = jResp.IntOf("conflictMetadata.numberOfConflicts")
Dim ObjectTypeConflict As Int32
ObjectTypeConflict = jResp.IntOf("conflictMetadata.objectTypeConflict")
Dim ObjectTypesBase As String
ObjectTypesBase = jResp.StringOf("conflictMetadata.objectTypes.base")
Dim ObjectTypesDestination As String
ObjectTypesDestination = jResp.StringOf("conflictMetadata.objectTypes.destination")
Dim ObjectTypesSource As String
ObjectTypesSource = jResp.StringOf("conflictMetadata.objectTypes.source")
Dim destinationCommitId As String
destinationCommitId = jResp.StringOf("destinationCommitId")
Dim nextToken As String
nextToken = jResp.StringOf("nextToken")
Dim sourceCommitId As String
sourceCommitId = jResp.StringOf("sourceCommitId")
Dim i As Int32
i = 0
Dim count_i As Int32
count_i = jResp.SizeOfArray("mergeHunks")
While i < count_i
    jResp.I = i
    EndLine = jResp.IntOf("mergeHunks[i].base.endLine")
    HunkContent = jResp.StringOf("mergeHunks[i].base.hunkContent")
    StartLine = jResp.IntOf("mergeHunks[i].base.startLine")
    destinationEndLine = jResp.IntOf("mergeHunks[i].destination.endLine")
    destinationHunkContent = jResp.StringOf("mergeHunks[i].destination.hunkContent")
    destinationStartLine = jResp.IntOf("mergeHunks[i].destination.startLine")
    isConflict = jResp.IntOf("mergeHunks[i].isConflict")
    sourceEndLine = jResp.IntOf("mergeHunks[i].source.endLine")
    sourceHunkContent = jResp.StringOf("mergeHunks[i].source.hunkContent")
    sourceStartLine = jResp.IntOf("mergeHunks[i].source.startLine")
    i = i + 1
Wend

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

// {
//   "baseCommitId": "string",
//   "conflictMetadata": {
//     "contentConflict": boolean,
//     "fileModeConflict": boolean,
//     "fileModes": {
//       "base": "string",
//       "destination": "string",
//       "source": "string"
//     },
//     "filePath": "string",
//     "fileSizes": {
//       "base": number,
//       "destination": number,
//       "source": number
//     },
//     "isBinaryFile": {
//       "base": boolean,
//       "destination": boolean,
//       "source": boolean
//     },
//     "mergeOperations": {
//       "destination": "string",
//       "source": "string"
//     },
//     "numberOfConflicts": number,
//     "objectTypeConflict": boolean,
//     "objectTypes": {
//       "base": "string",
//       "destination": "string",
//       "source": "string"
//     }
//   },
//   "destinationCommitId": "string",
//   "mergeHunks": [
//     {
//       "base": {
//         "endLine": number,
//         "hunkContent": "string",
//         "startLine": number
//       },
//       "destination": {
//         "endLine": number,
//         "hunkContent": "string",
//         "startLine": number
//       },
//       "isConflict": boolean,
//       "source": {
//         "endLine": number,
//         "hunkContent": "string",
//         "startLine": number
//       }
//     }
//   ],
//   "nextToken": "string",
//   "sourceCommitId": "string"
// }