storj/lib/uplinkc/convert.go
Egon Elbre 6615ecc9b6 common: separate repository
Change-Id: Ibb89c42060450e3839481a7e495bbe3ad940610a
2019-12-27 14:11:15 +02:00

64 lines
2.2 KiB
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package main
// #include "uplink_definitions.h"
import "C"
import (
"storj.io/common/storj"
)
// newBucketInfo returns a C bucket struct converted from a go bucket struct.
func newBucketInfo(bucket *storj.Bucket) C.BucketInfo {
return C.BucketInfo{
name: C.CString(bucket.Name),
created: C.int64_t(bucket.Created.Unix()),
path_cipher: toCCipherSuite(bucket.PathCipher),
segment_size: C.uint64_t(bucket.DefaultSegmentsSize),
encryption_parameters: convertEncryptionParameters(&bucket.DefaultEncryptionParameters),
redundancy_scheme: convertRedundancyScheme(&bucket.DefaultRedundancyScheme),
}
}
// newObjectInfo returns a C object struct converted from a go object struct.
func newObjectInfo(object *storj.Object) C.ObjectInfo {
return C.ObjectInfo{
version: C.uint32_t(object.Version),
bucket: newBucketInfo(&object.Bucket),
path: C.CString(object.Path),
is_prefix: C.bool(object.IsPrefix),
size: C.int64_t(object.Size),
content_type: C.CString(object.ContentType),
created: C.int64_t(object.Created.Unix()),
modified: C.int64_t(object.Modified.Unix()),
expires: C.int64_t(object.Expires.Unix()),
}
}
// convertEncryptionParameters converts Go EncryptionParameters to C.
func convertEncryptionParameters(goParams *storj.EncryptionParameters) C.EncryptionParameters {
return C.EncryptionParameters{
cipher_suite: toCCipherSuite(goParams.CipherSuite),
block_size: C.int32_t(goParams.BlockSize),
}
}
// convertRedundancyScheme converts Go RedundancyScheme to C.
func convertRedundancyScheme(scheme *storj.RedundancyScheme) C.RedundancyScheme {
return C.RedundancyScheme{
algorithm: C.RedundancyAlgorithm(scheme.Algorithm),
share_size: C.int32_t(scheme.ShareSize),
required_shares: C.int16_t(scheme.RequiredShares),
repair_shares: C.int16_t(scheme.RepairShares),
optimal_shares: C.int16_t(scheme.OptimalShares),
total_shares: C.int16_t(scheme.TotalShares),
}
}
// toCCipherSuite converts a go cipher to its respective C cipher suite.
func toCCipherSuite(cipherSuite storj.CipherSuite) C.CipherSuite {
return C.CipherSuite(cipherSuite)
}